Mediainfo doesn't give Audio and Video bitrate + subtitles

General questions or discussion about HandBrake, Video and/or audio transcoding, trends etc.
Post Reply
rdesormiers
Posts: 2
Joined: Mon Feb 22, 2021 2:22 pm

Mediainfo doesn't give Audio and Video bitrate + subtitles

Post by rdesormiers »

Description of problem or question:

Hello. I am fairly new to handbrake and I have already contacted MEDIAINFO support wich told me to take a look with handbrake support. Well, in other terms,

Output in MEDIAINFO from a file done with ffmpeg:

Audio:

Bit rate : 160 kb/s

Handbrake = nothing for this line

Video Bitrate:

Bit rate : 1 056 kb/s

Hanbrake = nothing for this line (especially when done with CRF encoding)

Forced Subtitle:

Number of elements = 19

Handbrake = nothing for this time.

In other terms, there is missing important lines in mediainfo.

Thanx. Regards.

Steps to reproduce the problem (If Applicable):

None, juste right click on the file and see the output.


HandBrake version (e.g., 1.0.0):

1.3.3 (not the nightly)


Operating system and version (e.g., Ubuntu 16.04 LTS, macOS 10.13 High Sierra, Windows 10 Creators Update):

Windows 10


HandBrake Activity Log ***required*** (see How-to get an activity log)

Code: Select all

Please replace this text with the contents of your log file between the two code tags - OR -  provide a pastebin URL in place of these 3 lines.
If you are unable to do so, please state why so we can help you.
Deleted User 13735

Re: Mediainfo doesn't give Audio and Video bitrate + subtitles

Post by Deleted User 13735 »

We are not MediaInfo support, but you must click the "View" Menu and pick a format to view the full MediaInfo readout.
mediainfo.png
mediainfo.png (106.58 KiB) Viewed 347 times
Deleted User 11865

Re: Mediainfo doesn't give Audio and Video bitrate + subtitles

Post by Deleted User 11865 »

Per-track bitrate is custom metadata created by mkvmerge. HandBrake doesn't create it, but you can always remux its output with mkvmerge (via e.g. MKVToolnix GUI) to get them.
rdesormiers
Posts: 2
Joined: Mon Feb 22, 2021 2:22 pm

Re: Mediainfo doesn't give Audio and Video bitrate + subtitles

Post by rdesormiers »

Yeah, I do confirm mkvmerge does this. Maybe in future HB will think about that. There is no way with the view to get this information :(

More likely, when you lots of these files, it sucks do to this manually.

Well... anyway... will try to create some sort of a command line to demux and remux.... That sucks ... sorry.
Deleted User 11865

Re: Mediainfo doesn't give Audio and Video bitrate + subtitles

Post by Deleted User 11865 »

For bash shell on a Unix or Linux-based system:

Code: Select all

for i in *.mkv; do mkvmerge -o "${i/.mkv/-mkvmerge-remux.mkv}" "$i"; done
Make sure to have enough disk space available…
Post Reply