about summary refs log tree commit diff
path: root/youtube_dl/extractor/generic.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-10-29 00:20:29 +0700
committerSergey M․ <dstftw@gmail.com>2018-10-29 00:21:50 +0700
commit476cf548e1c6aa83686150db7abf625c6237a67f (patch)
tree4e8ca6af0b4dac9931652d6092f734fc26347112 /youtube_dl/extractor/generic.py
parentbebef109092ba2ad1b08619661aa1b51e65be1bf (diff)
downloadyoutube-dl-476cf548e1c6aa83686150db7abf625c6237a67f.tar.gz
youtube-dl-476cf548e1c6aa83686150db7abf625c6237a67f.tar.xz
youtube-dl-476cf548e1c6aa83686150db7abf625c6237a67f.zip
[sportbox] Improve extraction, add support for matchtv.ru and fix video id (closes #17978)
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r--youtube_dl/extractor/generic.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py
index 2a48667f0..545e03371 100644
--- a/youtube_dl/extractor/generic.py
+++ b/youtube_dl/extractor/generic.py
@@ -47,7 +47,7 @@ from .nbc import NBCSportsVPlayerIE
 from .ooyala import OoyalaIE
 from .rutv import RUTVIE
 from .tvc import TVCIE
-from .sportbox import SportBoxEmbedIE
+from .sportbox import SportBoxIE
 from .smotri import SmotriIE
 from .myvi import MyviIE
 from .condenast import CondeNastIE
@@ -2636,9 +2636,9 @@ class GenericIE(InfoExtractor):
             return self.url_result(tvc_url, 'TVC')
 
         # Look for embedded SportBox player
-        sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
+        sportbox_urls = SportBoxIE._extract_urls(webpage)
         if sportbox_urls:
-            return self.playlist_from_matches(sportbox_urls, video_id, video_title, ie='SportBoxEmbed')
+            return self.playlist_from_matches(sportbox_urls, video_id, video_title, ie=SportBoxIE.ie_key())
 
         # Look for embedded XHamster player
         xhamster_urls = XHamsterEmbedIE._extract_urls(webpage)