├── .gitignore ├── LICENSE ├── README.md ├── colab └── whisper_subtitles_webui_colab.ipynb ├── img └── 1.png ├── languages.py ├── requirements.txt ├── server.py └── ytdlp_functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/README.md -------------------------------------------------------------------------------- /colab/whisper_subtitles_webui_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/colab/whisper_subtitles_webui_colab.ipynb -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/img/1.png -------------------------------------------------------------------------------- /languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/languages.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/server.py -------------------------------------------------------------------------------- /ytdlp_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliasVincent/whisper-subtitles-webui/HEAD/ytdlp_functions.py --------------------------------------------------------------------------------