├── .gitignore ├── README.md ├── cache └── .gitignore ├── img ├── premiere_example.png └── terminal_example.png ├── log.py ├── main.py ├── premiere_convert.py ├── requirements.txt ├── start.bat ├── templates └── premiere_sequence.xml └── transcribe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/README.md -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /img/premiere_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/img/premiere_example.png -------------------------------------------------------------------------------- /img/terminal_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/img/terminal_example.png -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/log.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/main.py -------------------------------------------------------------------------------- /premiere_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/premiere_convert.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python main.py 3 | pause -------------------------------------------------------------------------------- /templates/premiere_sequence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/templates/premiere_sequence.xml -------------------------------------------------------------------------------- /transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/AutoCaptions/HEAD/transcribe.py --------------------------------------------------------------------------------