diff options
author | enigmaquip <enigmaquip@users.noreply.github.com> | 2017-11-22 16:39:11 -0700 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2017-11-23 06:39:11 +0700 |
commit | 2688664762f406b1ba2913af25ee3a2d2ba58038 (patch) | |
tree | 02f7250ad0f4409f059c9307f7653c64a9e15bd0 | |
parent | 8f639411042d35cd3be6eeff485e3015bafce4d7 (diff) |
[culturebox] Fix extraction (closes #14827)
-rw-r--r-- | youtube_dl/extractor/francetv.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |