Convert jpg to avi with ffmpeg

This will create a video slideshow (using video codec libx264) from series of jpg images, named image001.jpg, image002.jpg, image003.jpg, … and each image will have a duration of 2 seconds. ffmpeg -r 1/2 -i image%3d.jpg -vcodec libx264 out.avi

Convertire video in gif in alta qualità

Partendo dal 13° minuto e 56 secondi, estrai per 10 secondi a 10 frame al secondo dei file .png. La dimensione delle foto sarà di 350×193. Se ometti questo parametro, terrà le dimensioni originali. ffmpeg -ss 00:13:56 -i C:video.avi -r 10 -t 00:00:10 -s 350x193 c:output%05d.png [Read More]

Batch script ffmpeg windows

Salvare in un file .cmd il seguente script di esempio (mov to wmv): (con questi parametri avrai un .wmv compatibile con Windows Movie Maker per Windows XP) [Read More]
Tags: batch, ffmpeg, script, Windows