{"id":47770001,"url":"https://github.com/doppeltilde/automatic_speech_recognition","last_synced_at":"2026-04-03T08:53:29.977Z","repository":{"id":243546932,"uuid":"812702873","full_name":"doppeltilde/automatic_speech_recognition","owner":"doppeltilde","description":"Containerized self-hosted REST API for interacting with Hugging Face Faster Whisper models.","archived":false,"fork":false,"pushed_at":"2024-06-13T16:46:02.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T06:34:13.063Z","etag":null,"topics":["asr","automatic-speech-recognition","docker","faster-whisper","huggingface","inference","machine-learning","python","rest","rest-api"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/doppeltilde.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":"2024-06-09T16:34:24.000Z","updated_at":"2024-08-27T19:25:50.000Z","dependencies_parsed_at":"2024-06-13T18:19:23.020Z","dependency_job_id":null,"html_url":"https://github.com/doppeltilde/automatic_speech_recognition","commit_stats":null,"previous_names":["doppeltilde/automatic_speech_recognition"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/doppeltilde/automatic_speech_recognition","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doppeltilde%2Fautomatic_speech_recognition","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doppeltilde%2Fautomatic_speech_recognition/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doppeltilde%2Fautomatic_speech_recognition/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doppeltilde%2Fautomatic_speech_recognition/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doppeltilde","download_url":"https://codeload.github.com/doppeltilde/automatic_speech_recognition/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doppeltilde%2Fautomatic_speech_recognition/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31343804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T08:03:20.796Z","status":"ssl_error","status_checked_at":"2026-04-03T08:00:37.834Z","response_time":107,"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":["asr","automatic-speech-recognition","docker","faster-whisper","huggingface","inference","machine-learning","python","rest","rest-api"],"created_at":"2026-04-03T08:53:29.183Z","updated_at":"2026-04-03T08:53:29.967Z","avatar_url":"https://github.com/doppeltilde.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automatic Speech Recognition utilizing Faster Whisper.\n\n## Stack:\n- [FastAPI](https://fastapi.tiangolo.com)\n- [Python](https://www.python.org)\n- [Docker](https://docker.com)\n\n## Installation\n\n- For ease of use it's recommended to use the provided [docker-compose.yml](https://github.com/doppeltilde/automatic_speech_recognition/blob/main/docker-compose.yml).\n**CPU Support:** Use the `latest` tag.\n```yml\nservices:\n  automatic_speech_recognition:\n    image: ghcr.io/doppeltilde/automatic_speech_recognition:latest\n    ports:\n      - \"8000:8000\"\n    volumes:\n      - models:/root/.cache/huggingface/hub:rw\n    environment:\n      - DEFAULT_ASR_MODEL_NAME\n      - COMPUTE_TYPE\n      - USE_API_KEYS\n      - API_KEYS\n    restart: unless-stopped\n\nvolumes:\n  models:\n```\n\n**NVIDIA GPU Support:** Use the `latest-cuda` tag.\n```yml\nservices:\n  automatic_speech_recognition_cuda:\n    image: ghcr.io/doppeltilde/automatic_speech_recognition:latest-cuda\n    ports:\n      - \"8000:8000\"\n    volumes:\n      - models:/root/.cache/huggingface/hub:rw\n    environment:\n      - DEFAULT_ASR_MODEL_NAME\n      - COMPUTE_TYPE\n      - USE_API_KEYS\n      - API_KEYS\n    restart: unless-stopped\n    deploy:\n      resources:\n        reservations:\n          devices:\n            - driver: nvidia\n              count: all\n              capabilities: [ gpu ]\n\nvolumes:\n  models:\n```\n\n\n- Create a `.env` file and set the preferred values.\n```sh\nDEFAULT_ASR_MODEL_NAME=base\nCOMPUTE_TYPE=float16\n\n# False == Public Access\n# True == Access Only with API Key\nUSE_API_KEYS=False\n\n# Comma seperated api keys\nAPI_KEYS=abc,123,xyz\n```\n\n## Models\nAny model designed and compatible with faster-whisper should work.\n\n## Usage\n\n\u003e [!NOTE]\n\u003e Please be aware that the initial process may require some time, as the model is being downloaded.\n\n\u003e [!TIP]\n\u003e Interactive API documentation can be found at: http://localhost:8000/docs\n\n---\n\n_Notice:_ _This project was initally created to be used in-house, as such the\ndevelopment is first and foremost aligned with the internal requirements._","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoppeltilde%2Fautomatic_speech_recognition","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoppeltilde%2Fautomatic_speech_recognition","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoppeltilde%2Fautomatic_speech_recognition/lists"}