{"id":30701031,"url":"https://github.com/jerryshell/whisper.cpp-windows-vulkan-bin","last_synced_at":"2026-05-09T02:34:06.731Z","repository":{"id":310967290,"uuid":"1041891555","full_name":"jerryshell/whisper.cpp-windows-vulkan-bin","owner":"jerryshell","description":"whisper.cpp Windows binary w/ Vulkan GPU support","archived":false,"fork":false,"pushed_at":"2025-08-23T19:00:53.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-02T13:05:22.232Z","etag":null,"topics":["ai","amd","amd-gpu","inference","openai","speech-recognition","speech-to-text","srt","subtitles","transformer","vulkan","whisper","whisper-cpp"],"latest_commit_sha":null,"homepage":"","language":null,"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/jerryshell.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":"2025-08-21T06:59:29.000Z","updated_at":"2025-08-23T19:00:56.000Z","dependencies_parsed_at":"2025-08-21T10:44:53.973Z","dependency_job_id":"c78da3b5-eac9-4047-bde4-6204053e1128","html_url":"https://github.com/jerryshell/whisper.cpp-windows-vulkan-bin","commit_stats":null,"previous_names":["jerryshell/whisper.cpp-windows-vulkan-bin"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jerryshell/whisper.cpp-windows-vulkan-bin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerryshell%2Fwhisper.cpp-windows-vulkan-bin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerryshell%2Fwhisper.cpp-windows-vulkan-bin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerryshell%2Fwhisper.cpp-windows-vulkan-bin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerryshell%2Fwhisper.cpp-windows-vulkan-bin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jerryshell","download_url":"https://codeload.github.com/jerryshell/whisper.cpp-windows-vulkan-bin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerryshell%2Fwhisper.cpp-windows-vulkan-bin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32804943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["ai","amd","amd-gpu","inference","openai","speech-recognition","speech-to-text","srt","subtitles","transformer","vulkan","whisper","whisper-cpp"],"created_at":"2025-09-02T13:01:43.497Z","updated_at":"2026-05-09T02:34:06.726Z","avatar_url":"https://github.com/jerryshell.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# whisper.cpp Windows binary w/ Vulkan GPU support\n\nGet `whisper.cpp-windows-vulkan.zip` from the [Releases page](https://github.com/jerryshell/whisper.cpp-windows-vulkan-bin/releases)\n\n## Example: Integration to Subtitle Edit\n\nCopy file to `%appdata%\\Subtitle Edit\\Whisper\\Cpp`\n\nYou may need to create the directory manually\n\n## Example: Download and Transcribe YouTube video\n\nBash command\n\n### Download video\n\n```shell\nyt-dlp \\\n    -f \"bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best\" \\\n    -o \"video/1.mp4\" \\\n    --no-simulate \\\n    --no-write-auto-subs \\\n    --restrict-filenames \\\n    --embed-thumbnail \\\n    --embed-chapters \\\n    --xattrs \\\n    \"https://www.youtube.com/watch?v=UF8uR6Z6KLc\";\n```\n\n### Extract audio and Resample\n\n```shell\nffmpeg \\\n    -i \"video/1.mp4\" \\\n    -hide_banner \\\n    -vn \\\n    -loglevel error \\\n    -ar 16000 \\\n    -ac 1 \\\n    -c:a pcm_s16le \\\n    -y \\\n    \"video/1.wav\";\n```\n\n### Transcribe\n\nhttps://huggingface.co/ggerganov/whisper.cpp\n\n```shell\n./whisper-cli \\\n    -m \"model/ggml-large-v2-q5_0.bin\" \\\n    -f \"video/1.wav\" \\\n    -sns \\\n    -osrt;\n```\n\n### Transcribe w/ VAD\n\nhttps://huggingface.co/ggml-org/whisper-vad\n\n```shell\n./whisper-cli \\\n    -m \"model/ggml-large-v2-q5_0.bin\" \\\n    --vad \\\n    -vm \"model/ggml-silero-v5.1.2.bin\" \\\n    -f \"video/1.wav\" \\\n    -sns \\\n    -osrt;\n```\n\n## More usage\n\nSee [ggml-org/whisper.cpp](https://github.com/ggml-org/whisper.cpp)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerryshell%2Fwhisper.cpp-windows-vulkan-bin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjerryshell%2Fwhisper.cpp-windows-vulkan-bin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerryshell%2Fwhisper.cpp-windows-vulkan-bin/lists"}