yt-dlc/youtube_dl/extractor/canalc2.py

51 lines
1.5 KiB
Python
Raw Normal View History

2013-08-22 11:54:23 +00:00
# coding: utf-8
2014-02-22 13:27:09 +00:00
from __future__ import unicode_literals
2013-08-22 11:54:23 +00:00
import re
from .common import InfoExtractor
2013-08-27 08:35:20 +00:00
2013-08-22 11:54:23 +00:00
class Canalc2IE(InfoExtractor):
2013-09-10 10:13:22 +00:00
IE_NAME = 'canalc2.tv'
2015-10-18 13:23:31 +00:00
_VALID_URL = r'https?://(?:www\.)?canalc2\.tv/video/(?P<id>\d+)'
2013-08-22 11:54:23 +00:00
_TEST = {
2015-09-21 14:52:36 +00:00
'url': 'http://www.canalc2.tv/video/12163',
2014-02-22 13:27:09 +00:00
'md5': '060158428b650f896c542dfbb3d6487f',
'info_dict': {
'id': '12163',
'ext': 'mp4',
'title': 'Terrasses du Numérique'
2015-09-21 14:52:36 +00:00
},
'params': {
'skip_download': True, # Requires rtmpdump
2013-08-22 11:54:23 +00:00
}
}
def _real_extract(self, url):
2015-09-21 14:52:36 +00:00
video_id = self._match_id(url)
2013-08-22 11:54:23 +00:00
webpage = self._download_webpage(url, video_id)
2015-09-21 14:52:36 +00:00
video_url = self._search_regex(
2015-10-18 13:23:31 +00:00
r'jwplayer\((["\'])Player\1\)\.setup\({[^}]*file\s*:\s*(["\'])(?P<file>.+?)\2',
webpage, 'video_url', group='file')
2015-09-21 14:52:36 +00:00
formats = [{'url': video_url}]
if video_url.startswith('rtmp://'):
2015-10-18 13:19:43 +00:00
rtmp = re.search(r'^(?P<url>rtmp://[^/]+/(?P<app>.+/))(?P<play_path>mp4:.+)$', video_url)
2015-09-21 14:52:36 +00:00
formats[0].update({
2015-10-18 13:19:43 +00:00
'url': rtmp.group('url'),
2015-10-18 13:23:52 +00:00
'ext': 'flv',
2015-09-21 14:52:36 +00:00
'app': rtmp.group('app'),
'play_path': rtmp.group('play_path'),
2015-10-18 13:19:43 +00:00
'page_url': url,
2015-09-21 14:52:36 +00:00
})
2013-08-27 08:35:20 +00:00
title = self._html_search_regex(
2015-09-21 14:52:36 +00:00
r'(?s)class="[^"]*col_description[^"]*">.*?<h3>(.*?)</h3>', webpage, 'title')
2014-02-22 13:27:09 +00:00
return {
'id': video_id,
2015-09-21 14:52:36 +00:00
'formats': formats,
2014-02-22 13:27:09 +00:00
'title': title,
}