gitextract_oaq66n5h/ ├── .github/ │ └── workflows/ │ ├── base.yml │ ├── faster-whisper │ └── lint.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.cuda ├── LICENSE ├── README.md ├── autocut/ │ ├── __init__.py │ ├── __main__.py │ ├── cut.py │ ├── daemon.py │ ├── main.py │ ├── package_transcribe.py │ ├── transcribe.py │ ├── type.py │ ├── utils.py │ └── whisper_model.py ├── setup.cfg ├── setup.py ├── tea.yaml └── test/ ├── config.py ├── content/ │ ├── test.srt │ ├── test_md.md │ └── test_srt.srt ├── media/ │ ├── test003.mkv │ └── test004.flv ├── test_cut.py └── test_transcribe.py