Browse Source

[canalplus] Extend video id regex (Closes #7076)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
83a5668694
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/canalplus.py

+ 2
- 1
youtube_dl/extractor/canalplus.py View File

@ -78,7 +78,8 @@ class CanalplusIE(InfoExtractor):
if video_id is None:
webpage = self._download_webpage(url, display_id)
video_id = self._search_regex(
r'<canal:player[^>]+?videoId="(\d+)"', webpage, 'video id')
[r'<canal:player[^>]+?videoId=(["\'])(?P<id>\d+)', r'id=["\']canal_video_player(?P<id>\d+)'],
webpage, 'video id', group='id')
info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id)
doc = self._download_xml(info_url, video_id, 'Downloading video XML')


Loading…
Cancel
Save