youtube-dl

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

commit 8efd15f4772181f0a72adf369ba71fa219594af9
parent d26ebe990fd0e12365202db9948702be7c5edd02
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 28 Mar 2014 18:47:15 +0700

[canalplus] Fix video id extraction (Closes #2645)

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

diff --git a/youtube_dl/extractor/canalplus.py b/youtube_dl/extractor/canalplus.py @@ -28,7 +28,7 @@ class CanalplusIE(InfoExtractor): video_id = mobj.groupdict().get('id') if video_id is None: webpage = self._download_webpage(url, mobj.group('path')) - video_id = self._search_regex(r'videoId = "(\d+)";', webpage, u'video id') + video_id = self._search_regex(r'<canal:player videoId="(\d+)"', webpage, u'video id') info_url = self._VIDEO_INFO_TEMPLATE % video_id doc = self._download_xml(info_url,video_id, u'Downloading video info')