youtube-dl

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

commit 24b3d5e53885ed5dea37ad5d612764c6d058558f
parent ab083b08abdea6135ea30366342e010fe598d7b0
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 30 Jan 2014 06:12:56 +0100

[francetvinfo.fr] Support more ID suffixes

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

diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py @@ -62,7 +62,7 @@ class FranceTvInfoIE(FranceTVBaseInfoExtractor): mobj = re.match(self._VALID_URL, url) page_title = mobj.group('title') webpage = self._download_webpage(url, page_title) - video_id = self._search_regex(r'id-video=(\d+?)"', webpage, u'video id') + video_id = self._search_regex(r'id-video=(\d+?)[@"]', webpage, u'video id') return self._extract_video(video_id)