FFmpeg mts conversion


/ Published in: DOS Batch
Save to your folder(s)

Useful command for converting MTS to AVI. Also works well for other file types.


Copy this code and paste it in your HTML
  1. Multiple files:
  2. for %%a in ("*.mts") do ffmpeg.exe -i "%%a" -vcodec libxvid -s 848x480 -maxrate 4800k -b 4000k -qmin 3 -qmax 5 -bufsize 4096 -acodec libmp3lame -ac 2 -ab 160k -y "%%~na_xvid.avi"
  3.  
  4. Single file:
  5. ffmpeg.exe -i "[INPUT FILE NAME]" -vcodec libxvid -s 848x480 -maxrate 4800k -b 4000k -qmin 3 -qmax 5 -bufsize 4096 -acodec libmp3lame -ac 2 -ab 160k -y "[OUTPUT FILE NAME]"

Report this snippet


Comments


You need to login to view comments.