From bb0f03185c43eedb0d853b27b26f346a24840945 Mon Sep 17 00:00:00 2001 From: CarolinePascal Date: Thu, 12 Mar 2026 16:43:08 +0100 Subject: [PATCH] feat(ffmpeg): updating ffmpeg verion to 8.X --- docs/source/installation.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/installation.mdx b/docs/source/installation.mdx index 80f705e88..b0f328ba6 100644 --- a/docs/source/installation.mdx +++ b/docs/source/installation.mdx @@ -51,16 +51,16 @@ When using `conda`, install `ffmpeg` in your environment: ```bash conda install ffmpeg -c conda-forge -ffmpeg -version # ffmpeg 8.X is not yet supported ! +ffmpeg -version # Installation check ``` > [!TIP] -> This usually installs `ffmpeg 7.X` for your platform compiled with the `libsvtav1` encoder. If `libsvtav1` is not supported (check supported encoders with `ffmpeg -encoders`), you can: +> This usually installs `ffmpeg 8.X` for your platform compiled with the `libsvtav1` encoder. If `libsvtav1` is not supported (check supported encoders with `ffmpeg -encoders`), you can: > -> - _[On any platform]_ Explicitly install `ffmpeg 7.X` using: +> - _[On any platform]_ Explicitly install `ffmpeg 8.0.1` using: > > ```bash -> conda install ffmpeg=7.1.1 -c conda-forge +> conda install ffmpeg=8.0.1 -c conda-forge > ``` > > - _[On Linux only]_ If you want to bring your own ffmpeg: Install [ffmpeg build dependencies](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#GettheDependencies) and [compile ffmpeg from source with libsvtav1](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#libsvtav1), and make sure you use the corresponding ffmpeg binary to your install with `which ffmpeg`.