mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[telebruxelles] Simplify (#4270)
This commit is contained in:
parent
119b3caa46
commit
dd60be2bf9
|
@ -1,49 +1,57 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
|
||||||
import json
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
class TeleBruxellesIE(InfoExtractor):
|
class TeleBruxellesIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?telebruxelles\.be/(news|sport|dernier-jt)/?(?P<title>[^\?]+)'
|
_VALID_URL = r'https?://(?:www\.)?telebruxelles\.be/(news|sport|dernier-jt)/?(?P<id>[^/#?]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': r'http://www.telebruxelles.be/news/auditions-devant-parlement-francken-galant-tres-attendus/',
|
'url': 'http://www.telebruxelles.be/news/auditions-devant-parlement-francken-galant-tres-attendus/',
|
||||||
'md5': '59439e568c9ee42fb77588b2096b214f',
|
'md5': '59439e568c9ee42fb77588b2096b214f',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '11942',
|
'id': '11942',
|
||||||
|
'display_id': 'auditions-devant-parlement-francken-galant-tres-attendus',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 're:Parlement : Francken et Galant répondent aux interpellations*',
|
'title': 'Parlement : Francken et Galant répondent aux interpellations de l’opposition',
|
||||||
'description': 're:Les auditions des ministres se poursuivent*'
|
'description': 're:Les auditions des ministres se poursuivent*'
|
||||||
}
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': 'requires rtmpdump'
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': r'http://www.telebruxelles.be/sport/basket-brussels-bat-mons-80-74/',
|
'url': 'http://www.telebruxelles.be/sport/basket-brussels-bat-mons-80-74/',
|
||||||
'md5': '181d3fbdcf20b909309e5aef5c6c6047',
|
'md5': '181d3fbdcf20b909309e5aef5c6c6047',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '10091',
|
'id': '10091',
|
||||||
|
'display_id': 'basket-brussels-bat-mons-80-74',
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 'Basket : le Brussels bat Mons 80-74',
|
'title': 'Basket : le Brussels bat Mons 80-74',
|
||||||
'description': 're:Ils l\u2019on fait ! En basket, le B*'
|
'description': 're:^Ils l\u2019on fait ! En basket, le B*',
|
||||||
}
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': 'requires rtmpdump'
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
display_id = self._match_id(url)
|
||||||
title = mobj.group('title')
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
webpage = self._download_webpage(url, title)
|
article_id = self._html_search_regex(
|
||||||
|
r"<article id=\"post-(\d+)\"", webpage, 'article ID')
|
||||||
|
title = self._html_search_regex(
|
||||||
|
r'<h1 class=\"entry-title\">(.*?)</h1>', webpage, 'title')
|
||||||
|
description = self._og_search_description(webpage)
|
||||||
|
|
||||||
article_id = self._html_search_regex(r"<article id=\"post-(\d+)\"", webpage, '0')
|
rtmp_url = self._html_search_regex(
|
||||||
title = self._html_search_regex(r'<h1 class=\"entry-title\">(.*?)</h1>', webpage, 'title')
|
r"file: \"(rtmp://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d{1,5}/vod/mp4:\" \+ \"\w+\" \+ \".mp4)\"",
|
||||||
description = self._html_search_regex(r"property=\"og:description\" content=\"(.*?)\"", webpage, 'description', fatal=False)
|
webpage, 'RTMP url')
|
||||||
|
|
||||||
rtmp_url = self._html_search_regex(r"file: \"(rtmp://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d{1,5}/vod/mp4:\" \+ \"\w+\" \+ \".mp4)\"", webpage, 'url')
|
|
||||||
rtmp_url = rtmp_url.replace("\" + \"", "")
|
rtmp_url = rtmp_url.replace("\" + \"", "")
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': article_id,
|
'id': article_id,
|
||||||
|
'display_id': display_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'description': description,
|
'description': description,
|
||||||
'url': rtmp_url,
|
'url': rtmp_url,
|
||||||
|
|
Loading…
Reference in a new issue