mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
[dispeak] improve mp4 bitrate extraction
This commit is contained in:
parent
5ca3459828
commit
4bc12b8f81
|
@ -58,10 +58,17 @@ class DigitallySpeakingIE(InfoExtractor):
|
||||||
stream_name = xpath_text(a_format, 'streamName', fatal=True)
|
stream_name = xpath_text(a_format, 'streamName', fatal=True)
|
||||||
video_path = re.match(r'mp4\:(?P<path>.*)', stream_name).group('path')
|
video_path = re.match(r'mp4\:(?P<path>.*)', stream_name).group('path')
|
||||||
url = video_root + video_path
|
url = video_root + video_path
|
||||||
vbr = xpath_text(a_format, 'bitrate')
|
bitrate = xpath_text(a_format, 'bitrate')
|
||||||
|
tbr = int_or_none(bitrate)
|
||||||
|
vbr = int_or_none(self._search_regex(
|
||||||
|
r'-(\d+)\.mp4', video_path, 'vbr', default=None))
|
||||||
|
abr = tbr - vbr if tbr and vbr else None
|
||||||
video_formats.append({
|
video_formats.append({
|
||||||
|
'format_id': bitrate,
|
||||||
'url': url,
|
'url': url,
|
||||||
'vbr': int_or_none(vbr),
|
'tbr': tbr,
|
||||||
|
'vbr': vbr,
|
||||||
|
'abr': abr,
|
||||||
})
|
})
|
||||||
return video_formats
|
return video_formats
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue