https://github.com/hisano/openai-whisper-on-docker
OpenAI Whisper on Docker
https://github.com/hisano/openai-whisper-on-docker
docker openai whisper
Last synced: about 2 months ago
JSON representation
OpenAI Whisper on Docker
- Host: GitHub
- URL: https://github.com/hisano/openai-whisper-on-docker
- Owner: hisano
- License: mit
- Created: 2022-09-23T01:52:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-23T01:56:02.000Z (over 2 years ago)
- Last Synced: 2025-04-02T19:41:51.762Z (2 months ago)
- Topics: docker, openai, whisper
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 19
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenAI Whisper on Docker
## Build Docker Image
```shell
docker image build --tag whisper:latest .
```## Run `whisper` Command
```shell
VOLUME_DIRECTORY=$(pwd)
FILE_NAME=hello.wav
docker container run --rm --volume ${VOLUME_DIRECTORY}:/data whisper --model tiny --language Japanese /data/${FILE_NAME}
```> Command Example on Windows: `docker container run --rm --volume C:/Users/USER_NAME/tmp:/data whisper --model tiny --language Japanese /data/hello.wav`