mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[nba] use int_or_none for tbr
This commit is contained in:
parent
0017486dca
commit
51c4fec0d5
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ def _real_extract(self, url):
|
||||||
format_info.update({
|
format_info.update({
|
||||||
'width': int(mobj.group(1)),
|
'width': int(mobj.group(1)),
|
||||||
'height': int(mobj.group(2)),
|
'height': int(mobj.group(2)),
|
||||||
'tbr': int(mobj.group(3)),
|
'tbr': int_or_none(mobj.group(3)),
|
||||||
})
|
})
|
||||||
formats.append(format_info)
|
formats.append(format_info)
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
Loading…
Reference in a new issue