I have a ton of large MTS files that I'd like to convert to MP4 without losing the original quality (if possible). I have sony vegas 10.0 pro which is currently the only option that produced a perfect conversion without any noticeable quality difference and the file was a lot smaller. Only thing is I don't know if it's possible to batch convert a ton of .MTS files.
Can anyone tell me if there's a way in sony vegas, or do you know of another program that can handle batch conversions for .MTS files?
+ Reply to Thread
Results 1 to 14 of 14
-
-
I would give TEncoder a try. It's a Gui for either Mencoder or FFMPeg. It's very configurable. But the man point of interest in your case, it's designed to process in batch. The author has a thread on videohelp where you can ask questions if you have problems. Just search TEncoder using videohelp search.
http://milesaheadsoftware.org/
Fully enabled freeware for Windows PCs. -
thanks for the fast replies. This problem has plagued me for a while. i'll try out those 2 now and report back
-
Okay I used TEncoder and it seems to be working so i didn't mess with vidcoder. So far I like it but Im trying to figure out how to get the best quality. Like what bitrate would be the best? 2500 or 4000 or something higher? Going to create a few different examples and see what's better. Not sure if i should try 2 pass encoding as well.
Any ideas? I'm going to delete the original files so have to make sure the converted file is the best it can be without being too big. -
Trial and error is my advice. My HDTV is a CRT type. It's a Sony 27". Since it's not 5 feet wide I can get by with 1 pass mode for just about everything if I have a quality source. I don't remember the last time I used 2 pass mode. But if you blow it up big across the wall then you probably need to get out all the artifacts.
http://milesaheadsoftware.org/
Fully enabled freeware for Windows PCs. -
5000 bitrate seems to do the trick. I spent a lot of time analyzing every pixel and comparing etc lol.
-
http://milesaheadsoftware.org/
Fully enabled freeware for Windows PCs. -
You can losslessly convert a single file with ffmpeg, using a command like
Code:ffmpeg -i 00000.mts -vcodec copy -acodec copy converted.mp4
I could help you with the batch file, what's the structure/naming convention of your MTS files?
--BobP -
.......Yes but I think the OP wants to re-encode to a lossy and smaller mp4. Typical rookie dumb move, but I wont judge....
Anyway if he really wanted a batch lossless remux into mp4 container, he could use FFMpeg. I use FFmbc and you can use this script:
Code:for %%a in ("*.mts") do ffmbc -i %%a -vcodec copy -acodec copy %%~na.mp4
Got my retirement plans all set. Looks like I only have to work another 5 years after I die........ -
I just tested today very fast and working ffmpeg settings on my MacBook to remux an (Panasonic Lumix) MTS Video File to QT compatible MP4:
Code:ffmpeg -i input.MTS -y -map 0:0 -c:0 copy -map 0:1 -c:1 aac -b:1 128k -ac:1 2 -cutoff 19000 -strict experimental -sn output.MP4
Cheers
Rainer -
@RainerW70: Why is the '-strict experimental' needed?
users currently on my ignore list: deadrats, Stears555, marcorocchini -
Thanks for clearing that up.
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
VirtualDub Batch Conversation with MTS files?
By khan.cross in forum Video ConversionReplies: 2Last Post: 24th May 2015, 02:09 -
Best way to Convert AVCHD (.MTS) >> H.264 SD (MP4)?
By ran007 in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 59Last Post: 5th Nov 2011, 03:19 -
combining MP4 and MTS files
By mikey111k in forum EditingReplies: 3Last Post: 2nd Nov 2010, 04:05 -
how to handle mp4 and mts(canon) files.
By dainova in forum EditingReplies: 1Last Post: 9th Aug 2010, 05:25 -
Script to convert MTS to MP4 losslessly?
By isoelectricpoint in forum Video ConversionReplies: 4Last Post: 3rd Jul 2009, 13:23