File size: 518 Bytes
4ce7c22 10d1937 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
license: mit
---
# TransNetV2 (PyTorch Version)
This repository provides a PyTorch version of [TransNet V2](https://github.com/soCzech/TransNetV2), a state-of-the-art neural network for shot boundary detection in videos.
## Installation
Clone the repository and install the required dependencies.
```sh
sudo apt-get install ffmpeg
pip install requirements.txt
```
## Usage
```sh
python -m main --files="path/to/your/file/or/folder" --weights="path/to/the/model/weights" --visualize
``` |