Files
PyVtT/pyvtt.settings.sample.json
Max P. 36bad26e91 Updates default paths in sample settings
Replaces placeholder paths with temporary file paths for audio, output, and socket.
Updates the default URL to use localhost for better local testing.
2025-03-24 14:17:42 +01:00

31 lines
1.1 KiB
JSON

{
"audio_file": "/tmp/pyvtt_recording.wav",
"output_file": "/tmp/pyvtt_transcript.txt",
"whisper_path": "/path/to/whisper-cli",
"language": "en",
"socket_path": "/tmp/pyvtt.sock",
"ollama_url": "http://localhost",
"ollama_port": 12345,
"presets": [
{
"name": "Default",
"language": "en",
"whisper_model": "/path/to/default-whisper-model.bin",
"ollama_model": "default-model",
"ollama_prompt": "Provide a detailed response to the following text:\n\n"
},
{
"name": "Quick English",
"whisper_model": "/path/to/quick-whisper-model.bin",
"ollama_model": "quick-model",
"ollama_prompt": "Quickly correct the following English text for grammar and punctuation:\n\n"
},
{
"name": "German Correction",
"language": "de",
"whisper_model": "/path/to/german-whisper-model.bin",
"ollama_model": "german-model",
"ollama_prompt": "Korrigiere den folgenden deutschen Text für Rechtschreibung und Grammatik:\n\n"
}
]
}