├── .github ├── ISSUE_TEMPLATE │ ├── captions.yml │ └── whisper.yml └── workflows │ ├── ensure_labels.yml │ └── issue_created.yml ├── LICENSE ├── README.md ├── requirements.txt └── transcribe_audio.py /.github/ISSUE_TEMPLATE/captions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/.github/ISSUE_TEMPLATE/captions.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/whisper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/.github/ISSUE_TEMPLATE/whisper.yml -------------------------------------------------------------------------------- /.github/workflows/ensure_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/.github/workflows/ensure_labels.yml -------------------------------------------------------------------------------- /.github/workflows/issue_created.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/.github/workflows/issue_created.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/requirements.txt -------------------------------------------------------------------------------- /transcribe_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/action-transcription/HEAD/transcribe_audio.py --------------------------------------------------------------------------------