Parallel youtube-dl.

This commit is contained in:
Markus Birth 2017-04-07 02:32:13 +02:00
parent 370e5b8c9a
commit ea12c63870

6
ytdl-multi.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
if [ ! -f "download.txt" ]; then
echo "Create a file download.txt containing one URL per line."
exit 1
fi
cat download.txt | xargs -P 6 -n 1 -I {} youtube-dl "{}"