How to transcode AVCHD / MPEG-TS (.mts, .m2ts) files into a GStreamer-friendly format?
Created by Jeff Fortin Tam
- Keywords:
- pitivi gstreamer mpeg ts codecs containers
- Last updated by:
- Jeff Fortin Tam
You can losslessly convert your .mts files to a MP4 container using this command:
for FILENAME in *.MTS; do ffmpeg -i ${FILENAME} \
`echo ${FILENAME} | sed 's/MTS/mp4/g'`; done
Source: http://