An open API service indexing awesome lists of open source software.

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

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`