Hello guys, how are your doing in this pandemic? Hope your are all right.
Have a question and need your help and knowledge.
My wife have several videos of our kids in a folder and they are in MP4 and I would like to turn them all into mkv (play better on PLEX).
The problem is that the files contain metadata of when it was, the date, the event, the place as I kept everything organized, but I don't want PLEX to have access my videos data.
So I would like to know if there is any scrip for FFMPEG (Windows) that can remux (no reencode) to MKV and remove all data.
If that's not possible, the script will help me and then I'll look for some software to remove the data details.
Thank u everybody.
Claudio
+ Reply to Thread
Results 1 to 4 of 4
-
-
Hey.
Looked around a bit, seems that there could be several options to test.
Code:ffmpeg -i input.mkv -c copy -fflags +bitexact -flags:v +bitexact -flags:a +bitexact output.mkv
OR
Code:ffmpeg -y -i "test.mkv" -c copy -map_metadata -1 -metadata title="My Title" -metadata creation_time=2016-09-20T21:30:00 -map_chapters -1 "test.mkv"
OR
Code:ffmpeg -hide_banner -i "test.mkv" -map 0:v:0? -map 0:a? -map 0:s? -c copy -map_metadata:g -1 "TestoutputVideo.mkv"
source 1
source 2
Try it with one file, and tell us if it worked on your Plex.
Cheers -
Thank u very much CyberOtter for fast reply.
Thank you very much for the tips. I ended up using part of them together with FFMPEG BATCH.
I didn't know about this program and it does EVERYTHING it needed.
[Attachment 60295 - Click to enlarge]
Claudio
Similar Threads
-
Can't get FFMPEG Script to Remux to MP4 with Wav, It instead remuxes to MKV
By VideoFanatic in forum Video ConversionReplies: 3Last Post: 1st Aug 2021, 02:32 -
Batch remux mkv to mp4 with Windows PowerShell
By [ss]vegeta in forum Newbie / General discussionsReplies: 0Last Post: 22nd Dec 2020, 14:48 -
FFMPEG Batch Script wanted for H265 Remux
By VideoFanatic in forum Video ConversionReplies: 5Last Post: 21st Jan 2018, 10:38 -
Batch script for removing/adding mkv covers
By piratikxd in forum ProgrammingReplies: 1Last Post: 6th Jun 2017, 08:47 -
Need help with ffmpeg script to batch convert audio in MKV files
By mikeveli20 in forum AudioReplies: 5Last Post: 18th Nov 2016, 13:21