mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[lci] Fix extraction (closes #17274)
This commit is contained in:
parent
6f356cbbcf
commit
bf1245d236
@ -20,5 +20,7 @@ class LCIIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
wat_id = self._search_regex(r'data-watid=[\'"](\d+)', webpage, 'wat id')
|
wat_id = self._search_regex(
|
||||||
|
(r'data-watid=[\'"](\d+)', r'idwat["\']?\s*:\s*["\']?(\d+)'),
|
||||||
|
webpage, 'wat id')
|
||||||
return self.url_result('wat:' + wat_id, 'Wat', wat_id)
|
return self.url_result('wat:' + wat_id, 'Wat', wat_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user