Hi rcrh,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.
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
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
HTH,
-JR-