{"id":29932962,"url":"https://github.com/idvoretskyi/ukrainian-voice-transcriber","last_synced_at":"2025-09-14T23:56:42.123Z","repository":{"id":304235647,"uuid":"1018180356","full_name":"idvoretskyi/ukrainian-voice-transcriber","owner":"idvoretskyi","description":"🎯 Single-binary Ukrainian video-to-text transcription using Google Cloud Speech-to-Text API","archived":false,"fork":false,"pushed_at":"2025-09-09T16:40:24.000Z","size":7552,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-09T19:59:40.311Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/idvoretskyi/ukrainian-voice-transcriber","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/idvoretskyi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"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-07-11T18:43:36.000Z","updated_at":"2025-09-09T16:40:27.000Z","dependencies_parsed_at":"2025-08-02T18:35:13.845Z","dependency_job_id":"6d8b87a9-c1f5-4efc-a225-f8e489edcfdd","html_url":"https://github.com/idvoretskyi/ukrainian-voice-transcriber","commit_stats":null,"previous_names":["idvoretskyi/ukrainian-voice-transcriber"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/idvoretskyi/ukrainian-voice-transcriber","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idvoretskyi%2Fukrainian-voice-transcriber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idvoretskyi%2Fukrainian-voice-transcriber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idvoretskyi%2Fukrainian-voice-transcriber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idvoretskyi%2Fukrainian-voice-transcriber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idvoretskyi","download_url":"https://codeload.github.com/idvoretskyi/ukrainian-voice-transcriber/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idvoretskyi%2Fukrainian-voice-transcriber/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274700296,"owners_count":25333536,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-08-02T18:33:12.134Z","updated_at":"2025-09-14T23:56:42.096Z","avatar_url":"https://github.com/idvoretskyi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ukrainian Voice Transcriber\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![CI](https://github.com/idvoretskyi/ukrainian-voice-transcriber/actions/workflows/ci.yml/badge.svg)](https://github.com/idvoretskyi/ukrainian-voice-transcriber/actions)\n\nSingle-binary Ukrainian video-to-text transcription using Google Cloud Speech-to-Text API.\n\n## Features\n\n- Ukrainian language optimized (`uk-UA` locale)\n- Single binary deployment (no dependencies)\n- Cost-efficient with auto-cleanup\n- FFmpeg integration for video processing\n- Simple authentication via gcloud CLI\n\n## Quick Start\n\n### Prerequisites\n\n```bash\n# Install FFmpeg\nbrew install ffmpeg  # macOS\nsudo apt install ffmpeg  # Ubuntu\n\n# Install Go 1.24+\nbrew install go  # macOS\n```\n\n### Installation\n\n```bash\ngo install github.com/idvoretskyi/ukrainian-voice-transcriber/cmd/transcriber@latest\n```\n\n\u003e **Note**: Ensure `$(go env GOPATH)/bin` is in your `$PATH`. If not, add this to your shell profile:\n\u003e ```bash\n\u003e export PATH=\"$(go env GOPATH)/bin:$PATH\"\n\u003e ```\n\n### Authentication\n\n```bash\n# Install and authenticate with gcloud\ncurl https://sdk.cloud.google.com | bash\ngcloud auth login\ngcloud auth application-default login\ngcloud config set project YOUR_PROJECT_ID\ngcloud services enable speech.googleapis.com storage.googleapis.com\n```\n\n### Usage\n\n```bash\n# Basic transcription\ntranscriber transcribe video.mp4\n\n# Save to specific file\ntranscriber transcribe video.mp4 -o transcript.txt\n\n# Check setup\ntranscriber setup\n```\n\n## Documentation\n\n- 📖 [English User Manual](docs/USER_MANUAL_EN.md)\n- 📖 [Ukrainian User Manual](docs/USER_MANUAL_UK.md)\n\n## CLI Commands\n\n```bash\n# Main commands\ntranscriber transcribe video.mp4 [-o output.txt] [--verbose|--quiet]\ntranscriber auth [--status]\ntranscriber setup\ntranscriber version\n```\n\n## Examples\n\n```bash\n# Basic usage\ntranscriber transcribe meeting.mp4\n\n# Batch processing\nfor video in *.mp4; do\n    transcriber transcribe \"$video\"\ndone\n```\n\n## Troubleshooting\n\n**FFmpeg not found**: `brew install ffmpeg` or `sudo apt install ffmpeg`\n\n**Authentication required**: Run `transcriber auth --status` and follow setup instructions\n\n**Permission denied**: Make sure `$GOPATH/bin` is in your `$PATH`\n.\n\n## Building\n\n```bash\ngit clone https://github.com/idvoretskyi/ukrainian-voice-transcriber.git\ncd ukrainian-voice-transcriber\nmake build\n```\n\n## License\n\nMIT License - see LICENSE file for details.\n\n---\n\n🇺🇦 Made with ❤️ for Ukrainian content creators\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidvoretskyi%2Fukrainian-voice-transcriber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidvoretskyi%2Fukrainian-voice-transcriber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidvoretskyi%2Fukrainian-voice-transcriber/lists"}