Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Start by installing the **nightly** build of PyTorch following the
Then, the easiest way to install the rest of the dependencies is to run:

```bash
conda install cmake pkg-config pybind11 ffmpeg -c conda-forge
conda install cmake pkg-config pybind11 "ffmpeg<8" -c conda-forge
```

### Clone and build
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ ffmpeg -f lavfi -i \
easy way to install it is to use `conda`:

```bash
conda install ffmpeg
conda install "ffmpeg<8"
# or
conda install ffmpeg -c conda-forge
conda install "ffmpeg<8" -c conda-forge
```

3. Install TorchCodec:
Expand Down Expand Up @@ -157,9 +157,9 @@ format you want. Refer to Nvidia's GPU support matrix for more details
easy way to install it is to use `conda`:

```bash
conda install ffmpeg
conda install "ffmpeg<8"
# or
conda install ffmpeg -c conda-forge
conda install "ffmpeg<8" -c conda-forge
```

If you are building FFmpeg from source you can follow Nvidia's guide to
Expand Down
Loading