Articles

Video – FFMPEG / libx264: How to specify a variable frame rate but with a maximum?

Instead of providing a fixed frame rate to FFMPEG/libx264 (-r/-framerate), I would like to specify a variable frame rate with a MAXIMUM value, and allow libx264 to down the frame rate as it sees fit. The idea here is to get extra compression when there is something like an extended still frame (which happens A […]

Video – FFMPEG / libx264: How to specify a variable frame rate but with a maximum? Read More »

Video – ffmpeg: smooth zoompan with no jiggle

I’m trying to create a basic 5 second zoompan to the center of an image (from the example on the ffmpeg.org website). The command below works, but jitters more than my hands after 5 cups of coffee: ffmpeg -framerate 25 -loop 1 -i island.jpg -filter_complex “[0:v]scale=-2:480,zoompan=z=’min(zoom+0.0015,1.5)’:x=’iw/2-(iw/zoom/2)’:y=’ih/2-(ih/zoom/2)’:d=125,trim=duration=5[v]” -map “[v]” -y out.mp4 Input jpg.  Output mp4. I’m

Video – ffmpeg: smooth zoompan with no jiggle Read More »

Video conversion – What tool can I use to to rip DVD movies?

What tool can I use to to rip DVD movies? I have used “Dr. DivX” long back. Is there any better tool to rip DVDs? Solution: Handbrake   HandBrake is an open-source,  GPL-licensed, multiplatform,  multithreaded video transcoder,  available for MacOS X, Linux and  Windows. Input: Any DVD-like source: VIDEO_TS folder, DVD image or real DVD

Video conversion – What tool can I use to to rip DVD movies? Read More »

Video encoding – How to generate an MP4 with H.265 codec using ffmpeg?

I want to encode a video file to H.265. The last version of ffmpeg should be support H.265 (Source). However, I could not find any information about the exact command. I do not know, which library I should indicate after -vcodec. I use the lastest Zeranoe FFmpeg Build (git-c78a416 (2013-10-26)). Solution: Background FFmpeg supports encoding

Video encoding – How to generate an MP4 with H.265 codec using ffmpeg? Read More »

Scroll to Top