aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/onionstudios.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/onionstudios.py')
-rw-r--r--hypervideo_dl/extractor/onionstudios.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/hypervideo_dl/extractor/onionstudios.py b/hypervideo_dl/extractor/onionstudios.py
index cf5c39e..5fa49e1 100644
--- a/hypervideo_dl/extractor/onionstudios.py
+++ b/hypervideo_dl/extractor/onionstudios.py
@@ -1,8 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-import re
-
from .common import InfoExtractor
from ..compat import compat_str
from ..utils import js_to_json
@@ -10,6 +5,7 @@ from ..utils import js_to_json
class OnionStudiosIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?onionstudios\.com/(?:video(?:s/[^/]+-|/)|embed\?.*\bid=)(?P<id>\d+)(?!-)'
+ _EMBED_REGEX = [r'(?s)<(?:iframe|bulbs-video)[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?onionstudios\.com/(?:embed.+?|video/\d+\.json))\1']
_TESTS = [{
'url': 'http://www.onionstudios.com/videos/hannibal-charges-forward-stops-for-a-cocktail-2937',
@@ -32,13 +28,6 @@ class OnionStudiosIE(InfoExtractor):
'only_matching': True,
}]
- @staticmethod
- def _extract_url(webpage):
- mobj = re.search(
- r'(?s)<(?:iframe|bulbs-video)[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?onionstudios\.com/(?:embed.+?|video/\d+\.json))\1', webpage)
- if mobj:
- return mobj.group('url')
-
def _real_extract(self, url):
video_id = self._match_id(url)