Created
May 25, 2016 11:35
-
-
Save mderazon/31fbe17583d6644212c59b9859b93eaa to your computer and use it in GitHub Desktop.
get a bunch of youtube videos as mp3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
youtube-dl -f 140 --ffmpeg-location /usr/local/bin/ffmpeg [list of youtube urls] | |
for f in *.m4a; do ffmpeg -i "$f" -acodec libmp3lame -ab 128k "${f%.m4a}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment