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.
How can I make a Funimation extractor? #7742
Comments
|
I have managed to download the streams. But I still can't handle the login process, I am using a cookie. Any help there?
|
Hi.
Being able to use Funimation with youtube-dl would be great for me. So I want to make a extractor. I looked around, checked the source files and learned how to stream Funimation videos directly with mpv, but I couldn't manage to turn it into an extractor. So, if I tell you how I stream them with mpv, could you direct me to some documents and similar extractors to help me make an extractor? I really want to learn how to do this.
First, we need to login, this is the login page: http://funimation.com/login
After that, I check the source with Safari (Chrome doesn't work). I need two things from there:
Adding authToken after mp4 nets me the streamable and downloadable file. Everything is the same with all streams except SMSJPNIAGvce0008 part. This is an id consisting of show title (SMS), language (JPN), id (IAGvce) and episode number (0008).
Address of the video is this, by the way: http://www.funimation.com/shows/shomin-sample/videos/official/kagurazaka-sama-is-here?watch=sub
So, how can I create an extractor starting from this information?
Thanks.