Skip to content

Instantly share code, notes, and snippets.

@appastair
Created November 23, 2012 10:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save appastair/4134856 to your computer and use it in GitHub Desktop.
Save appastair/4134856 to your computer and use it in GitHub Desktop.
YouTube Batch Video Downloader Script
#!bin/bash
# Requires: youtube-dl (apt-get install)
# Usage: youtube-dl.sh < video-links.lst
while read line
do
youtube-dl $line --max-quality -t --write-info-json
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment