Browse Source

[canalplus] Add another video id regex (closes #11399)

Sergey M․ 8 years ago
parent
commit
6ca478d44a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/canalplus.py

+ 2 - 1
youtube_dl/extractor/canalplus.py

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