about summary refs log tree commit diff
path: root/youtube_dl/extractor/livestream.py
Commit message (Collapse)AuthorAgeFilesLines
* [livestream] make smil extraction non fatal(fixes #14792)Remita Amine2017-11-191-1/+1
|
* Fix some regexesSergey M․2017-10-091-1/+1
|
* [downloader/hls] immediately delegate downloading to ffmpeg in case live streamRemita Amine2017-03-251-7/+8
|
* Fix "invalid escape sequences" error on Python 3.6Yen Chi Hsuan2017-01-061-1/+1
|
* [livestream:event] Ensure video id is string (Closes #9721)Sergey M․2016-06-071-2/+3
|
* [livestream] Video IDs should always be strings (#2234)Yen Chi Hsuan2016-05-231-1/+1
|
* [livestream] Properly build smil URLs (#8794)Sergey M․2016-03-091-1/+5
|
* [livestream] Fix FutureWarning (Closes #8742)Sergey M․2016-03-041-1/+1
|
* Simplify formats accumulation for f4m/m3u8/smil formatsSergey M․2015-12-291-22/+10
| | | | Now all _extract_*_formats routines return a list
* [livestream] change test urlremitamine2015-12-271-1/+1
|
* [livestream] skip m3u8 manifest in progressive_urlsremitamine2015-12-271-0/+2
|
* [livestream] improve extractionremitamine2015-12-271-38/+76
| | | | | | | - split long lines - use m3u8 entry protocol for live streams - extend _VALID_URL regex for livestream original - extract livestream original live streams
* [livestream] improve extraction, add support for live streams and extract ↵remitamine2015-12-171-110/+168
| | | | more info and formats
* [livestream:original] Update url format (fixes #5598)Jaime Marquínez Ferrándiz2015-05-041-3/+3
|
* [livestream:original] Fix extraction (fixes #4702)Jaime Marquínez Ferrándiz2015-05-041-11/+5
|
* [livestream] Extend _VALID_URL (fixes #5375)Yen Chi Hsuan2015-04-081-1/+4
|
* [livestream] Extract all videos in events (fixes #5198)Jaime Marquínez Ferrándiz2015-03-141-5/+36
| | | | The webpage only contains the most recent ones, but if you scroll down more will appear.
* [livestream] Correct playlist ID and add a test for itPhilipp Hagemeister2015-02-181-1/+3
|
* Fix imports and general cleanupPhilipp Hagemeister2014-12-131-1/+3
| | | | | | | | · Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
* [generic] Add support for livestream embeds (Fixes #4185)Philipp Hagemeister2014-11-131-1/+4
|
* [livestream:original] Fix RTMP parameters (Fixes #4040)Philipp Hagemeister2014-10-261-1/+2
|
* Move playlist tests to extractors.Philipp Hagemeister2014-08-281-33/+52
| | | | From now on, test_download will run these tests. That means we benefit not only from the networking setup in there, but also from the other tests (for example test_all_urls to find problems with _VALID_URLs).
* [livestream] Improve extraction (Closes #3513)Sergey M․2014-08-141-6/+17
|
* [livestream] Do not fail if SMIL download failsPhilipp Hagemeister2014-07-251-35/+44
|
* [livestream] Make clipBegin optional in SMILPhilipp Hagemeister2014-07-251-2/+4
|
* [livestream] Parse SMIL (#2713)Philipp Hagemeister2014-07-251-8/+62
|
* [livestream] PEP8Philipp Hagemeister2014-07-201-3/+6
|
* [livestream:original] Add support for folder urls (closes #2631)Jaime Marquínez Ferrándiz2014-06-261-5/+47
| | | | | The webpage only contains shortened links for the videos, since the server doesn't support HEAD requests, we use an specific extractor for them.
* [livestream] ModernizeSergey M․2014-06-121-29/+34
|
* Correct some extractor _VALID_URL regexesdst2013-12-041-1/+1
|
* Use the new '_download_xml' helper in more extractorsJaime Marquínez Ferrándiz2013-11-261-3/+1
|
* Clean up unused imports and other minor mistakesPhilipp Hagemeister2013-11-201-2/+0
|
* [livestream] Add an extractor for the original version of livestream (closes ↵Jaime Marquínez Ferrándiz2013-11-141-0/+44
| | | | | | #1764) The two versions use different systems.
* [livestream] fix the extraction of eventsJaime Marquínez Ferrándiz2013-10-311-7/+3
| | | | It now uses a json dictionary from the webpage.
* [livestream] Fix events extraction (fixes #1467)Jaime Marquínez Ferrándiz2013-09-211-3/+11
|
* [livestream] fix import statementJaime Marquínez Ferrándiz2013-07-141-1/+1
|
* Add LivestreamIE (closes #1042)Jaime Marquínez Ferrándiz2013-07-131-0/+52