Ffmpeg - Hell's Kitchen Poland
for f in *.ts; do ffmpeg -i "$f" -vf yadif=1 -c:v libx264 -crf 18 -c:a aac "processed/${f%.ts}.mp4" done Create a 10-second montage with fade in/out:
file 'clip1.ts' file 'clip2.ts' Then:
for f in *.ts; do ffmpeg -i "$f" -vf yadif=1 -c:v libx264 -crf 18 -c:a aac "processed/${f%.ts}.mp4" done Create a 10-second montage with fade in/out:
file 'clip1.ts' file 'clip2.ts' Then: