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