youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6ca478d44a59b6ed2567d26c2f857060cd41e3df
parent 655cb545ab2a037465e18bcb88b54a4375fe2f37
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 11 Dec 2016 00:45:27 +0700

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

Diffstat:
Myoutube_dl/extractor/canalplus.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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)