about summary refs log tree commit diff
path: root/youtube_dl/extractor/sportbox.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-15 23:08:44 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-15 23:08:44 +0600
commit1436a6835e0f3489a4c37cca3da5087567b68158 (patch)
treed45e10bf0f569ab8b499a9193047d192ba1d7e21 /youtube_dl/extractor/sportbox.py
parent3a7382950b6f498f50173c8813f6cb1db3739277 (diff)
downloadyoutube-dl-1436a6835e0f3489a4c37cca3da5087567b68158.tar.gz
youtube-dl-1436a6835e0f3489a4c37cca3da5087567b68158.tar.xz
youtube-dl-1436a6835e0f3489a4c37cca3da5087567b68158.zip
[sportbox:embed] Add `_extract_urls`
Diffstat (limited to 'youtube_dl/extractor/sportbox.py')
-rw-r--r--youtube_dl/extractor/sportbox.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/sportbox.py b/youtube_dl/extractor/sportbox.py
index 10c45eb74..a869a1b25 100644
--- a/youtube_dl/extractor/sportbox.py
+++ b/youtube_dl/extractor/sportbox.py
@@ -91,6 +91,12 @@ class SportBoxEmbedIE(InfoExtractor):
         'only_matching': True,
     }]
 
+    @staticmethod
+    def _extract_urls(webpage):
+        return re.findall(
+            r'<iframe[^>]+src="(https?://news\.sportbox\.ru/vdl/player[^"]+)"',
+            webpage)
+
     def _real_extract(self, url):
         video_id = self._match_id(url)