What are the differences and similarities between ffmpeg, libav, and avconv?

Libav is dead Last commit was on 2019-08-21. Use FFmpeg. Confusing messages The messages mentioned in the question are rather misleading and understandably a source of confusion. The fork was basically a non-amicable result of conflicting personalities and development styles within the FFmpeg community. The real ffmpeg vs the fake one For a while both … Read more

Vertically or horizontally stack (mosaic) several videos using ffmpeg? [closed]

Use the vstack (vertical), hstack (horizontal), or xstack (custom layout) filters. It is easier and faster than other methods. Combine/stack two videos or images Vertical Using the vstack filter. ffmpeg -i input0 -i input1 -filter_complex vstack=inputs=2 output Videos must have the same width. Horizontal Using the hstack filter. ffmpeg -i input0 -i input1 -filter_complex hstack=inputs=2 … Read more

FFmpeg on Android

Here are the steps I went through in getting ffmpeg to work on Android: Build static libraries of ffmpeg for Android. This was achieved by building olvaffe’s ffmpeg android port (libffmpeg) using the Android Build System. Simply place the sources under /external and make away. You’ll need to extract bionic(libc) and zlib(libz) from the Android … Read more