faster-whisper-webui / app-network.py
Rakot2223's picture
Duplicate from aadnk/faster-whisper-webui
cb1db42
raw
history blame contribute delete
No virus
247 Bytes
# Run the app with no audio file restrictions, and make it available on the network
from app import create_ui
from src.config import ApplicationConfig
create_ui(ApplicationConfig.create_default(input_audio_max_duration=-1, server_name="0.0.0.0"))