use less wasteful bitrate in youtube-mp3

This commit is contained in:
joachimschmidt557 2020-07-27 09:47:48 +02:00
parent c9bb233ec2
commit 13d4e20219

View file

@ -3,7 +3,7 @@
usage() {
cat <<EOF
youtube-mp3
adds options to youtube-dl to download as 320kbps MP3
adds options to youtube-dl to download as MP3
Usage: youtube-mp3 URL
@ -29,6 +29,6 @@ case "$@" in
exit 1
;;
*)
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k "$@"
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 192K -k "$@"
;;
esac