Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 465 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 465 Bytes

OpenAI Whisper on Docker

Build Docker Image

docker image build --tag whisper:latest .

Run whisper Command

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