yt-dlc/youtube_dl/extractor/telebruxelles.py

63 lines
2.3 KiB
Python
Raw Normal View History

2014-11-22 12:34:29 +00:00
# coding: utf-8
from __future__ import unicode_literals
import re
2014-11-22 12:34:29 +00:00
from .common import InfoExtractor
class TeleBruxellesIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?(?:telebruxelles|bx1)\.be/(news|sport|dernier-jt)/?(?P<id>[^/#?]+)'
2014-11-22 12:34:29 +00:00
_TESTS = [{
2014-11-23 08:44:42 +00:00
'url': 'http://www.telebruxelles.be/news/auditions-devant-parlement-francken-galant-tres-attendus/',
'md5': '59439e568c9ee42fb77588b2096b214f',
2014-11-22 12:34:29 +00:00
'info_dict': {
'id': '11942',
2014-11-23 08:44:42 +00:00
'display_id': 'auditions-devant-parlement-francken-galant-tres-attendus',
2014-11-22 12:34:29 +00:00
'ext': 'flv',
2014-11-23 08:44:42 +00:00
'title': 'Parlement : Francken et Galant répondent aux interpellations de lopposition',
'description': 're:Les auditions des ministres se poursuivent*'
},
'params': {
'skip_download': 'requires rtmpdump'
},
2014-11-22 12:34:29 +00:00
}, {
2014-11-23 08:44:42 +00:00
'url': 'http://www.telebruxelles.be/sport/basket-brussels-bat-mons-80-74/',
'md5': '181d3fbdcf20b909309e5aef5c6c6047',
2014-11-22 12:34:29 +00:00
'info_dict': {
'id': '10091',
2014-11-23 08:44:42 +00:00
'display_id': 'basket-brussels-bat-mons-80-74',
2014-11-22 12:34:29 +00:00
'ext': 'flv',
'title': 'Basket : le Brussels bat Mons 80-74',
2014-11-23 08:44:42 +00:00
'description': 're:^Ils l\u2019on fait ! En basket, le B*',
},
'params': {
'skip_download': 'requires rtmpdump'
},
}]
2014-11-22 12:34:29 +00:00
def _real_extract(self, url):
2014-11-23 08:44:42 +00:00
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
2014-11-22 12:34:29 +00:00
2014-11-23 08:44:42 +00:00
article_id = self._html_search_regex(
r"<article id=\"post-(\d+)\"", webpage, 'article ID', default=None)
2014-11-23 08:44:42 +00:00
title = self._html_search_regex(
r'<h1 class=\"entry-title\">(.*?)</h1>', webpage, 'title')
description = self._og_search_description(webpage, default=None)
2014-11-22 12:34:29 +00:00
2014-11-23 08:44:42 +00:00
rtmp_url = self._html_search_regex(
r'file\s*:\s*"(rtmp://[^/]+/vod/mp4:"\s*\+\s*"[^"]+"\s*\+\s*".mp4)"',
2014-11-23 08:44:42 +00:00
webpage, 'RTMP url')
rtmp_url = re.sub(r'"\s*\+\s*"', '', rtmp_url)
2014-11-23 08:44:42 +00:00
return {
'id': article_id or display_id,
2014-11-23 08:44:42 +00:00
'display_id': display_id,
'title': title,
'description': description,
'url': rtmp_url,
'ext': 'flv',
'rtmp_live': True # if rtmpdump is not called with "--live" argument, the download is blocked and can be completed
}