diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-12-25 04:02:29 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-12-25 04:02:29 +0700 |
commit | b63005f5afb164f8660c23ab62962287eb1e1c16 (patch) | |
tree | 0283be2c7508d2414117001e78fb86590d1797b7 | |
parent | 4606c34e19af395a1ddd31d2941d4ccd90e5e279 (diff) |
[rtve:live] Fix extraction (closes #11529)
-rw-r--r-- | youtube_dl/extractor/rtve.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py index 6a43b036e..746677a24 100644 --- a/youtube_dl/extractor/rtve.py +++ b/youtube_dl/extractor/rtve.py @@ -209,7 +209,10 @@ class RTVELiveIE(InfoExtractor): title += ' ' + time.strftime('%Y-%m-%dZ%H%M%S', start_time) 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 = self._download_webpage(png_url, video_id, 'Downloading url information') m3u8_url = _decrypt_url(png) |