1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 06:35:12 +00:00

[extractor] Common function _match_valid_url

This commit is contained in:
pukkandan
2021-08-19 07:11:24 +05:30
parent f79ec47d71
commit 5ad28e7ffd
293 changed files with 389 additions and 541 deletions

View File

@@ -1,6 +1,5 @@
from __future__ import unicode_literals
import re
from .common import InfoExtractor
from ..compat import compat_str
@@ -76,7 +75,7 @@ class MxplayerIE(InfoExtractor):
yield stream_type, 'base', stream
def _real_extract(self, url):
display_id, video_id = re.match(self._VALID_URL, url).groups()
display_id, video_id = self._match_valid_url(url).groups()
webpage = self._download_webpage(url, video_id)
source = self._parse_json(
@@ -170,7 +169,7 @@ class MxplayerShowIE(InfoExtractor):
next_url = season_json.get('next')
def _real_extract(self, url):
display_id, show_id = re.match(self._VALID_URL, url).groups()
display_id, show_id = self._match_valid_url(url).groups()
return self.playlist_result(
self._entries(show_id), playlist_id=show_id,
playlist_title=display_id.replace('-', ' ').title())