diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-02-16 23:42:36 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-02-16 23:44:03 +0800 |
commit | a4a554a79354981fcab55de8eaab7b95a40bbb48 (patch) | |
tree | 50e68b423872a31878a8b068e035118f722993cd /youtube_dl/extractor/tvnoe.py | |
parent | b898f0a173fa040ddf95dbd97650cec07a8f19f5 (diff) |
[generic] Try parsing JWPlayer embedded videos (closes #12030)
Diffstat (limited to 'youtube_dl/extractor/tvnoe.py')
-rw-r--r-- | youtube_dl/extractor/tvnoe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tvnoe.py b/youtube_dl/extractor/tvnoe.py index 6d5c74826..1a5b76bf2 100644 --- a/youtube_dl/extractor/tvnoe.py +++ b/youtube_dl/extractor/tvnoe.py @@ -1,7 +1,7 @@ # coding: utf-8 from __future__ import unicode_literals -from .jwplatform import JWPlatformBaseIE +from .common import InfoExtractor from ..utils import ( clean_html, get_element_by_class, @@ -9,7 +9,7 @@ from ..utils import ( ) -class TVNoeIE(JWPlatformBaseIE): +class TVNoeIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?tvnoe\.cz/video/(?P<id>[0-9]+)' _TEST = { 'url': 'http://www.tvnoe.cz/video/10362', |