Extract subs from OpenLoad videos
See original GitHub issuePlease 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 notably FAQ 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 :
Issue Analytics
- State:
- Created 7 years ago
- Comments:6
Top Results From Across the Web
how to download / extract subtitle from openload.io streming site
I want to ask you how to download / extract subtitle from openload.io streming site ... By mehbleh in forum Video Streaming Downloading....
Read more >DownSub: Download subtitles from Youtube, Viki, Viu, Vlive ...
1. Paste the link of video you want to download subtitles. · 2. Click Download button to begin extracting subtitles. · 3. Select...
Read more >Openload subtitle url - Carlino Edilizia
Openload is a site How to add subtitles (srt file) to openload movie. ... Extract from the whole video or from a specific...
Read more >Subtitle Extractor: Extract Subtitles from MKV MP4 Video on ...
Find the best subtitle editor to extract subtitles from MKV, MP4, AVI, VOB or any other videos as SRT, ASS files in 3...
Read more >Get an Openload VTT subtitle link - Stack Overflow
The link you gave doesn't ever have a <track> node, at least for me (un logged-in, and not the video's creator).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Subtitles on openload will be recognized in the next version. Thanks for the report and the example.
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 thesrc
attribute specified.