aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/streamable.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/streamable.py')
-rw-r--r--youtube_dl/extractor/streamable.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/youtube_dl/extractor/streamable.py b/youtube_dl/extractor/streamable.py
index 1c61437..2c26fa6 100644
--- a/youtube_dl/extractor/streamable.py
+++ b/youtube_dl/extractor/streamable.py
@@ -1,6 +1,8 @@
# coding: utf-8
from __future__ import unicode_literals
+import re
+
from .common import InfoExtractor
from ..utils import (
ExtractorError,
@@ -48,6 +50,14 @@ class StreamableIE(InfoExtractor):
}
]
+ @staticmethod
+ def _extract_url(webpage):
+ mobj = re.search(
+ r'<iframe[^>]+src=(?P<q1>[\'"])(?P<src>(?:https?:)?//streamable\.com/(?:(?!\1).+))(?P=q1)',
+ webpage)
+ if mobj:
+ return mobj.group('src')
+
def _real_extract(self, url):
video_id = self._match_id(url)