9 lines
200 B
Bash
Executable file
9 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check for youtube-dl in path
|
|
if ! (which youtube-dl) ; then
|
|
echo "No youtube-dl found in path"
|
|
exit 1
|
|
fi
|
|
|
|
youtube-dl --format bestaudio -x --audio-format mp3 --audio-quality 320K -k $1
|