summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-10-06 23:08:28 +0600
committerSergey M․ <dstftw@gmail.com>2015-10-06 23:08:28 +0600
commit83a56686944225137ce646748b8e940a21584941 (patch)
treec5f41802ca2322f4669bc129c2477ca4c37aad3b
parentf648e682a7a82f71a278ec92159ac5d343a4b3eb (diff)
downloadyoutube-dl-83a56686944225137ce646748b8e940a21584941.tar.gz
youtube-dl-83a56686944225137ce646748b8e940a21584941.tar.xz
youtube-dl-83a56686944225137ce646748b8e940a21584941.zip
[canalplus] Extend video id regex (Closes #7076)
-rw-r--r--youtube_dl/extractor/canalplus.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/canalplus.py b/youtube_dl/extractor/canalplus.py
index 57e0cda2c..c0ca3a0fa 100644
--- a/youtube_dl/extractor/canalplus.py
+++ b/youtube_dl/extractor/canalplus.py
@@ -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')