User Tools

Site Tools


doc:appunti:linux:video:olive_editor_compile_debian_bookworm

This is an old revision of the document!


How to compile Olive Video Editor in Debian 12 Bookworm

You can download Olive Video Editor form the download page, the Linux version is distribute as an AppImage package, which should run on many GNU/Linux distributions without requiring to install dependencies, etc. This is partially true: I managed to start the program on my Debian 12 Bookworm computer, but the program freezes too frequently! I have the autosave function enabled, so I loose only one minute of work in case of crash/freeze, but restarting the work three or four times per hour is rather frustrating.

It turned out that compiling the progrm from the sources (the same GitHub commit) solved the problem.

How to compile Olive Video Editor version 0.2

#!/bin/sh -e
 
echo "Installing build tools..."
apt install \
    build-essential \
    git \
    cmake
 
echo "Installing Qt libraries..."
apt install \
    qtbase5-dev \
    qttools5-dev \
    qttools5-dev-tools \
    qtbase5-private-dev \
    libqt5x11extras5-dev
 
echo "Installing a/v libraries..."
apt install \
    libavformat-dev \
    libavcodec-dev \
    libavfilter-dev \
    libavutil-dev \
    libswscale-dev \
    libswresample-dev \
    libopenimageio-dev \
    libopenexr-dev \
    portaudio19-dev \
    libopencolorio-dev
doc/appunti/linux/video/olive_editor_compile_debian_bookworm.1699288062.txt.gz · Last modified: 2023/11/06 16:27 by niccolo