mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-25 08:41:28 +01:00
Compare commits
No commits in common. "7b4e302baec145e3c3394f1a154a51ddd5e506d8" and "11edfc8e1f62677455e26b570859293fb27c09cc" have entirely different histories.
7b4e302bae
...
11edfc8e1f
|
@ -66,6 +66,9 @@ class Kenh14VideoIE(InfoExtractor):
|
|||
'duration': 198.88,
|
||||
'timestamp': 1729741590,
|
||||
},
|
||||
'expected_warnings': [
|
||||
'Failed to download m3u8 information: HTTP Error 404: NOT FOUND',
|
||||
],
|
||||
}]
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
@ -79,22 +82,6 @@ class Kenh14VideoIE(InfoExtractor):
|
|||
'https://api.kinghub.vn/video/api/v1/detailVideoByGet?FileName={}'.format(
|
||||
remove_start(direct_url, 'kenh14cdn.com/')), video_id, fatal=False)
|
||||
|
||||
formats = [{'url': f'https://{direct_url}', 'format_id': 'http', 'quality': 1}]
|
||||
subtitles = {}
|
||||
video_data = self._download_json(
|
||||
f'https://{direct_url}.json', video_id, note='Downloading video data', fatal=False)
|
||||
if video_data:
|
||||
if hls_url := video_data.get('hls'):
|
||||
fmts, subs = self._extract_m3u8_formats_and_subtitles(
|
||||
hls_url, video_id, m3u8_id='hls', fatal=False)
|
||||
formats.extend(fmts)
|
||||
self._merge_subtitles(subs, target=subtitles)
|
||||
if dash_url := video_data.get('mpd'):
|
||||
fmts, subs = self._extract_mpd_formats_and_subtitles(
|
||||
dash_url, video_id, mpd_id='dash', fatal=False)
|
||||
formats.extend(fmts)
|
||||
self._merge_subtitles(subs, target=subtitles)
|
||||
|
||||
return {
|
||||
**traverse_obj(metadata, {
|
||||
'duration': ('duration', {parse_duration}),
|
||||
|
@ -107,8 +94,10 @@ class Kenh14VideoIE(InfoExtractor):
|
|||
traverse_obj(metadata, ('title', {strip_or_none}))
|
||||
or clean_html(self._og_search_title(webpage))
|
||||
or clean_html(get_element_by_class('vdbw-title', webpage))),
|
||||
'formats': formats,
|
||||
'subtitles': subtitles,
|
||||
'formats': [
|
||||
{'url': f'https://{direct_url}', 'format_id': 'http'},
|
||||
*self._extract_m3u8_formats(f'https://{direct_url}/master.m3u8', video_id, fatal=False),
|
||||
],
|
||||
'description': (
|
||||
clean_html(self._og_search_description(webpage))
|
||||
or clean_html(get_element_by_class('vdbw-sapo', webpage))),
|
||||
|
@ -152,8 +141,8 @@ class Kenh14PlaylistIE(InfoExtractor):
|
|||
return self.playlist_from_matches(
|
||||
get_elements_html_by_class('video-item', webpage), playlist_id,
|
||||
(clean_html(get_element_by_class('name', category_detail)) or unescapeHTML(embed_info.get('name'))),
|
||||
getter=lambda x: 'https://video.kenh14.vn/video/video-{}.chn'.format(extract_attributes(x)['data-id']),
|
||||
ie=Kenh14VideoIE, playlist_description=(
|
||||
getter=lambda x: 'https://video.kenh14.vn/video/{}.chn'.format(extract_attributes(x)['data-id']),
|
||||
ie=Kenh14VideoIE.ie_key(), playlist_description=(
|
||||
clean_html(get_element_by_class('description', category_detail))
|
||||
or unescapeHTML(embed_info.get('alternateName'))),
|
||||
thumbnail=traverse_obj(
|
||||
|
|
Loading…
Reference in New Issue
Block a user