Skip to content

Instantly share code, notes, and snippets.

@ratacibernetica
Created May 31, 2020 19:49
Show Gist options
  • Save ratacibernetica/d03fe961a4953f17ca2cb121b94f668d to your computer and use it in GitHub Desktop.
Save ratacibernetica/d03fe961a4953f17ca2cb121b94f668d to your computer and use it in GitHub Desktop.
Download YouTube audio only, best quality available
#!/bin/bash
VIDEO_URL=$@
echo "Downloading ${VIDEO_URL}\n"
youtube-dl -F $VIDEO_URL | grep "audio only" | sort -nr | awk 'NR==1{print $1}' | xargs -I{} youtube-dl -f {} $VIDEO_URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment