Created
December 8, 2014 09:41
-
-
Save archydragon/3d90ec8f877e0a6dcfb1 to your computer and use it in GitHub Desktop.
Save playlist from Youtube as the pack of Vorbis files
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
#!/bin/zsh | |
LINK="$1" | |
youtube-dl -i -f 141 "${LINK}" | |
for F in *.m4a; do | |
ffmpeg -i "${F}" -acodec libvorbis -ab 192k "${F/%m4a/ogg}" | |
done | |
rm *.m4a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment