sudo ffmpeg -i 00004.mts -vcodec copy 00004.mp4
Tag Archives: ffmpeg
Speed up video with ffmpeg
1. Convert every 15th image to jpeg: ffmpeg -i 00000.MTS -r 0.6 -f image2 out/output_%05d.jpg 2. Convert all jpegs to movie: ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4
DVD rip and deinterlace
1. rip with k9copy to mp4-video/mp3-audio 2. deinterlace with ffmpeg ffmpeg -i ‘infile.avi’ -deinterlace -sameq outfile.avi