Hi all,
My camera records videos in "AVCHD Lite" format, so I have a bunch of .MTS files I would like to edit.
I've installed Avidemux (Qt), which seems to have a problem with playing the audio (difficult to describe but it sounds like it's out of sync/echoey/underwater) - I believe it is something to do with H.264 B frames.
So I set out to convert the file into a different format.
This thread from the archives allowed me to convert the .MTS files into .avi files which now play well in Avidemux, but using a Microsoft format is a bit of a thorn in my side.
The command I'm using to convert to .avi is:
Is anyone able to help me putting together the right options to convert the .MTS files into .mkv format? I've tried skimming through the man pages but it's a bit daunting
Thanks,
Feathers
My camera records videos in "AVCHD Lite" format, so I have a bunch of .MTS files I would like to edit.
I've installed Avidemux (Qt), which seems to have a problem with playing the audio (difficult to describe but it sounds like it's out of sync/echoey/underwater) - I believe it is something to do with H.264 B frames.
So I set out to convert the file into a different format.
This thread from the archives allowed me to convert the .MTS files into .avi files which now play well in Avidemux, but using a Microsoft format is a bit of a thorn in my side.
The command I'm using to convert to .avi is:
Code:
ffmpeg -y -i "$file" -f avi -vcodec mpeg4 -b 800k -acodec ac3 -ab 128k -s hd720 "$out_file"
Thanks,
Feathers
Comment