{"id":35003939,"url":"https://github.com/febilly/realtime-subtitle","last_synced_at":"2026-02-14T13:08:13.826Z","repository":{"id":327148114,"uuid":"1102359722","full_name":"febilly/realtime-subtitle","owner":"febilly","description":"A realtime subtitle client based on Soniox API","archived":false,"fork":false,"pushed_at":"2026-01-23T16:11:29.000Z","size":558,"stargazers_count":10,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-23T22:27:25.413Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/febilly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/supported-languages.mdx","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-23T10:14:32.000Z","updated_at":"2026-01-23T07:17:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/febilly/realtime-subtitle","commit_stats":null,"previous_names":["febilly/realtime-subtitle"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/febilly/realtime-subtitle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/febilly%2Frealtime-subtitle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/febilly%2Frealtime-subtitle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/febilly%2Frealtime-subtitle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/febilly%2Frealtime-subtitle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/febilly","download_url":"https://codeload.github.com/febilly/realtime-subtitle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/febilly%2Frealtime-subtitle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29444108,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T12:43:28.304Z","status":"ssl_error","status_checked_at":"2026-02-14T12:43:14.160Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-27T04:24:22.641Z","updated_at":"2026-02-14T13:08:13.818Z","avatar_url":"https://github.com/febilly.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Realtime Subtitle\n\nA real-time speech-to-subtitle tool based on Soniox API. Captures system audio and displays live transcription and translation.\n\n**Requires your own Soniox API Key** which costs money based on usage. See [Soniox Pricing](https://soniox.com/pricing) for details.\n\n~~Soniox used to offer free credits.~~ Sadly they no longer do so anymore.\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"doc-images/screenshot.png\" alt=\"A screenshot of the software\" style=\"max-width: 100%; width: 256px; height: auto;\"\u003e\n\u003c/div\u003e\n\n## Features\n\n- Speech recognition powered by Soniox\n- Real-time translation (uses system language as target by default)\n- Use LLM to refine completed translations (optional)\n- And more (I'm too lazy to list them all; just hover over the buttons and check the tooltips)\n\n## Installation\n\nDownload the latest release from the Releases page, or install from source:\n```bash\ngit clone https://github.com/febilly/realtime-subtitle\ncd RealtimeSubtitle\npip install -r requirements.txt\n```\n\n## Configuration\n\nChoose one of the following methods to provide your Soniox API key.\n\n- Set the `SONIOX_API_KEY` environment variable to your API key\n- Set the `SONIOX_TEMP_KEY_URL` environment variable to point to a temporary key endpoint\n\nThis program will also try to read the environment variables from a `.env` file if it exists, like this:\n\n```env\nSONIOX_API_KEY=\"your-key-goes-in-here\"\n```\n\n### Optional: LLM translation refinement\n\nYou can optionally enable an \"auto-refine completed translations\" feature. The UI toggle is only shown when the required LLM settings are present.\n\nThe same toggle also provides a **Pure LLM Translation** mode, which skips Soniox translations in the UI and lets the LLM translate directly. You can cycle between Off / Refine / Pure LLM Translation on the wand button.\n\nYou can get some free quota from [Cerebras(recommended)](https://cerebras.net/) or [OpenRouter](https://openrouter.ai/).\n\nConfigure an OpenAI-compatible endpoint via:\n\n```env\n# Example configuration\nLLM_BASE_URL=\"https://api.cerebras.ai/v1\"\nLLM_MODEL=\"gpt-oss-120b\"\nLLM_API_KEY=\"\u003cyour-key-goes-here\u003e\"\nLLM_TEMPERATURE=\"0.6\"\n```\n\n## Run\n\n```bash\npython server.py\n```\n\nAdd `--debug` flag to enable debug mode.\n\n## Tip\n- Since the interface is just a webpage, you can use `ctrl/cmd + mousewheel` (or `ctrl/cmd + plus/minus` if you prefer) to zoom in/out the text size.\n\n## Build\n\n```bash\npip install pyinstaller\npython build_exe.py\n```\n\nThe executable will be located at `dist/RealtimeSubtitle.exe`.\n\n## Acknowledgements\n\nThis project uses [kuromoji.js](https://github.com/takuyaa/kuromoji.js) for Japanese tokenization in the browser.\nkuromoji.js is licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n\n## Configuration Options\n\nPlease run `python server.py --help` to see all the avaliable options.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffebilly%2Frealtime-subtitle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffebilly%2Frealtime-subtitle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffebilly%2Frealtime-subtitle/lists"}