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`.