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/rudo.py | |
parent | b898f0a173fa040ddf95dbd97650cec07a8f19f5 (diff) |
[generic] Try parsing JWPlayer embedded videos (closes #12030)
Diffstat (limited to 'youtube_dl/extractor/rudo.py')
-rw-r--r-- | youtube_dl/extractor/rudo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/rudo.py b/youtube_dl/extractor/rudo.py index 3bfe934d8..51644011e 100644 --- a/youtube_dl/extractor/rudo.py +++ b/youtube_dl/extractor/rudo.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals import re -from .jwplatform import JWPlatformBaseIE +from .common import InfoExtractor from ..utils import ( js_to_json, get_element_by_class, @@ -11,7 +11,7 @@ from ..utils import ( ) -class RudoIE(JWPlatformBaseIE): +class RudoIE(InfoExtractor): _VALID_URL = r'https?://rudo\.video/vod/(?P<id>[0-9a-zA-Z]+)' _TEST = { |