Skip to content

Instantly share code, notes, and snippets.

@blippy
Last active December 6, 2020 08:21
Show Gist options
  • Save blippy/ef99a26b29399f61139079f5b73e9c5e to your computer and use it in GitHub Desktop.
Save blippy/ef99a26b29399f61139079f5b73e9c5e to your computer and use it in GitHub Desktop.
Compiling cinelerra-cv on Ubuntu 18.04
#!/usr/bin/env bash
# Setup for Ubuntu 18.08, 18.10
# standard'ish GNU tools
sudo apt-get install libtool # stops configure.ac AC_ENABLE_SHARED, ... probs
# Other items seems required by ubuntu 17.10
sudo apt-get install nasm
sudo apt install libfontconfig1-dev intltool libxft-dev
# mandatory formats
sudo apt-get install \
libogg-dev \
libvorbis-dev \
libdv-dev \
libtheora-dev \
libjpeg-dev \
libfaac-dev \
libfaad-dev \
libtiff-dev \
libx264-dev \
libfftw3-dev \
libopenexr-dev \
uuid-dev \
libmjpegtools-dev \
liba52-dev \
libmp3lame-dev \
libsndfile-dev
#optional formats
sudo apt-get install \
libraw1394-dev \
libiec61883-dev \
libavc1394-dev
# optional, but you might as well:
sudo apt-get install \
libqt4-opengl-dev \
libopencv-dev
# added 30-Jun-2018
sudo apt install \
libasound-dev \
libxv-dev \
ffmpeg \
ffmpeg-doc
@blippy
Copy link
Author

blippy commented Jan 25, 2018

There's no guarantees that the instructions above are necessary or sufficient, but it should give you a fighting chance.

These instructions are known to work (to a first-order approximation) under cinelerra-cv version:

commit 6ceda8ab4c5f91b50000756717b0e943ef6a9226 (HEAD -> master, origin/master, origin/HEAD)
Author: Nicola Ferralis <feranick@hotmail.com>
Date:   Mon Jan 22 13:17:43 2018 -0500

    Updated copyright year in user manuals

Once you have run the cinelerra-dependencies.sh script, run the following:

git clone git://git.cinelerra-cv.org/CinelerraCV.git cinelerra-cv
cd cinelerra-cv
./autogen.sh
./configure
make
sudo make install

To run:

cinelerracv

@blippy
Copy link
Author

blippy commented Jan 25, 2018

References:

@blippy
Copy link
Author

blippy commented Apr 29, 2019

This is now incorporated in a cerbo project

@IgorVladimirsky
Copy link

Hi blippy,

The Cinelerra-CV project has been moved to a free platform.
So,
our new redesigned official website is available at http://cinelerra-cv.wikidot.com ;
our new official Mailing List - cinelerra-cv-team(@)freelist(dot)org ;
our new official repo is available at https://github.com/cinelerra-cv-team/cinelerra-cv
* All git users should update their remote URL to the new domain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment