Build Guide: OpenCV with GStreamer - dcomp-leris/CGSynth GitHub Wiki
The CGReplay player component requires OpenCV built with GStreamer support. Pre-built wheels often lack this support; build from source.
sudo apt-get install -y build-essential cmake git pkg-config \
libgtk-3-dev libavcodec-dev libavformat-dev libswscale-dev \
libv4l-dev libxvidcore-dev libx264-dev libjpeg-dev \
libpng-dev libtiff-dev gfortran openexr \
libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
python3-dev python3-numpy libatlas-base-dev
mkdir -p ~/opencv_build && cd ~/opencv_build
git clone https://github.com/opencv/opencv.git
git clone https://github.com/opencv/opencv_contrib.git
Adjust paths to match your environment/venv.
mkdir -p ~/opencv_build/build && cd ~/opencv_build/build
cmake -D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/path/to/your/virtualenv \
-D INSTALL_PYTHON_EXAMPLES=ON \
-D INSTALL_C_EXAMPLES=OFF \
-D OPENCV_ENABLE_NONFREE=ON \
-D WITH_GSTREAMER=ON \
-D OPENCV_EXTRA_MODULES_PATH=~/opencv_build/opencv_contrib/modules \
-D BUILD_EXAMPLES=ON \
-D PYTHON_EXECUTABLE=/path/to/your/virtualenv/bin/python \
-D PYTHON_DEFAULT_EXECUTABLE=/path/to/your/virtualenv/bin/python \
../opencv
make -j$(nproc)
make install
python -c "import cv2; print(cv2.getBuildInformation())" | grep -i gstreamer
Expect GStreamer: YES
in the output.