Answers for "ts to mp4 ffmpeg folder"

1

ffmpeg batch convert ts to mp4 files in a folder

//On Windows CMD
for %i in (*.ts) do ffmpeg -i "%i"  -c:v libx264 -c:a aac "%~ni.mp4"

// for keeping data rate same to get same file size
for %i in (*.ts) do ffmpeg -i "%i"  -c:v libx264 -b:v 2M  -maxrate 1.4M -bufsize 1M  -c:a aac "../%~ni.mp4"
Posted by: Guest on October-31-2021
0

how to convert ts to mp4 with ffmpeg

ffmpeg -i input.ts -c:v libx264 -c:a aac output.mp4
Posted by: Guest on May-21-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language