[iprima] Updated RE matching m3u8 URL. Fixes #8953

This commit is contained in:
Petr Urbanovský 2016-03-24 11:40:01 +01:00
parent 32d88410eb
commit baf9bccc62

View File

@ -43,7 +43,7 @@ class IPrimaIE(InfoExtractor):
req.add_header('Referer', url)
playerpage = self._download_webpage(req, video_id, note='Downloading player')
m3u8_url = self._search_regex(r"'src': '([^']+\.m3u8)'", playerpage, 'm3u8 url')
m3u8_url = self._search_regex(r"'src': '([^']+\.m3u8[^']+)'", playerpage, 'm3u8 url')
formats = self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4')