Is it technically possible to build and install ffmpeg using sysext?
I tried to build it locally but fails with the following errors.
+ dnf download --resolve --arch=noarch --arch=x86_64 ffmpeg libavcodec-freeworld
Updating and loading repositories:
Repositories loaded.
Failed to resolve the transaction:
Problem: problem with installed package
- installed package ffmpeg-free-7.1.2-2.fc43.x86_64 conflicts with ffmpeg-free provided by ffmpeg-7.1.2-7.fc43.x86_64 from rpmfusion-free
- package ffmpeg-7.1.2-7.fc43.x86_64 from rpmfusion-free conflicts with ffmpeg-free provided by ffmpeg-free-7.1.2-2.fc43.x86_64 from fedora
- conflicting requests
error: Recipe `download-rpms` failed with exit code 1
The justfile
name := "ffmpeg"
packages := "
ffmpeg
libavcodec-freeworld
"
rpm_fusion_repos := "free nonfree"
version_package := "ffmpeg"
base_images := "
quay.io/fedora-ostree-desktops/base-atomic:43 x86_64
quay.io/fedora-ostree-desktops/silverblue:43 x86_64
"
import '../sysext.just'
all: default
Is it technically possible to build and install ffmpeg using sysext?
I tried to build it locally but fails with the following errors.
The justfile