aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-12-11 00:45:27 +0700
committerSergey M․ <dstftw@gmail.com>2016-12-11 00:45:27 +0700
commit6ca478d44a59b6ed2567d26c2f857060cd41e3df (patch)
treea63ad08e345cd6d4cd248841cd24cfd5b47bff98
parent655cb545ab2a037465e18bcb88b54a4375fe2f37 (diff)
downloadyoutube-dl-6ca478d44a59b6ed2567d26c2f857060cd41e3df.zip
youtube-dl-6ca478d44a59b6ed2567d26c2f857060cd41e3df.tar.gz
youtube-dl-6ca478d44a59b6ed2567d26c2f857060cd41e3df.tar.bz2
[canalplus] Add another video id regex (closes #11399)
-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 1c3c41d..10cf165 100644
--- a/youtube_dl/extractor/canalplus.py
+++ b/youtube_dl/extractor/canalplus.py
@@ -105,7 +105,8 @@ class CanalplusIE(InfoExtractor):
webpage = self._download_webpage(url, display_id)
video_id = self._search_regex(
[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')
info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id)