├── .gitignore ├── README.md ├── app.py ├── cfg ├── __init__.py └── dark │ ├── __init__.py │ ├── darkstyle_rc.py │ └── palette.py ├── ffmpeg └── ffmpeg.txt ├── requirements.txt └── static ├── cfg.json ├── icon.ico ├── prompt.txt └── style.qss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/app.py -------------------------------------------------------------------------------- /cfg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/cfg/__init__.py -------------------------------------------------------------------------------- /cfg/dark/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /cfg/dark/darkstyle_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/cfg/dark/darkstyle_rc.py -------------------------------------------------------------------------------- /cfg/dark/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/cfg/dark/palette.py -------------------------------------------------------------------------------- /ffmpeg/ffmpeg.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/static/cfg.json -------------------------------------------------------------------------------- /static/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/static/icon.ico -------------------------------------------------------------------------------- /static/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/static/prompt.txt -------------------------------------------------------------------------------- /static/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/gemini-speech2srt/HEAD/static/style.qss --------------------------------------------------------------------------------