Created
June 2, 2014 14:43
-
-
Save FGRibreau/7ff597cfbfedf19e011e to your computer and use it in GitHub Desktop.
Convert MTS to MOV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in ./*.MTS | |
do | |
ffmpeg -i $file -vcodec mjpeg -b 100M -acodec pcm_s16be $file.mov | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.