feat(ffmpeg): updating ffmpeg verion to 8.X

This commit is contained in:
CarolinePascal
2026-03-12 16:43:08 +01:00
parent 0db5f66dda
commit bb0f03185c
+4 -4
View File
@@ -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`.