Skip to content

Instantly share code, notes, and snippets.

@jedahan
Created April 28, 2014 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedahan/11376532 to your computer and use it in GitHub Desktop.
Save jedahan/11376532 to your computer and use it in GitHub Desktop.
yt-csv
# Make dir with timestamp and go there
folder=$(date +%H%M%S)
mkdir $folder && cd $folder
# YTDL scrape from this .csv
youtube-dl \
-a /Users/scottleinweber/Dropbox/SFPC/Day6_Sat_AlexHacks/AllVideos/data/allvideos_urlonly.csv \
-i —write-thumbnail /Users/scottleinweber/Dropbox/SFPC/Day7_Videoscrape/AllVideos/thumbs \
--no-warnings \
--skip-download \
--verbose \
--write-description \
-o '%(autonumber)s %(title)s %(extractor)s' \
>> out.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment