From 9306f5ef299e14f49239715ccd30536df881ba4c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 21 Apr 2026 11:43:34 +0200 Subject: [PATCH] Install video encoding processors for modern Intel CPU/GPU combos by default Allows the use of Quick Sync Intel H264/265 exports in Kdenlive without crashing! --- install/config/hardware/intel/video-acceleration.sh | 4 ++-- install/omarchy-other.packages | 4 ++++ migrations/1776615976.sh | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 migrations/1776615976.sh diff --git a/install/config/hardware/intel/video-acceleration.sh b/install/config/hardware/intel/video-acceleration.sh index b8ce4f80..33cc6fbe 100644 --- a/install/config/hardware/intel/video-acceleration.sh +++ b/install/config/hardware/intel/video-acceleration.sh @@ -1,9 +1,9 @@ # This installs hardware video acceleration for Intel GPUs if INTEL_GPU=$(lspci | grep -iE 'vga|3d|display' | grep -i 'intel'); then - # HD Graphics / Iris / Xe / Arc use intel-media-driver + # HD Graphics / Iris / Xe / Arc use intel-media-driver + VPL if [[ ${INTEL_GPU,,} =~ (hd\ graphics|uhd\ graphics|xe|iris|arc) ]]; then - omarchy-pkg-add intel-media-driver + omarchy-pkg-add intel-media-driver libvpl vpl-gpu-rt elif [[ ${INTEL_GPU,,} =~ "gma" ]]; then # Older generations from 2008 to ~2014-2017 use libva-intel-driver omarchy-pkg-add libva-intel-driver diff --git a/install/omarchy-other.packages b/install/omarchy-other.packages index b75c3685..47a3537f 100644 --- a/install/omarchy-other.packages +++ b/install/omarchy-other.packages @@ -55,6 +55,10 @@ tuxedo-drivers-nocompatcheck-dkms yt6801-dkms zram-generator +# Intel encoding processing +libvpl +vpl-gpu-rt + # Vulkan drivers (auto-detected by hardware) vulkan-intel vulkan-radeon diff --git a/migrations/1776615976.sh b/migrations/1776615976.sh new file mode 100644 index 00000000..32bebb60 --- /dev/null +++ b/migrations/1776615976.sh @@ -0,0 +1,3 @@ +echo "Install missing Intel VPL drivers (libvpl, vpl-gpu-rt) on systems with Intel GPUs" + +bash "$OMARCHY_PATH/install/config/hardware/intel/video-acceleration.sh"