Hey team,
I'm using the DemuxerWithStreamInfo and finding that the streams with video encoding for various mkv files always have a bit rate of 0.
This doesn't happen for .mov or .mp4 files, they return actual bit rates.
If I run ffmpeg or ffprobe commands on the .mkv files that I have, I get non-zero numbers for the bit rates. That is, these commands give actual bit rates:
ffprobe -v error -show_format -show_streams file.mkv | grep bit_rate
ffmpeg -i file.mkv 2>&1 | grep bitrate
Is this expected? If demuxing .mkv files works fine for others, perhaps we could add a .mkv example to the demuxer examples in the library to show the right way to handle .mkv files?
Hey team,
I'm using the DemuxerWithStreamInfo and finding that the streams with video encoding for various mkv files always have a bit rate of 0.
This doesn't happen for .mov or .mp4 files, they return actual bit rates.
If I run ffmpeg or ffprobe commands on the .mkv files that I have, I get non-zero numbers for the bit rates. That is, these commands give actual bit rates:
ffprobe -v error -show_format -show_streams file.mkv | grep bit_rateffmpeg -i file.mkv 2>&1 | grep bitrateIs this expected? If demuxing .mkv files works fine for others, perhaps we could add a .mkv example to the demuxer examples in the library to show the right way to handle .mkv files?