Last active
April 29, 2025 19:31
-
-
Save Famicoman/3380769 to your computer and use it in GitHub Desktop.
Revision3 Downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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