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.
This commit is contained in:
2025-03-24 14:17:42 +01:00
parent 697d6ec5fc
commit 36bad26e91

View File

@@ -1,10 +1,10 @@
{ {
"audio_file": "/path/to/audio.wav", "audio_file": "/tmp/pyvtt_recording.wav",
"output_file": "/path/to/output.txt", "output_file": "/tmp/pyvtt_transcript.txt",
"whisper_path": "/path/to/whisper-cli", "whisper_path": "/path/to/whisper-cli",
"language": "en", "language": "en",
"socket_path": "/path/to/socket.sock", "socket_path": "/tmp/pyvtt.sock",
"ollama_url": "http://example.com", "ollama_url": "http://localhost",
"ollama_port": 12345, "ollama_port": 12345,
"presets": [ "presets": [
{ {