logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 8088ce036ac4ce282f8f864c6b5f4f3987647221
parent 29f7bfc4d7a80cecd67c19c25134481fbba6e175
Author: Petr Vaněk <arkamar@atlas.cz>
Date:   Sat, 12 Feb 2022 11:55:13 +0100

revert: use _match_valid_url function

Diffstat:

Myoutube_dl/extractor/streamcz.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/streamcz.py b/youtube_dl/extractor/streamcz.py @@ -1,5 +1,6 @@ # coding: utf-8 import json +import re from .common import InfoExtractor from ..utils import ( @@ -55,7 +56,7 @@ class StreamCZIE(InfoExtractor): } def _real_extract(self, url): - display_id, video_id = self._match_valid_url(url).groups() + display_id, video_id = re.match(self._VALID_URL, url).groups() data = self._download_json( 'https://www.televizeseznam.cz/api/graphql', video_id, 'Downloading GraphQL result',