Skip to content

Instantly share code, notes, and snippets.

@smuuf
Created August 25, 2017 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smuuf/b82c45afdb918c9418a1b5a8bceb45fe to your computer and use it in GitHub Desktop.
Save smuuf/b82c45afdb918c9418a1b5a8bceb45fe to your computer and use it in GitHub Desktop.
#!/bin/bash
if [[ -f $1 ]]; then
cat $1 | while read line
do
youtube-dl --no-mtime --no-post-overwrites --extract-audio --audio-format mp3 --audio-quality 192K $line
done
else
youtube-dl --no-mtime --no-post-overwrites --extract-audio --audio-format mp3 --audio-quality 192K $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment