mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 21:29:36 +00:00
HOTFIX: default bitrate, #415
This commit is contained in:
@@ -122,8 +122,8 @@ class MediaStreamExtractor:
|
||||
{
|
||||
"type": "audio",
|
||||
"index": stream["index"],
|
||||
"codec": stream["codec_name"],
|
||||
"bitrate": int(stream["bit_rate"]),
|
||||
"codec": stream.get("codec_name", "undefined"),
|
||||
"bitrate": int(stream.get("bit_rate", 0)),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user