]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/ctsnews.py
[misc] Add `hatch`, `ruff`, `pre-commit` and improve dev docs (#7409)
[yt-dlp.git] / yt_dlp / extractor / ctsnews.py
CommitLineData
367cc95a 1from .common import InfoExtractor
7d4dd3e5 2from .youtube import YoutubeIE
e897bd82 3from ..utils import unified_timestamp
367cc95a 4
ab794a55 5
367cc95a 6class CtsNewsIE(InfoExtractor):
e1ba1523 7 IE_DESC = '華視新聞'
5886b38d 8 _VALID_URL = r'https?://news\.cts\.com\.tw/[a-z]+/[a-z]+/\d+/(?P<id>\d+)\.html'
367cc95a 9 _TESTS = [{
e683a48d
YCH
10 'url': 'http://news.cts.com.tw/cts/international/201501/201501291578109.html',
11 'md5': 'a9875cb790252b08431186d741beaabe',
12 'info_dict': {
13 'id': '201501291578109',
14 'ext': 'mp4',
7d4dd3e5 15 'title': '以色列.真主黨交火 3人死亡 - 華視新聞網',
16 'description': '以色列和黎巴嫩真主黨,爆發五年最嚴重衝突,雙方砲轟交火,兩名以軍死亡,還有一名西班牙籍的聯合國維和人員也不幸罹難。大陸陝西、河南、安徽、江蘇和湖北五個省份出現大暴雪,嚴重影響陸空交通,不過九華山卻出現...',
e683a48d
YCH
17 'timestamp': 1422528540,
18 'upload_date': '20150129',
19 }
20 }, {
21 # News count not appear on page but still available in database
367cc95a
YCH
22 'url': 'http://news.cts.com.tw/cts/international/201309/201309031304098.html',
23 'md5': '3aee7e0df7cdff94e43581f54c22619e',
24 'info_dict': {
25 'id': '201309031304098',
26 'ext': 'mp4',
7d4dd3e5 27 'title': '韓國31歲童顏男 貌如十多歲小孩 - 華視新聞網',
69d8eeee 28 'description': '越有年紀的人,越希望看起來年輕一點,而南韓卻有一位31歲的男子,看起來像是11、12歲的小孩,身...',
ec85ded8 29 'thumbnail': r're:^https?://.*\.jpg$',
367cc95a
YCH
30 'timestamp': 1378205880,
31 'upload_date': '20130903',
32 }
e683a48d
YCH
33 }, {
34 # With Youtube embedded video
35 'url': 'http://news.cts.com.tw/cts/money/201501/201501291578003.html',
69d8eeee 36 'md5': 'e4726b2ccd70ba2c319865e28f0a91d1',
e683a48d
YCH
37 'info_dict': {
38 'id': 'OVbfO7d0_hQ',
39 'ext': 'mp4',
40 'title': 'iPhone6熱銷 蘋果財報亮眼',
41 'description': 'md5:f395d4f485487bb0f992ed2c4b07aa7d',
ec85ded8 42 'thumbnail': r're:^https?://.*\.jpg$',
e683a48d
YCH
43 'upload_date': '20150128',
44 'uploader_id': 'TBSCTS',
45 'uploader': '中華電視公司',
69d8eeee
YCH
46 },
47 'add_ie': ['Youtube'],
367cc95a
YCH
48 }]
49
50 def _real_extract(self, url):
51 news_id = self._match_id(url)
52 page = self._download_webpage(url, news_id)
53
69d8eeee
YCH
54 news_id = self._hidden_inputs(page).get('get_id')
55
56 if news_id:
57 mp4_feed = self._download_json(
58 'http://news.cts.com.tw/action/test_mp4feed.php',
59 news_id, note='Fetching feed', query={'news_id': news_id})
60 video_url = mp4_feed['source_url']
e683a48d
YCH
61 else:
62 self.to_screen('Not CTSPlayer video, trying Youtube...')
7d4dd3e5 63 youtube_url = YoutubeIE._extract_url(page)
367cc95a 64
69d8eeee 65 return self.url_result(youtube_url, ie='Youtube')
367cc95a
YCH
66
67 description = self._html_search_meta('description', page)
69d8eeee 68 title = self._html_search_meta('title', page, fatal=True)
367cc95a
YCH
69 thumbnail = self._html_search_meta('image', page)
70
e683a48d 71 datetime_str = self._html_search_regex(
69d8eeee
YCH
72 r'(\d{4}/\d{2}/\d{2} \d{2}:\d{2})', page, 'date and time', fatal=False)
73 timestamp = None
74 if datetime_str:
75 timestamp = unified_timestamp(datetime_str) - 8 * 3600
e683a48d 76
367cc95a
YCH
77 return {
78 'id': news_id,
e683a48d 79 'url': video_url,
367cc95a
YCH
80 'title': title,
81 'description': description,
367cc95a 82 'thumbnail': thumbnail,
e683a48d 83 'timestamp': timestamp,
367cc95a 84 }