|
#!/bin/bash
|
|
|
|
# Verbosity and settings that you pretty much just always are going to want.
|
|
alias \
|
|
yt="yt-dlp --embed-metadata -i" \
|
|
yta="yt -x -f bestaudio/best -o '%(uploader)s - %(title)s [%(id)s].%(ext)s'" \
|
|
ytmp3="yta --audio-format mp3 --audio-quality 192K"
|