diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-10-29 00:20:29 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-10-29 00:21:50 +0700 |
commit | 476cf548e1c6aa83686150db7abf625c6237a67f (patch) | |
tree | 4e8ca6af0b4dac9931652d6092f734fc26347112 /youtube_dl/extractor/generic.py | |
parent | bebef109092ba2ad1b08619661aa1b51e65be1bf (diff) |
[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.py | 6 |
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) |