small fixes

This commit is contained in:
Robert
2024-05-06 20:46:10 -07:00
parent cc82469ef9
commit f4bab55bc0
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ options:
Number of speakers (default: 2)
--whisper_model WHISPER_MODEL
Whisper model (default: small.en)
Available one: "`small`", "`medium`", "`small.en`","`medium.en`"
Available models: "`small`", "`medium`", "`small.en`","`medium.en`"
--offset OFFSET Offset in seconds (default: 0)
--vad_filter Enable VAD filter
--log_level {DEBUG,INFO,WARNING,ERROR,CRITICAL}

View File

@@ -12,4 +12,4 @@ llama_api_IP = <IP:port of llama.cpp server>
output_path = Results
[Processing]
processing_choice = cuda
processing_choice = cuda

View File

@@ -208,7 +208,7 @@ def check_ffmpeg():
# Download ffmpeg
def download_ffmpeg():
user_choice = input("Do you want to download ffmpeg? (yes/no): ")
user_choice = input("Do you want to download ffmpeg? (y)Yes/(n)No: ")
if user_choice.lower() == 'yes' or 'y' or '1':
print("Downloading ffmpeg")
url = "https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-essentials.zip"