mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[francetvinfo.fr] Support more ID suffixes
This commit is contained in:
parent
ab083b08ab
commit
24b3d5e538
@ -62,7 +62,7 @@ def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
page_title = mobj.group('title')
|
||||
webpage = self._download_webpage(url, page_title)
|
||||
video_id = self._search_regex(r'id-video=(\d+?)"', webpage, u'video id')
|
||||
video_id = self._search_regex(r'id-video=(\d+?)[@"]', webpage, u'video id')
|
||||
return self._extract_video(video_id)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user