Hey, I have muxed a video file using mkvmerge. I do not want the muxed file to contain the info about the bitrate of the video and the encoding settings of the video. How do I remove that information from mkv file?
Is there a CLI argument I can pass to tell mkvmerge to not pass that information about bitrate and settings from the original file to the new muxed one?
+ Reply to Thread
Results 1 to 12 of 12
-
-
Is the OP trying to hide settings from potential users of his movie ?
-
It is a fool's errand. Even though many utilities, like Mediainfo, merely read the heading, there are plenty of other utilities that can scan the entire file and re-create much of that information. I still use these sometimes because headers sometimes don't have the correct information.
So, if your goal is to hide something, you will not succeed. -
The OP is trying to hide his/her super secret special awesome only he/she knows encoding settings.
This type of questions comes up every once in a while and it always ends up being someone from the "scene" who wants to hide their settings, for whatever reason. My best guess is prrobably to prevent others from besting or using their super secret special awesome only he/she knows settings and getting their releases out first. Why does that matter? Never could figure that out! Maybe pirate street creed? -
-
-
Is there a software that has support for x265 codec?To remove all AUDs, SEI and filler from an H.265 stream:
Code:ffmpeg -i INPUT -c:v copy -bsf:v 'filter_units=remove_types=35|38-40' OUTPUT
btw. x265 has an option to not add the encoding settings to begin with https://x265.readthedocs.io/en/master/cli.html?highlight=--no-info#cmdoption-infousers currently on my ignore list: deadrats, Stears555, marcorocchini -
Hey, thank you for helping! The --no-info flag worked like a charm.
Though the other method did not work.
Code:ffmpeg -i sample.mkv -c:v copy -bsf:v 'filter_units=remove_types=35|38-40' output.mkv '38-40'' is not recognized as an internal or external command, operable program or batch file.
-
Works fine here:
Code:ffmpeg -i "f:\TestClips&Co\files\MPEG-4 H.265\10bit Test.mkv" -bsf:v "filter_units=remove_types=35|38-40" "e:\Output\cleaned.mkv"
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Get-MediaInfo - a complete PowerShell MediaInfo solution
By stax76 in forum ProgrammingReplies: 6Last Post: 31st Mar 2021, 05:41 -
How to add count of subtitle elements to video metadata for MediaInfo?
By elprice7345 in forum Newbie / General discussionsReplies: 4Last Post: 1st May 2019, 15:29 -
I need help with MediaInfo Please?
By Nitobert in forum Newbie / General discussionsReplies: 6Last Post: 17th Sep 2017, 02:26 -
MediaInfo 7.8
By Ex Machinas in forum Video ConversionReplies: 2Last Post: 4th Dec 2015, 12:48