Skip to content

Instantly share code, notes, and snippets.

@Famicoman
Last active October 8, 2015 19:48
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 Famicoman/3380769 to your computer and use it in GitHub Desktop.
Save Famicoman/3380769 to your computer and use it in GitHub Desktop.
Revision3 Downloader
#!/bin/bash
#Usage: ./rev3-downloader.sh $id
#Where $id is found at http://revision3.com/$id for each show
#NOTE: The 'q' var is quality. Some shows may miss episodes in the quality you want. Always go back and check numbering for holes.
q=hd720p30.h264.mp4; wget -c -i -- `curl "http://revision3.com/$1/episodePage?&limit=1000" | grep -i $1-- | sed 's%^.*src="%%' | sed 's%images/shows%web%' | sed 's%medium.thumb.jpg".*%'$q'%'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment