Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Please, add support for anitube.se #1417
Comments
|
I am on it seems pretty simple. We just have to extract the key from the html and then concatenate it with |
|
youtube-dl supports anitube.se since version 2013.11.20. Type |
|
Wow!!! Thank you very much! :-D |
As an example, my parser in Shell Script (one line):
LINK="http://www.anitube.se/video/36996/Ghost-in-The-Shell-20--Filme" ; KEY=$( lynx -source $LINK | sed '//embed//! d' | sed "s/.www.anitube.se\/embed\/([a-zA-Z0-9]_)\"._/\1/" ) ; MP4=$( lynx -source http://www.anitube.se/nuevo/playlist.php?key=$KEY | sed '//! d' | sed "s/.>(http.)<./\1/" ) ; clear ; echo "$MP4"
And so you get the direct link to download!
Optionally, for download:
wget -c "$MP4"
Sorry, but I'm no Python programmer to port my code in Shell Script...