youtube-dl-mp3
youtube-dl-mp3 copied to clipboard
Update youtube-dl-mp3
I use avconv only and background option thx to you
ElfEn
#!/bin/bash address=$1 title="$(youtube-dl --get-title $address)" youtube-dl -o "%(title)s" $address avconv -i "$title" -ab 160k "$title".mp3 rm "$title"