From 8f25a06837c0863e6c92c5bff34f11d7d3f36357 Mon Sep 17 00:00:00 2001 From: yorch Date: Thu, 2 Apr 2015 10:24:42 -0700 Subject: [PATCH] Added a script to get all the videos in a text file called videos off of youtube links --- bash/get_videos.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bash/get_videos.sh diff --git a/bash/get_videos.sh b/bash/get_videos.sh new file mode 100755 index 0000000..f83abc8 --- /dev/null +++ b/bash/get_videos.sh @@ -0,0 +1,6 @@ +for i in $(cat videos); + do + youtube-dl -F $i; + echo "select quality"; + read q;youtube-dl -v -j -J -f $q $i; + done