diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-18 22:20:11 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-18 22:20:11 +0700 |
commit | aaf2b7c57a3d2dc9ba12f1aa401cba088e114916 (patch) | |
tree | d31d070f400a2f477ffc92ebc6f7726bc916942a /youtube_dl | |
parent | b687c85eab942553e925256ad10de693227ba553 (diff) |
[canalplus] Add fallback for video id (closes #11764)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/canalplus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/canalplus.py b/youtube_dl/extractor/canalplus.py index 10cf165bc..b3f76a7b1 100644 --- a/youtube_dl/extractor/canalplus.py +++ b/youtube_dl/extractor/canalplus.py @@ -107,7 +107,7 @@ class CanalplusIE(InfoExtractor): [r'<canal:player[^>]+?videoId=(["\'])(?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', default=mobj.group('vid'), group='id') info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id) video_data = self._download_json(info_url, video_id, 'Downloading video JSON') |