diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-10-28 17:29:25 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-10-28 17:29:27 +0100 |
commit | 00edd4f9bef7cf0708d1c4da128477d76115fdec (patch) | |
tree | 07400e4c45b50872df6b288c83c6901eccb946d0 /youtube_dl | |
parent | ee966928af5f35123c4c7417bb052ae5aea345c9 (diff) |
[laola1tv] Mark as broken
When the f4m downloader gets live stream support, I expect this to work magically or with very minor changes.
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/laola1tv.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/laola1tv.py b/youtube_dl/extractor/laola1tv.py index 45ab86b03..263f68773 100644 --- a/youtube_dl/extractor/laola1tv.py +++ b/youtube_dl/extractor/laola1tv.py @@ -23,6 +23,8 @@ class Laola1TvIE(InfoExtractor): } } + _BROKEN = True # Not really - extractor works fine, but f4m downloader does not support live streams yet. + def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') |