Skip to content

Instantly share code, notes, and snippets.

@FGRibreau
Created June 2, 2014 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FGRibreau/7ff597cfbfedf19e011e to your computer and use it in GitHub Desktop.
Save FGRibreau/7ff597cfbfedf19e011e to your computer and use it in GitHub Desktop.
Convert MTS to MOV
for file in ./*.MTS
do
ffmpeg -i $file -vcodec mjpeg -b 100M -acodec pcm_s16be $file.mov
done
@smistineth
Copy link

I know a tool which can easily convert MTS.M2TS to MOV. Here is a guide to use it to convert MTS to MOV at: http://www.faasoft.com/articles/mts-to-mov-mac-and-windows.html

It also helps convert MTS/M2TS to MP4, AVI, FLV, etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment