How To Download Openload Video

  1. Downloader Openload
  2. Openload Player Download
  3. How To Download Openload Videos
  4. How To Download Openload Videos Online
  5. How To Download Openload Video With Subtitles
  6. How To Download Videos From Websites
  7. How To Download Video In Openload

Join GitHub today

Many of us would like to download videos from Openload.Co for playback offline. Here is an article of downloading videos from such a website. In the article, 3 methods are provided, and all of the methods could be extend to other video sharing websites. Part 1: Best way to download Openload.Co videos. Openload is a free videos hosting service, where you can watch Movies, Films, Tv shows, Documentaries, Anime and many other videos. We are going to show you how Openload looks like, and how to watch movies with Openload.

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

Sign up New issue Openload

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Openload

Already on GitHub? Sign in to your account

Comments

commented Sep 12, 2016
edited

Please follow the guide below

  • You will be asked some questions and requested to provide some information, please read them carefully and answer honestly
  • Put an x into all the boxes [ ] relevant to your issue (like that [x])
  • Use Preview tab to see how your issue will actually look like

Make sure you are using the latest version: run youtube-dl --version and ensure your version is 2016.09.11.1. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.

  • [X ] I've verified and I assure that I'm running youtube-dl 2016.09.11.1

Before submitting an issue make sure you have:

  • [X ] At least skimmed through README and most notablyFAQ and BUGS sections
  • [X ] Searched the bugtracker for similar issues including closed ones

What is the purpose of your issue?

  • Bug report (encountered problems with youtube-dl)
  • Site support request (request for adding support for a new site)
  • [X ] Feature request (request for a new functionality)
  • Question
  • Other

The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue

If the purpose of this issue is a site support request please provide all kinds of example URLs support for which should be included (replace following example URLs by yours):

  • Single video: https://openload.co/embed/rjC09fkPLYs/

Description of your issue, suggested solution and other information

OpenLoad videos can have subtitle files, but they are not returned when using --list-subs. I did not manage to find where the file is specified in the page, or in the Javascript, but when observing the page with web tools, a .vtt file is clearly downloaded, with a specific name scheme.

I think what there is to do is to find how this name scheme work, in order to download the subtitle file.

Example of subtitle files corresponding to the two videos specified above :

commented Sep 19, 2016
edited

Ok, I found where the vtt comes from. In the page HTML, we can see :
<track kind='captions' src='https://thumb.oloadcdn.net/subtitle/jzsMDm13XWE/tYAtG45F4As.vtt' srclang='fr' label='French' default />

I don't really know Python, so I don't think I can provide the real code, but I think finding the track tag in the page and parsing subtitle info from here should do the trick.

Just for info, there appears to be more track tags in the source, but only the one(s) with the real subtitle will have the src attribute specified.

commented Sep 22, 2016

Steven Universe is a copyrighted product of Cartoon Network. Do you have other examples with subtitles?

added the clarification-needed label Sep 22, 2016

commented Sep 23, 2016

You can use https://openload.co/embed/rjC09fkPLYs which is an upload of http://lachuteduneplume.free.fr/?-English-, an open-source movie. It contains english subtitles, which can be found as seen previously with the track tag

commented Sep 23, 2016

Do you need me to remove the example links in the first message to avoid copyright issues ?

commented Sep 23, 2016

Thanks for the new example.

Do you need me to remove the example links in the first message to avoid copyright issues ?

Yeah it should be better to do so.

Downloader Openload

removed the clarification-needed label Sep 23, 2016

added a commit that referenced this issue Sep 24, 2016

[extractor/common] Improved support for HTML5 subtitles
Verified
This commit was signed with a verified signature.

Openload Player Download

GPG key ID: 3FDDD575826C5C30Learn about signing commits

How To Download Openload Videos

closed this in 0711995Sep 24, 2016

commented Sep 24, 2016

Subtitles on openload will be recognized in the next version. Thanks for the report and the example.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

I plan to make an Android mobile video streaming application. The videos are mostly hosted by Openload.co, so that the videos can open in a player on the mobile one must succeed in recovering the direct link of the video Openload. I need to code this in PHP. I tried to retrieve that in the source code of the page with a file_get_contents or a Curl, but nothing does. The file_get_contents and Curl do not load the page and its scripts before retrieving the source code. Except that the link of the video is a unique link. It changes every time the page is refreshed. The link is generated by javascript code.

An example, here is the embed link of the video: https://openload.co/embed/z_wuuTTJSCg/

In the source code via inspect the item (or developer console I don't know, on your browser), you can see the line:

In this line is the id, date , IP and a token. (Example: z_wuuTTJSCg~1496728099~149.91.0.0~rIj0zw9c)

How To Download Openload Videos Online

What is in this line is added to this link: https://openload.co/stream/ (example: openload.co/z_wuuTTJSCg~1496728099~149.91.0.0~rIj0zw9c)

and it's work like that.

If you look at the source code of this page directly with 'view-source:' you will see that in the line designate there will be marked 'HERE IS THE LINK'.

WaranoWarano

2 Answers

This is a function that runs after the OpenLoad page has gotten all the variables sorted out for you so you can just hotlink the video

Download openload file


If your application does not run the web page and only retrieves it (like cURL) the script that creates the valid token is on line 163 of the source code, right after script element<script src='/assets/js/video-js/video.js.ol8.js'></script>.However it will require a large amount of time to understand how it is created and be able to replicate it.

How To Download Openload Video With Subtitles

CadibooCadiboo

Most easiest way to get openload link, just use youtube-dl cause you can't done that with PHP & JS

John DoeJohn Doe

How To Download Videos From Websites

protected by CommunityOct 16 '17 at 23:56

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

How To Download Video In Openload

Not the answer you're looking for? Browse other questions tagged javascriptphpandroidcurlvideo or ask your own question.