So I had an mkv file, which I converted to mp4 using the command
>ffmpeg -i baby_cakes.mkv -codec copy baby_cakes.mp4
Info obtained from ffprobe for mkv file:
encoder : libebml v1.3.4 + libmatroska v1.4.5
Duration: 01:19:52.54, start: 0.000000, bitrate: 1747 kb/s
Stream #0:0: Video: h264 (High), yuv420p(progressive), 640x480 [SAR 1:1 DAR 4:3], 24 fps, 24 tbr, 1k tbn, 48 tbc (default)
Stream #0:1(eng): Audio: mp3, 24000 Hz, stereo, fltp, 64 kb/s (default)
Info obtained from ffprobe for mp4 file is:
encoder : Lavf58.29.100
Duration: 01:19:52.54, start: 0.000000, bitrate: 1752 kb/s
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 1682 kb/s, 24 fps, 24 tbr, 16k tbn, 48 tbc (default)
Stream #0:1(eng): Audio: mp3 (mp4a / 0x6134706D), 24000 Hz, stereo, fltp, 64 kb/s (default)
So I noticed there is a slight increase, (mkv) 1,022,545 KB vs (mp4) 1,025,022 KB
Q1. Why has the video stream increased in bitrate, from 1747 kb/s vs 1752 kb/s ?
Q2. What does the numbers for `tbr` mean ? The change is 1k tbn (mkv) vs 16k tbn (mp4)
+ Reply to Thread
Results 1 to 3 of 3
-
-
The single streams are exactly the same.
The differences are due to different headers and metadata. You can test this by muxing the mp4 back into an mkv. -
tbn = the time base in AVStream that has come from the container
tbc = the time base in AVCodecContext for the codec used for a particular stream
tbr = tbr is guessed from the video stream and is the value users want to see when they look for the video frame rate
see: http://ffmpeg-users.933282.n4.nabble.com/What-does-the-output-of-ffmpeg-mean-tbr-tbn-t...-td941538.htmlusers currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
MkvТоMp4 v0.224 - rapid tool for repack Mkv to Mp4
By oreons in forum Video ConversionReplies: 808Last Post: 7th Mar 2022, 02:43 -
Raw DV to a better Container (MKV, MP4) for Archiving
By Sathwik in forum Video ConversionReplies: 1Last Post: 18th Jun 2020, 09:09 -
DVD conversation to MKV container.. what codec?
By MwBakker in forum Newbie / General discussionsReplies: 31Last Post: 29th Feb 2020, 21:02 -
youtube needs mp4 container but my VE does not have it
By hello0 in forum Newbie / General discussionsReplies: 20Last Post: 19th Jan 2019, 16:08 -
Having a Hard Time Understanding MKV
By dualdivx in forum Video ConversionReplies: 3Last Post: 25th Dec 2015, 09:13