├── LICENSE ├── README.md ├── Transcribe.py ├── __pycache__ ├── config.cpython-39.pyc └── transcriber.cpython-39.pyc ├── buffer └── test.json.txt ├── imgs └── ico.ico ├── requirements.txt ├── style.css ├── transcriber.py └── transcripts └── test.docx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/README.md -------------------------------------------------------------------------------- /Transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/Transcribe.py -------------------------------------------------------------------------------- /__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/transcriber.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/__pycache__/transcriber.cpython-39.pyc -------------------------------------------------------------------------------- /buffer/test.json.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgs/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/imgs/ico.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/requirements.txt -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/style.css -------------------------------------------------------------------------------- /transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojaeger/whisper-streamlit/HEAD/transcriber.py -------------------------------------------------------------------------------- /transcripts/test.docx: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------