1
1
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-02-20 23:47:48 -05:00

[francetv:site] Extend video id regex (closes , closes )

This commit is contained in:
Sergey M․ 2019-02-28 23:26:52 +07:00
parent db1c3a9d3f
commit 9d9a8676dc
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -271,7 +271,7 @@ class FranceTVSiteIE(FranceTVBaseInfoExtractor):
catalogue = None catalogue = None
video_id = self._search_regex( video_id = self._search_regex(
r'data-main-video=(["\'])(?P<id>(?:(?!\1).)+)\1', r'(?:data-main-video\s*=|videoId\s*:)\s*(["\'])(?P<id>(?:(?!\1).)+)\1',
webpage, 'video id', default=None, group='id') webpage, 'video id', default=None, group='id')
if not video_id: if not video_id: