From: enigmaquip Date: Wed, 22 Nov 2017 23:39:11 +0000 (-0700) Subject: [culturebox] Fix extraction (closes #14827) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=2688664762f406b1ba2913af25ee3a2d2ba58038;p=youtube-dl [culturebox] Fix extraction (closes #14827) --- diff --git a/youtube_dl/extractor/francetv.py b/youtube_dl/extractor/francetv.py index 2bcbb3e39..037e538cc 100644 --- a/youtube_dl/extractor/francetv.py +++ b/youtube_dl/extractor/francetv.py @@ -363,6 +363,6 @@ class CultureboxIE(FranceTVBaseInfoExtractor): raise ExtractorError('Video %s is not available' % name, expected=True) video_id, catalogue = self._search_regex( - r'"http://videos\.francetv\.fr/video/([^@]+@[^"]+)"', webpage, 'video id').split('@') + r'"https?://videos\.francetv\.fr/video/([^@]+@[^"]+)"', webpage, 'video id').split('@') return self._extract_video(video_id, catalogue)