VidsOpt v0.2.4 - Fast MP4 Muxer/Converter

jazzruby

Senior Member
Aug 3, 2010
614
727
0
I know it's been a long time since anyone looked at this thread but I'm wishing upon a star here...

Is there a way to use this script to simply re mux an MKV to MP4? I've actually got a Roku box and use Plex to play back local media. Plex really really really prefers mp4 containers instead of mkv. I've tried a few other utilities to remux but I've not found one that ALWAYS keeps the audio in sync. This script hasn't failed yet. But I do loose multi track (AC3) audio.

Any help here would be HUGE!!!

Thanks in advance.
Hi rcrh,

I just came across this thread, have you tried FFmpeg, it should be able to remux with a simple command:
Code:
ffmpeg -i source.mkv -c:v copy -c:a copy -f mp4 target.mp4
Download/Extract the latest 'Static' build from HERE and run the above command from a console/command prompt in the same folder as ffmpeg.exe.

If everything works to your satisfaction, you can create drag/drop batch for .mkv files like this:
Code:
@echo off
cd /d %~dp0
for %%A in (*.mkv) do (
"ffmpeg" -i %%A -c:v copy -c:a copy -f mp4 "%%~dpnA.mp4"
)
pause
Create a text file MKV_2_MP4.bat in the same folder with ffmpeg and copy/paste the above code.

HTH,

-JR-
 

conguero23

New member
Nov 6, 2010
1
0
0
VidsOpt v0.2.4

This might be a long shot but can anyone re-upload my HD died and I cant find this download anywhere, Ive been using it for a couple of years to convert videos for my xbox. Thanks.
 

christian2001

Member
Nov 1, 2014
20
14
0
Anyone have a copy

I'll second the request for a copy of this, since it looks like the original link doesn't work anymore, and I'd really like to give this a go.