1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 22:51:04 +02:00

[firsttv] Fix video URL regex

This commit is contained in:
Sergey M. 2014-02-11 00:49:37 +07:00
parent 0f6ed94a15
commit 2a584ea90a

View File

@ -32,7 +32,7 @@ def _real_extract(self, url):
webpage = self._download_webpage(url, video_id, 'Downloading page')
video_url = self._html_search_regex(
r'''(?s)jwplayer\('flashvideoportal_1'\).setup\({.*?'file': '([^']+)'.*?}\);''', webpage, 'video URL')
r'''(?s)jwplayer\('flashvideoportal_1'\)\.setup\({.*?'file': '([^']+)'.*?}\);''', webpage, 'video URL')
title = self._html_search_regex(
r'<div class="tv_translation">\s*<h1><a href="[^"]+">([^<]*)</a>', webpage, 'title')