mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[rtve:live] Fix extraction (closes #11529)
This commit is contained in:
parent
4606c34e19
commit
b63005f5af
@ -209,7 +209,10 @@ def _real_extract(self, url):
|
|||||||
title += ' ' + time.strftime('%Y-%m-%dZ%H%M%S', start_time)
|
title += ' ' + time.strftime('%Y-%m-%dZ%H%M%S', start_time)
|
||||||
|
|
||||||
vidplayer_id = self._search_regex(
|
vidplayer_id = self._search_regex(
|
||||||
r'playerId=player([0-9]+)', webpage, 'internal video ID')
|
(r'playerId=player([0-9]+)',
|
||||||
|
r'class=["\'].*?\blive_mod\b.*?["\'][^>]+data-assetid=["\'](\d+)',
|
||||||
|
r'data-id=["\'](\d+)'),
|
||||||
|
webpage, 'internal video ID')
|
||||||
png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/amonet/videos/%s.png' % vidplayer_id
|
png_url = 'http://www.rtve.es/ztnr/movil/thumbnail/amonet/videos/%s.png' % vidplayer_id
|
||||||
png = self._download_webpage(png_url, video_id, 'Downloading url information')
|
png = self._download_webpage(png_url, video_id, 'Downloading url information')
|
||||||
m3u8_url = _decrypt_url(png)
|
m3u8_url = _decrypt_url(png)
|
||||||
|
Loading…
Reference in New Issue
Block a user