youtube-dl/youtube_dl/extractor/canalc2.py

48 lines
1.4 KiB
Python
Raw Normal View History

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