diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-18 19:23:31 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-18 19:23:31 +0600 |
commit | ef6c868f23f2fe0d493831e0d4cba71c735bd160 (patch) | |
tree | d317eda1d09d703fd9c309a0f029147f368b3831 /youtube_dl/extractor/canalc2.py | |
parent | 6682049dee5e73b98e99e1359b959240d0920d6b (diff) |
[canalc2] Improve some regexes
Diffstat (limited to 'youtube_dl/extractor/canalc2.py')
-rw-r--r-- | youtube_dl/extractor/canalc2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/canalc2.py b/youtube_dl/extractor/canalc2.py index 648af2e18..d9137e2ef 100644 --- a/youtube_dl/extractor/canalc2.py +++ b/youtube_dl/extractor/canalc2.py @@ -8,7 +8,7 @@ from .common import InfoExtractor class Canalc2IE(InfoExtractor): IE_NAME = 'canalc2.tv' - _VALID_URL = r'https?://(www\.)?canalc2\.tv/video/(?P<id>\d+)' + _VALID_URL = r'https?://(?:www\.)?canalc2\.tv/video/(?P<id>\d+)' _TEST = { 'url': 'http://www.canalc2.tv/video/12163', @@ -27,8 +27,8 @@ class Canalc2IE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) video_url = self._search_regex( - r'jwplayer\("Player"\).setup\({[^}]*file: "([^"]+)"', - webpage, 'video_url') + r'jwplayer\((["\'])Player\1\)\.setup\({[^}]*file\s*:\s*(["\'])(?P<file>.+?)\2', + webpage, 'video_url', group='file') formats = [{'url': video_url}] if video_url.startswith('rtmp://'): rtmp = re.search(r'^(?P<url>rtmp://[^/]+/(?P<app>.+/))(?P<play_path>mp4:.+)$', video_url) |