projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b687c85
)
[canalplus] Add fallback for video id (closes #11764)
author
Sergey M․
<dstftw@gmail.com>
Wed, 18 Jan 2017 15:20:11 +0000
(22:20 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Wed, 18 Jan 2017 15:20:11 +0000
(22:20 +0700)
youtube_dl/extractor/canalplus.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/canalplus.py
b/youtube_dl/extractor/canalplus.py
index 10cf165bc47c0158720d59cde6929f7369d9c8de..b3f76a7b1de2414db91206f091011daabafa24a1 100644
(file)
--- 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')