You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.3 KiB

12345678910111213141516171819202122232425262728
  1. # Highlights Pipeline
  2. Purpose: automatically find and extract interesting moments from gaming footage videos to make highlights
  3. ## Installation
  4. This repository provides a requirements.txt file. It is strongly recommended that this is used with a virtuenv:
  5. ```
  6. python -m venv .env
  7. pip intall -r requirements.txt
  8. ```
  9. This repository does not bundle [laughter-detection](https://github.com/jrgillick/laughter-detection). To use that please follow the instructions in that projects README.
  10. It is recommended to use the [batched version of faster-whisper](https://github.com/SYSTRAN/faster-whisper?tab=readme-ov-file#batched-faster-whisper). Please note the version that ships on pypi does not include this version. It can be installed with pip by using their repo:
  11. ```
  12. pip install --force-reinstall "faster-whisper @ https://github.com/SYSTRAN/faster-whisper/archive/refs/heads/master.tar.gz"
  13. ```
  14. ## Issues
  15. When using faster-whisper with long media files (over 3 hours) and a CPU model it was found that it was killed OOM. There are a couple of issues noting this:
  16. - [[1]](https://github.com/SYSTRAN/faster-whisper/issues/390)
  17. - [[2]](https://github.com/SYSTRAN/faster-whisper/issues/249).
  18. As a workaround you may wish to consider segmenting long media files before using them with the pipeline.