GitHub
github.com › Azooz-AI › WhisperX-Docker-API
GitHub - Azooz-AI/WhisperX-Docker-API: WhisperX: Automatic Speech Recognition with Word-level Timestamps (& Diarization) with Docker Ready and API Server
A Docker-based API server for WhisperX with multi-language transcription, speaker diarization, and word-level timestamps.
Starred by 7 users
Forked by 5 users
Languages Python
Docker Hub
hub.docker.com › r › pluja › whisperx-api
pluja/whisperx-api - Docker Image
© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
GitHub
github.com › tijszwinkels › whisperX-api
GitHub - tijszwinkels/whisperX-api: The WhisperX API is a containerized solution for transcribing audio files using the powerful `whisperx` model. This API provides an easy-to-use endpoint for audio transcription and is packaged into a Docker container for easy deployment
The WhisperX API is a containerized solution for transcribing audio files with diarization using the powerful whisperX project. This API provides an easy-to-use endpoint for audio transcription and is packaged into a Docker container for easy ...
Starred by 16 users
Forked by 6 users
Languages Python 68.8% | Dockerfile 31.2%
Docker Hub
hub.docker.com › r › onerahmet › openai-whisper-asr-webservice
onerahmet/openai-whisper-asr-webservice - Docker Image
openai-whisper-asr-webservice · © 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
GitHub
github.com › jim60105 › docker-whisperX
GitHub - jim60105/docker-whisperX: Dockerfile for WhisperX: Automatic Speech Recognition with Word-Level Timestamps and Speaker Diarization (Dockerfile, CI image build and test)
Dockerfile for WhisperX: Automatic Speech Recognition with Word-Level Timestamps and Speaker Diarization (Dockerfile, CI image build and test) - jim60105/docker-whisperX
Starred by 404 users
Forked by 47 users
Languages Dockerfile 76.6% | Python 14.4% | HCL 9.0%
Docker Hub
hub.docker.com › r › dustynv › whisperx
dustynv/whisperx - Docker Image
© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
GitHub
github.com › thomasvvugt › whisperx
GitHub - thomasvvugt/whisperx: Docker image for WhisperX by Max Bain
docker run -it --rm -v /path/to/audio_files:/app thomasvvugt/whisperx:cpu recording.mp3 --batch_size 4 --compute_type int8
Starred by 12 users
Forked by 5 users
Docker Hub
hub.docker.com › r › saladtechnologies › whisperx-api
saladtechnologies/whisperx-api
Welcome to the world's largest container registry built for developers and open source contributors to find, use, and share their container images. Build, push and pull.
Replicate
replicate.com › erium › whisperx
erium/whisperx | Run with an API on Replicate
whisperx · Automatic Speech Recognition with Word-level Timestamps & Diarization · Public · 5.3K runs · License · GitHub · Paper · Playground API Examples README Versions · This model costs approximately $0.035 to run on Replicate, or 28 runs per $1, but this varies depending on your inputs. It is also open source and you can run it on your own computer with Docker.
Runpod
runpod.io › home › articles › guides › running whisper with a ui in docker: a beginner’s guide
Running Whisper with a UI in Docker: A Beginner’s Guide
python CopyEdit import requests # Use Runpod's API to launch container or send file # Automate audio upload & receive transcript · Useful for SaaS, batch processing, and multi-user platforms. Always test locally before deploying. Add GPU checks to ensure Whisper uses CUDA. Use loggers instead of print statements for better debugging. Mount persistent storage for large audio files. Use ngrok or share=True in dev but avoid in production. Use Docker volumes if you need to cache model weights.
Docker Hub
hub.docker.com › r › thomasvvugt › whisperx
thomasvvugt/whisperx - Docker Image
© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
Karthik
karthikziffer.github.io › journal › dockerize-whisper-model.html
Dockerize whisper model | Karthik
April 13, 2024 - conda create --name whisperx python=3.10 conda activate whisperx conda install pytorch==2.0.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia ''' on Ubuntu or Debian ''' sudo apt update && sudo apt install ffmpeg ''' on Arch Linux ''' sudo pacman -S ffmpeg ''' on MacOS using Homebrew (https://brew.sh/) ''' brew install ffmpeg ''' on Windows using Chocolatey (https://chocolatey.org/) ''' choco install ffmpeg ''' on Windows using Scoop (https://scoop.sh/) ''' scoop install ffmpeg pip install git+https://github.com/m-bain/whisperx.git · In local system these installation step works perfectly, but when the same steps are tried as a docker image, the dependency of whisperX on faster_whisper throws an error and breaks the installation.
Docker Hub
hub.docker.com › r › matusstas › openai-whisper-microservice
matusstas/openai-whisper-microservice - Docker Image
openai-whisper-microservice · © 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
Reddit
reddit.com › r/openai › whisper docker container
r/OpenAI on Reddit: Whisper docker container
April 25, 2023 -
So there wasn't a solution out that would allow you to submit your audio/video files to a dockerized flask app and have your subtitle files etc generated as if you were using whisper via the command line... so I made one. Go check it out here jlonge4/whisperAI-flask-docker: I built this project because there was no user friendly way to upload a file to a dockerized flask web form and have whisper do its thing via CLI in the background. Now there is. Enjoy! (github.com)
Top answer 1 of 4
2
I'm curious why you didn't use https://github.com/openai/whisper
2 of 4
2
Running on MacOS, had to remove two instances of static/files from app.py, otherwise was getting ‘file not found’ errors on submit. Form seemed to work after that, processed an mp3 to 100%. Then: /usr/local/lib/python3.8/dist-packages/torch/_utils.py:147: UserWarning: Failed to initialize NumPy: module compiled against API version 0xf but this version of numpy is 0xd (Triggered internally at /root/pytorch/torch/csrc/utils/tensor_numpy.cpp:84.) Not sure what to do about this.
GitHub
github.com › pavelzbornik › whisperX-FastAPI
GitHub - pavelzbornik/whisperX-FastAPI: FastAPI service on top of WhisperX
# Run Container docker run -d --gpus all -p 8000:8000 --env-file .env whisperx-service · The API will be accessible at http://127.0.0.1:8000.
Starred by 152 users
Forked by 52 users
Languages Python 99.6% | Shell 0.4%