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/screencastomatic.py | |
parent | b898f0a173fa040ddf95dbd97650cec07a8f19f5 (diff) |
[generic] Try parsing JWPlayer embedded videos (closes #12030)
Diffstat (limited to 'youtube_dl/extractor/screencastomatic.py')
-rw-r--r-- | youtube_dl/extractor/screencastomatic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/screencastomatic.py b/youtube_dl/extractor/screencastomatic.py index 94a2a37d2..b5e76c9af 100644 --- a/youtube_dl/extractor/screencastomatic.py +++ b/youtube_dl/extractor/screencastomatic.py @@ -1,11 +1,11 @@ # coding: utf-8 from __future__ import unicode_literals -from .jwplatform import JWPlatformBaseIE +from .common import InfoExtractor from ..utils import js_to_json -class ScreencastOMaticIE(JWPlatformBaseIE): +class ScreencastOMaticIE(InfoExtractor): _VALID_URL = r'https?://screencast-o-matic\.com/watch/(?P<id>[0-9a-zA-Z]+)' _TEST = { 'url': 'http://screencast-o-matic.com/watch/c2lD3BeOPl', |