You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TorchCodec with CUDA should work with FFmpeg versions in [4, 7] on all platforms,
152
-
and FFmpeg version 8 is supported on Linux.
152
+
TorchCodec with CUDA should work with FFmpeg versions in [4, 8].
153
153
154
154
If FFmpeg is not already installed, or you need a more recent version, an
155
155
easy way to install it is to use `conda`:
156
156
157
157
```bash
158
-
conda install "ffmpeg<8"
158
+
conda install "ffmpeg"
159
159
# or
160
-
conda install "ffmpeg<8" -c conda-forge
160
+
conda install "ffmpeg" -c conda-forge
161
161
```
162
162
163
163
After installing FFmpeg make sure it has NVDEC support when you list the supported
@@ -219,7 +219,7 @@ The bottom row is [promotional video from NASA](https://download.pytorch.org/tor
219
219
that has a resolution of 960x540 at 29.7 fps and is 206 seconds long. Both videos were
220
220
encoded with libx264 and yuv420p pixel format. All decoders, except for TorchVision, used FFmpeg 6.1.2. TorchVision used FFmpeg 4.2.2.
221
221
222
-
For TorchCodec, the "approx" label means that it was using [approximate mode](https://pytorch.org/torchcodec/stable/generated_examples/approximate_mode.html)
222
+
For TorchCodec, the "approx" label means that it was using [approximate mode](https://meta-pytorch.org/torchcodec/stable/generated_examples/decoding/approximate_mode.html)
0 commit comments