aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/canal13cl.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-12-20 16:11:07 +0100
committerremitamine <remitamine@gmail.com>2015-12-20 16:11:07 +0100
commitc240ab6ecfc06fe98c03900c59861b84dce338b9 (patch)
tree6fcf9ba816397791f8eb34a01822e3f021e0c9f4 /youtube_dl/extractor/canal13cl.py
parentb0eeaf4f40b12d9a6a3b45918b0ec531db4d310c (diff)
parent6882c0870eb89a17eb81d3d273a9f9e42a8bea5e (diff)
downloadyoutube-dl-c240ab6ecfc06fe98c03900c59861b84dce338b9.tar.xz
Merge pull request #6790 from remitamine/tele13
[canal13cl] fix info extraction
Diffstat (limited to 'youtube_dl/extractor/canal13cl.py')
-rw-r--r--youtube_dl/extractor/canal13cl.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/youtube_dl/extractor/canal13cl.py b/youtube_dl/extractor/canal13cl.py
deleted file mode 100644
index 93241fefe..000000000
--- a/youtube_dl/extractor/canal13cl.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-import re
-
-from .common import InfoExtractor
-
-
-class Canal13clIE(InfoExtractor):
- _VALID_URL = r'^http://(?:www\.)?13\.cl/(?:[^/?#]+/)*(?P<id>[^/?#]+)'
- _TEST = {
- 'url': 'http://www.13.cl/t13/nacional/el-circulo-de-hierro-de-michelle-bachelet-en-su-regreso-a-la-moneda',
- 'md5': '4cb1fa38adcad8fea88487a078831755',
- 'info_dict': {
- 'id': '1403022125',
- 'display_id': 'el-circulo-de-hierro-de-michelle-bachelet-en-su-regreso-a-la-moneda',
- 'ext': 'mp4',
- 'title': 'El "círculo de hierro" de Michelle Bachelet en su regreso a La Moneda',
- 'description': '(Foto: Agencia Uno) En nueve días más, Michelle Bachelet va a asumir por segunda vez como presidenta de la República. Entre aquellos que la acompañarán hay caras que se repiten y otras que se consolidan en su entorno de colaboradores más cercanos.',
- }
- }
-
- def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
- display_id = mobj.group('id')
-
- webpage = self._download_webpage(url, display_id)
-
- title = self._html_search_meta(
- 'twitter:title', webpage, 'title', fatal=True)
- description = self._html_search_meta(
- 'twitter:description', webpage, 'description')
- url = self._html_search_regex(
- r'articuloVideo = \"(.*?)\"', webpage, 'url')
- real_id = self._search_regex(
- r'[^0-9]([0-9]{7,})[^0-9]', url, 'id', default=display_id)
- thumbnail = self._html_search_regex(
- r'articuloImagen = \"(.*?)\"', webpage, 'thumbnail')
-
- return {
- 'id': real_id,
- 'display_id': display_id,
- 'url': url,
- 'title': title,
- 'description': description,
- 'ext': 'mp4',
- 'thumbnail': thumbnail,
- }