mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[nba] Fix duration extraction (fixes #5777)
This commit is contained in:
parent
77d9cb2f04
commit
8a278a1d7e
1 changed files with 18 additions and 2 deletions
|
@ -22,6 +22,18 @@ class NBAIE(InfoExtractor):
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/',
|
'url': 'http://www.nba.com/video/games/hornets/2014/12/05/0021400276-nyk-cha-play5.nba/',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://watch.nba.com/nba/video/channels/playoffs/2015/05/20/0041400301-cle-atl-recap.nba',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '0041400301-cle-atl-recap.nba',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'NBA GAME TIME | Video: Hawks vs. Cavaliers Game 1',
|
||||||
|
'description': 'md5:8094c3498d35a9bd6b1a8c396a071b4d',
|
||||||
|
'duration': 228,
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
|
}
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
@ -35,8 +47,12 @@ class NBAIE(InfoExtractor):
|
||||||
self._og_search_title(webpage, default=shortened_video_id), ' : NBA.com')
|
self._og_search_title(webpage, default=shortened_video_id), ' : NBA.com')
|
||||||
|
|
||||||
description = self._og_search_description(webpage)
|
description = self._og_search_description(webpage)
|
||||||
duration = parse_duration(
|
duration_str = self._html_search_meta(
|
||||||
self._html_search_meta('duration', webpage, 'duration'))
|
'duration', webpage, 'duration', default=None)
|
||||||
|
if not duration_str:
|
||||||
|
duration_str = self._html_search_regex(
|
||||||
|
r'Duration:</b>\s*(\d+:\d+)', webpage, 'duration', fatal=False)
|
||||||
|
duration = parse_duration(duration_str)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': shortened_video_id,
|
'id': shortened_video_id,
|
||||||
|
|
Loading…
Reference in a new issue