1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

[extractor/hungama] Add subtitle (#4856)

Authored by: GautamMKGarg, pukkandan
This commit is contained in:
GautamMKGarg 2022-09-22 06:48:48 +05:30 committed by GitHub
parent 163281178a
commit 1c09783f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,15 +20,17 @@ class HungamaIE(InfoExtractor):
''' '''
_TESTS = [{ _TESTS = [{
'url': 'http://www.hungama.com/video/krishna-chants/39349649/', 'url': 'http://www.hungama.com/video/krishna-chants/39349649/',
'md5': 'a845a6d1ebd08d80c1035126d49bd6a0', 'md5': '687c5f1e9f832f3b59f44ed0eb1f120a',
'info_dict': { 'info_dict': {
'id': '2931166', 'id': '39349649',
'ext': 'mp4', 'ext': 'mp4',
'title': 'Lucky Ali - Kitni Haseen Zindagi', 'title': 'Krishna Chants',
'track': 'Kitni Haseen Zindagi', 'description': 'Watch Krishna Chants video now. You can also watch other latest videos only at Hungama',
'artist': 'Lucky Ali', 'upload_date': '20180829',
'album': 'Aks', 'duration': 264,
'release_year': 2000, 'timestamp': 1535500800,
'view_count': int,
'thumbnail': 'https://images.hungama.com/c/1/0dc/2ca/39349649/39349649_700x394.jpg',
} }
}, { }, {
'url': 'https://www.hungama.com/movie/kahaani-2/44129919/', 'url': 'https://www.hungama.com/movie/kahaani-2/44129919/',
@ -40,12 +42,7 @@ class HungamaIE(InfoExtractor):
def _real_extract(self, url): def _real_extract(self, url):
video_id = self._match_id(url) video_id = self._match_id(url)
video_json = self._download_json(
webpage = self._download_webpage(url, video_id)
info = self._search_json_ld(webpage, video_id)
m3u8_url = self._download_json(
'https://www.hungama.com/index.php', video_id, 'https://www.hungama.com/index.php', video_id,
data=urlencode_postdata({'content_id': video_id}), headers={ data=urlencode_postdata({'content_id': video_id}), headers={
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
@ -53,18 +50,25 @@ def _real_extract(self, url):
}, query={ }, query={
'c': 'common', 'c': 'common',
'm': 'get_video_mdn_url', 'm': 'get_video_mdn_url',
})['stream_url'] })
formats = self._extract_m3u8_formats( formats = self._extract_m3u8_formats(video_json['stream_url'], video_id, ext='mp4', m3u8_id='hls')
m3u8_url, video_id, ext='mp4', entry_protocol='m3u8_native',
m3u8_id='hls')
self._sort_formats(formats) self._sort_formats(formats)
info.update({ json_ld = self._search_json_ld(
self._download_webpage(url, video_id, fatal=False) or '', video_id, fatal=False)
return {
**json_ld,
'id': video_id, 'id': video_id,
'formats': formats, 'formats': formats,
}) 'subtitles': {
return info 'en': [{
'url': video_json['sub_title'],
'ext': 'vtt',
}]
} if video_json.get('sub_title') else None,
}
class HungamaSongIE(InfoExtractor): class HungamaSongIE(InfoExtractor):