{"id":23456364,"url":"https://github.com/hanpham32/react-native-whisper","last_synced_at":"2026-04-17T00:33:50.505Z","repository":{"id":269501021,"uuid":"907560351","full_name":"hanpham32/react-native-whisper","owner":"hanpham32","description":"A simple OpenAI Whisper transcription React Native app","archived":false,"fork":false,"pushed_at":"2024-12-28T21:44:27.000Z","size":332,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T06:41:47.774Z","etag":null,"topics":["flask","ngrok","react-native","transcribe","whisper"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/hanpham32.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":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-23T21:49:05.000Z","updated_at":"2024-12-28T21:44:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"b5365cf7-eb2f-46c7-97d9-7a98a50327b1","html_url":"https://github.com/hanpham32/react-native-whisper","commit_stats":null,"previous_names":["hanpham32/react-native-whisper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hanpham32/react-native-whisper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanpham32%2Freact-native-whisper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanpham32%2Freact-native-whisper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanpham32%2Freact-native-whisper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanpham32%2Freact-native-whisper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hanpham32","download_url":"https://codeload.github.com/hanpham32/react-native-whisper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanpham32%2Freact-native-whisper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31910148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"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":["flask","ngrok","react-native","transcribe","whisper"],"created_at":"2024-12-24T04:28:31.865Z","updated_at":"2026-04-17T00:33:50.483Z","avatar_url":"https://github.com/hanpham32.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-whisper\n\nA React Native application powered by Flask on the backend, exposing endpoints through ngrok, and using OpenAI Whisper for speech-to-text processing.\n\nNote: Whisper usage costs $0.006 per minute (rounded to the nearest second).\n\nImportant: Make sure your OpenAI API key is properly set in your environment variables.\n\n## Tech Specs\n\n- **Frontend**: [React Native](https://reactnative.dev/)\n- **Backend**: [Flask](https://flask.palletsprojects.com/)\n- **API Gateway**: [ngrok](https://ngrok.com/)\n- **AI Model**: [OpenAI Whisper](https://openai.com/blog/whisper/) (`$0.006 / minute`, billed per second)\n\n## Local Development Setup\n\n### Prerequisites\n\n1. **uv / Node.js / Yarn / Bun**\n   - You can install [uv](https://docs.astral.sh/uv/), [Node.js](https://nodejs.org/) or [Bun](https://bun.sh/) to manage JS dependencies.\n2. **Python 3.13.0+**\n   - Required for dependencies.\n3. **Flask**\n   - Installed via `pip` or a virtual environment.\n4. **ngrok**\n   - Installable on most platforms; instructions included below.\n5. **OpenAI API Key**\n6. **ngrok API Key**\n\n### Clone the repository\n\n```bash\ngit clone https://github.com/your-username/your-repo.git\ncd your-repo\n```\n\n### Flask server setup\n\n```bash\ncd server\n# - initialize virtual environment\nuv venv\n\n# - activate virtual environment\nsource .venv/bin/activate # on linux and mac\n\n# - install dependencies\nuv sync\n\n# start server\nflask run --port 8000\n```\n\n### ngrok gateway setup\n\n```bash\n# - install ngrok\n# On Linux\ncurl -sSL https://ngrok-agent.s3.amazonaws.com/ngrok.asc \\\n  | sudo tee /etc/apt/trusted.gpg.d/ngrok.asc \u003e/dev/null \\\n  \u0026\u0026 echo \"deb https://ngrok-agent.s3.amazonaws.com buster main\" \\\n  | sudo tee /etc/apt/sources.list.d/ngrok.list \\\n  \u0026\u0026 sudo apt update \\\n  \u0026\u0026 sudo apt install ngrok\n\n# On MacOS\nbrew install ngrok\n\n# - start ngrok on the same port as server\nngrok http 8000\n```\n\n### React Native application setup\n\n```bash\nbun install  # install dependencies\nbun run start  # start application\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanpham32%2Freact-native-whisper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanpham32%2Freact-native-whisper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanpham32%2Freact-native-whisper/lists"}