#!/bin/sh
if [ $# -lt 1 ] ; then
  echo "what video?"
  exit
fi
youtube-dl --user-agent "Mozilla/5.0 (X11; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" --extract-audio https://www.youtube.com/watch?v=$1
