[biobiotv] Add extractor
[youtube-dl] / youtube_dl / extractor / biobiotv.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7
8
9 class BioBioTVIE(InfoExtractor):
10     _VALID_URL = r'https?://tv\.biobiochile\.cl/notas/(?P<year>\d{4})/\d{2}/\d{2}/(?P<id>[\w-]+)(?:\.shtml)?'
11
12     _TESTS = [{
13         'url': 'http://tv.biobiochile.cl/notas/2015/10/21/sobre-camaras-y-camarillas-parlamentarias.shtml',
14         'md5': '26f51f03cf580265defefb4518faec09',
15         'info_dict': {
16             'id': 'col_c266',
17             'display_id': 'sobre-camaras-y-camarillas-parlamentarias',
18             'ext': 'mp4',
19             'title': 'Sobre Cámaras y camarillas parlamentarias - BioBioChile TV',
20             'thumbnail': 'http://media.biobiochile.cl/wp-content/uploads/2015/10/atria-2010-730x350.jpg',
21             'url': 'http://unlimited2-cl.digitalproserver.com/bbtv/2015/col_c266.mp4',
22             'uploader': 'Fernando Atria',
23         }
24     }, {
25         'url': 'http://tv.biobiochile.cl/notas/2015/10/22/ninos-transexuales-de-quien-es-la-decision.shtml',
26         'md5': 'a8c868e6b5f6c17d56873d5633204f84',
27         'info_dict': {
28             'id': 'col_c270',
29             'display_id': 'ninos-transexuales-de-quien-es-la-decision',
30             'ext': 'mp4',
31             'title': 'Niños transexuales: ¿De quién es la decisión? - BioBioChile TV',
32             'thumbnail': 'http://media.biobiochile.cl/wp-content/uploads/2015/10/samantha-2210-730x350.jpg',
33             'url': 'http://unlimited2-cl.digitalproserver.com/bbtv/2015/col_c270.mp4',
34             'uploader': 'Samantha Morán',
35         }
36     }, {
37         'url': 'http://tv.biobiochile.cl/notas/2015/10/21/exclusivo-hector-pinto-formador-de-chupete-revela-version-del-ex-delantero-albo.shtml',
38         'md5': 'c8369b50d42ff0a4f6b969fbd1a7c32d',
39         'info_dict': {
40             'id': 'Keno_Pinto',
41             'display_id': 'exclusivo-hector-pinto-formador-de-chupete-revela-version-del-ex-delantero-albo',
42             'ext': 'mp4',
43             'title': 'Exclusivo: Héctor Pinto, formador de “Chupete”, revela versión del ex delantero albo - BioBioChile TV',
44             'thumbnail': 'http://media.biobiochile.cl/wp-content/uploads/2015/10/pinto-730x350.jpg',
45             'url': 'http://unlimited2-cl.digitalproserver.com/bbtv/2015/Keno_Pinto.mp4',
46             'uploader': 'Juan Pablo Echenique',
47         }
48     }]
49
50     def _real_extract(self, url):
51         mobj = re.match(self._VALID_URL, url)
52         display_id = mobj.group('id')
53         year = mobj.group('year')
54
55         webpage = self._download_webpage(url, display_id)
56
57         title = self._html_search_meta(
58             'og:title', webpage, 'title', fatal=True)
59
60         thumbnail = self._html_search_meta(
61             'og:image', webpage, 'thumbnail', fatal=True)
62
63         video_id = self._html_search_regex(
64             r'loadFWPlayerVideo\(\"player_0\", \"\d{4}/(.+)\.mp4\"\)', webpage, 'title')
65
66         url = 'http://unlimited2-cl.digitalproserver.com/bbtv/' + year + '/' + video_id + '.mp4'
67
68         return {
69             'id': video_id,
70             'title': title,
71             'url': url,
72             'display_id': display_id,
73             'thumbnail': thumbnail,
74             'uploader': self._search_regex(r'biobiochile\.cl/author[^"]+"[^>]*>([^<]+)<', webpage, 'uploader', fatal=False),
75         }