Hello. I have over 400 MKV videos which i want to convert to MP4 , which program should I use ? I need a loss less converter which can convert many files at the same time.
Please help
+ Reply to Thread
Results 1 to 10 of 10
-
-
I have a PowerShell script that converts videos to MP4 for playing on Chromecast. If your MKV has certain A/V formats, it will simply remux to MP4 without "loss." The script could be adjusted to remux everything without respect to the current A/V formats. More info and download: https://forum.videohelp.com/threads/379314-Convert-Videos-for-Playing-on-Chromecast-PowerShell-script
-
I'm not competent at stuff like that, is there any program which can do the job easily ? ( select multiple videos and convert them )
-
Simple script and ffmpeg should be able to deal with this however please notice fact that mp4 is very limited and support less than mkv - as such simple copy may be not possible and some transcoding will be necessary.
Code:@setlocal @if not exist %CD%\out (mkdir %CD%\out) @FOR %%a IN (*.mkv ) DO (@ffmpeg.exe -y -hide_banner -stats -loglevel 32 -i "%%a" -sn -copy -movflags faststart -f mp4 "%CD%\out\%%~na.mp4")
-
mkv2mp4 is really nice, but the videos all have to be originally in H264, or they don't mux properly. you basically get sync issues. I really like the program though. For the ones that don't work, you may want to use mkvmerge GUI to find out what they were originally created as. What is the reason you're trying to convert to MP4? That might be the better question.
-
Notepad
copy text (ctrl+c)
paste text in notepad (ctrl+v)
save file with name you like and extension cmd or bat
download ffmpeg (from zearanoe static build - select based on your system - 32 or 64 bit)
unpack ffmpeg archive
copy ffmpeg exe to folder where you have your mkv files
copy file created with notepad (that one with extension bat or cmd)
to flder with mkv files
run script (click on file same as any other application)
conversion is started, new mp4 files will be created in folder "out" -
Similar Threads
-
Need Help Changing the Default Audio Stream for Hundreds of MKV Files
By ballsoup in forum AudioReplies: 11Last Post: 19th Apr 2016, 15:53 -
how can i put a text / logo on mp4 or mkv videos
By medomazenger in forum EditingReplies: 9Last Post: 30th Jun 2015, 23:47 -
Batch converting hundreds of video_ts folders to mp4
By MTwannabe in forum Video ConversionReplies: 18Last Post: 3rd Jun 2015, 03:51 -
Convert 10bit MKV videos in to 8bit MKV with XMedia
By RaW D Coy in forum Newbie / General discussionsReplies: 2Last Post: 12th Oct 2012, 12:10 -
Cannot seem to convert MKV to MP4 or AVI to MP4 without audio sync issues
By Matth3w in forum Video ConversionReplies: 0Last Post: 16th Sep 2012, 13:36