{"id":25527152,"url":"https://github.com/d-ashesss/whisper-service","last_synced_at":"2026-04-16T05:33:51.239Z","repository":{"id":175951849,"uuid":"647896776","full_name":"d-ashesss/whisper-service","owner":"d-ashesss","description":"gRPC service for self-hosted OpenAI Whisper ASR.","archived":false,"fork":false,"pushed_at":"2023-06-16T22:23:51.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-22T01:37:46.597Z","etag":null,"topics":["asr","grpc","openai","service","whisper"],"latest_commit_sha":null,"homepage":"","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/d-ashesss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-05-31T19:00:58.000Z","updated_at":"2023-06-16T22:26:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"73bb2edc-e31d-4197-9316-510824be56ed","html_url":"https://github.com/d-ashesss/whisper-service","commit_stats":null,"previous_names":["d-ashesss/whisper-service"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/d-ashesss/whisper-service","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-ashesss%2Fwhisper-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-ashesss%2Fwhisper-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-ashesss%2Fwhisper-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-ashesss%2Fwhisper-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d-ashesss","download_url":"https://codeload.github.com/d-ashesss/whisper-service/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-ashesss%2Fwhisper-service/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31872654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["asr","grpc","openai","service","whisper"],"created_at":"2025-02-19T22:17:20.379Z","updated_at":"2026-04-16T05:33:51.222Z","avatar_url":"https://github.com/d-ashesss.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Whisper Service\n\n[![test status](https://github.com/d-ashesss/whisper-service/workflows/test/badge.svg?branch=main)](https://github.com/d-ashesss/whisper-service/actions)\n[![Go Report Card](https://goreportcard.com/badge/github.com/d-ashesss/whisper-service)](https://goreportcard.com/report/github.com/d-ashesss/whisper-service)\n[![MIT license](https://img.shields.io/github/license/d-ashesss/whisper-service?color=blue)](https://opensource.org/licenses/MIT)\n[![Go version](https://img.shields.io/github/go-mod/go-version/d-ashesss/whisper-service)](https://github.com/d-ashesss/whisper-service/blob/main/go.mod)\n[![latest tag](https://img.shields.io/github/v/tag/d-ashesss/whisper-service?include_prereleases\u0026sort=semver)](https://github.com/d-ashesss/whisper-service/tags)\n[![feline reference](https://img.shields.io/badge/may%20contain%20cat%20fur-%F0%9F%90%88-blueviolet)](https://github.com/d-ashesss/whisper-service)\n\ngRPC service for a self-hosted [openai/whisper](https://github.com/openai/whisper).\n\n## Running with Docker\n\nTo get and run the service from Docker Hub:\n\n```shell\ndocker pull ashesss/openai-whisper-service:latest\ndocker run -p 8080:8080 ashesss/openai-whisper-service:latest\n```\n\n### GPU\n\nTo utilize the GPU for the service, first make sure that nvidia plugin for docker is installed then start ther container with GPU support:\n\n```shell\ndocker run -p 8080:8080 --gpus all ashesss/openai-whisper-service:latest\n```\n\n### Model Cache\n\nASR models will be downloaded for each new container, if you want to cache them on persistent volume, mount it as follows:\n\n```shell\ndocker run -p 8080:8080 -v /path/to/cached/models:/root/.cache/whisper ashesss/openai-whisper-service:latest\n```\n\n## Basic Usage\n\nWith Go you can simply import client from this repo:\n\n```go\nimport whisperpb \"github.com/d-ashesss/whisper-service/proto\"\n\nfunc main() {\n\tconn, _ := grpc.Dial(\"localhost:8080\", grpc.WithTransportCredentials(insecure.NewCredentials()))\n\tc := whisperpb.NewWhisperServiceClient(conn)\n\tstream, err := c.Transcribe(context.Background())\n\t...\n}\n```\n\nFor other languages use [whisper.proto](https://github.com/d-ashesss/whisper-service/blob/main/proto/whisper.proto) file to generate gRPC client.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-ashesss%2Fwhisper-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd-ashesss%2Fwhisper-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-ashesss%2Fwhisper-service/lists"}