Skip to content

Latest commit

 

History

History
 
 

whisper-gui-cpu

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

whisper-gui

whisper-gui - A simple GUI made with gradio to use Whisper from https://github.com/Pikurrot/whisper-gui

Docker Image Version (latest by date) Docker Image Size (latest by date) Docker Pulls GitHub Workflow Status

Index

  1. Usage
    1.1 docker run
    1.2 docker-compose.yaml
  2. Environment Variables
  3. Volumes
  4. Ports
  5. Find Me
  6. License

1 Usage

1.1 docker run

docker run -d \
    --name whisper-gui \
    -v /path/of/some/files:/whisper-gui/outputs \
    -p 7860:7860/tcp \
    3x3cut0r/whisper-gui:latest

1.2 docker-compose.yml

version: '3.9'

# https://github.com/Pikurrot/whisper-gui
services:
  # https://hub.docker.com/r/3x3cut0r/whisper-gui
  whisper-gui:
    container_name: whisper-gui
    image: 3x3cut0r/whisper-gui:latest
    restart: unless-stopped
    ports:
      - '7860:7860'
    volumes:
      - whisper-gui-data:/whisper-gui/outputs

volumes:
  whisper-gui-data:
    name: whisper-gui-data

2 Environment Variables

  • TZ - Specifies the server timezone - Default: UTC
  • LANGUAGE - Specifies the language of the UI. See lang.json for supported languages- Default: en

3 Volumes

  • /whisper-gui/outputs - output directory

4 Ports

  • 7860 - Gradio Port for the Webinterface

5 Find Me

E-Mail

6 License

MIT License - This project is licensed under the MIT License - see the MIT License for details. ``