├── .gitignore ├── .streamlit └── config.toml ├── README.md ├── blog.py ├── main.py ├── meme.py ├── requirements.txt ├── theme.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/* 2 | whisper/* 3 | __pycache__/ -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/README.md -------------------------------------------------------------------------------- /blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/blog.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/main.py -------------------------------------------------------------------------------- /meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/meme.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/requirements.txt -------------------------------------------------------------------------------- /theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/theme.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanGirard/speechdigest/HEAD/utils.py --------------------------------------------------------------------------------