Browse Source

revert: use _match_valid_url function

Petr Vaněk 3 years ago
parent
commit
8088ce036a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/streamcz.py

+ 2 - 1
youtube_dl/extractor/streamcz.py

@@ -1,5 +1,6 @@
 # coding: utf-8
 # coding: utf-8
 import json
 import json
+import re
 
 
 from .common import InfoExtractor
 from .common import InfoExtractor
 from ..utils import (
 from ..utils import (
@@ -55,7 +56,7 @@ class StreamCZIE(InfoExtractor):
                 }
                 }
 
 
     def _real_extract(self, url):
     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(
         data = self._download_json(
             'https://www.televizeseznam.cz/api/graphql', video_id, 'Downloading GraphQL result',
             'https://www.televizeseznam.cz/api/graphql', video_id, 'Downloading GraphQL result',