- 11 Nov, 2013 2 commits
-
-
Philipp Hagemeister authored
-
Philipp Hagemeister authored
Suggested in #1743
-
- 10 Nov, 2013 7 commits
-
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
They reuse a base class
-
Jaime Marquínez Ferrándiz authored
It failed with the --list-subs option
-
Jaime Marquínez Ferrándiz authored
[ted] support for subtitles
-
Jaime Marquínez Ferrándiz authored
Fix AssertionError when og property not found
-
- 09 Nov, 2013 9 commits
-
-
Jaime Marquínez Ferrándiz authored
it's '--auto-number' not '--autonumber'
-
Jaime Marquínez Ferrándiz authored
Now arte.tv videos have quite long ids.
-
Jaime Marquínez Ferrándiz authored
Also use the bitrate. Prefer normal version and sourds/mal version over original version with subtitles.
-
Jaime Marquínez Ferrándiz authored
Include the bitrate and use the height instead of the quality field.
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
They use the rtmp protocol but if the are marked as 'downloadable' it can use the direct download link.
-
Jaime Marquínez Ferrándiz authored
It now requires two additional parameters, one is a timestamp we get from the getCdnresource_flv page and the other is a key we have to build.
-
Jaime Marquínez Ferrándiz authored
-
- 07 Nov, 2013 3 commits
-
-
Jaime Marquínez Ferrándiz authored
-
Philipp Hagemeister authored
-
Jaime Marquínez Ferrándiz authored
The report_progress function will accept eta and percent with None value and will set the message to 'Unknow ETA' or 'Unknown %'. Otherwise the values must be numbers.
-
- 06 Nov, 2013 13 commits
-
-
Jaime Marquínez Ferrándiz authored
-
Philipp Hagemeister authored
-
Jaime Marquínez Ferrándiz authored
'bctid' needs to be changed to '@videoPlayer', and 'bckey' to 'playerKey'.
-
Jaime Marquínez Ferrándiz authored
The page don't include the 'load more' button anymore, now we directly get the 'c4_browse_ajax' pages.
-
Jaime Marquínez Ferrándiz authored
The BrighcoveExperience object doesn't contain the video id, the extractor adds it and passes the url to BrightcoveIE.
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
It uses Brightcove, but requires some special process for getting a url with the playerKey field in some videos
-
Jaime Marquínez Ferrándiz authored
It seems to be needed when using the htmlFederated page
-
Jaime Marquínez Ferrándiz authored
-
Jaime Marquínez Ferrándiz authored
tests: don't run the test if any of the extractors listed in the 'add_ie' field is marked as not working
-
Philipp Hagemeister authored
-
Philipp Hagemeister authored
-
Philipp Hagemeister authored
-
- 05 Nov, 2013 4 commits
-
-
Marcin Cieślak authored
On tvp.pl some webpages contain OpenGraph metadata and some don't. If og property is not found, _og_search_description fails with WARNING: unable to extract OpenGraph description; please report this issue on http://yt-dl.org/bug Traceback (most recent call last): File "/usr/home/saper/bin/youtube-dl", line 18, in <module> youtube_dl.main() File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 766, in main _real_main(argv) File "/usr/home/saper/sw/youtube-dl/youtube_dl/__init__.py", line 719, in _real_main retcode = ydl.download(all_urls) File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 715, in download videos = self.extract_info(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/YoutubeDL.py", line 348, in extract_info ie_result = ie.extract(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 125, in extract return self._real_extract(url) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/tvp.py", line 56, in _real_extract info['description'] = self._og_search_description(webpage) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 331, in _og_search_description return self._og_search_property('description', html, fatal=False, **kargs) File "/usr/home/saper/sw/youtube-dl/youtube_dl/extractor/common.py", line 325, in _og_search_property return unescapeHTML(escaped) File "/usr/home/saper/sw/youtube-dl/youtube_dl/utils.py", line 494, in unescapeHTML assert type(s) == type(u'') AssertionError The patch allows me to use: try: info['description'] = self._og_search_description(webpage) info['thumbnail'] = self._og_search_thumbnail(webpage) except RegexNotFoundError: pass
-
Ismaël Mejía authored
I created a test, but I leave it commented since TED videos get new subtitles frequently.
-
Jaime Marquínez Ferrándiz authored
[GenericIE] Also detect youtube if src url of iframe is embedded in ' instead of "
-
rzhxeo authored
-
- 04 Nov, 2013 1 commit
-
-
Jaime Marquínez Ferrándiz authored
The url only needs to have the 'idVideo' field in the query, in any position. We have to set the 'void=oui' in the webpage url, so that we get the file name.
-
- 03 Nov, 2013 1 commit
-
-
Jaime Marquínez Ferrándiz authored
-