Experimental Builds

The main compilation we have seen leads to building CINELERRA-GG with its own internal ffmpeg, which includes its stability and feature patches. Normally ffmpeg is updated to version x.1 of each release. The reasons why it is best to use thirdparty with their static versions of the libraries and ffmpeg are explained in detail in Using the very latest Libraries and in Unbundled Builds.

You can still compile CINELERRA-GG with ffmpeg-git to enjoy the latest version. This build may lead to feature variation and less stability, but in most cases will work perfectly fine. You have to supply the actual URL location of the ffmpeg git as you can see in this example bld.sh script:

	#!/bin/bash
	./autogen.sh
	./configure --with-single-user --with-booby --with-git-ffmpeg=https://git.ffmpeg.org/ffmpeg.git
	make && make install ) 2>1 | tee log
	mv Makefile Makefile.cfg
	cp Makefile.devel Makefile

Since the procedure for obtaining the latest ffmpeg version is not always kept up-to-date and the line numbers will always change, you may have to create some patch first. Generally those line numbers are only updated by a developer when a new stable version with worthwhile features is actually included in the CINELERRA-GG build. FFmpeg is constantly changing and many times the git version is not as stable as desired.

Finally, it is possible to compile CINELERRA-GG so that it uses ffmpeg which is already installed on the system. This build takes less time to compile and may increase performance in both rendering and timeline manipulation. Again, there may be variations in functionality and less stability. Getting a build to work in a system environment is not easy. If you have already installed libraries which are normally in the thirdparty build, getting them to be recognized means you have to install the devel version so the header files which match the library interfaces exist. If you want to build using only the thirdparty libraries installed in your system, just include -–without-thirdparty to your configure script. For example:

./confgure --with-single-user --disable-static-build --without-thirdparty --without-libdpx

The library, libdpx, is just such an example of lost functionality: this build of CINELERRA-GG will not be able to use the DPX format.

The CINELERRA-GG Community, 2021
https://www.cinelerra-gg.org