This commit is contained in:
mike
2025-12-17 22:11:08 +01:00
parent 36852dde18
commit a53c0e2902
8 changed files with 218 additions and 239 deletions

View File

@@ -90,22 +90,30 @@ ollama pull llama3.2
### Common Commands
```bash
# Specify device and model
python transcribe_speakers.py --device "CABLE Output" --model medium
# Quick start with GPU (English)
./RUN_GPU.sh
# Save to file with language
python transcribe_speakers.py --language es --output transcript.txt
# Dutch language
./RUN_DUTCH.sh
# Fast mode (low latency)
python transcribe_speakers.py --fast-mode --model tiny --interval 3
# Dutch with LLM analysis
./RUN_DUTCH_LLM.sh
# Extract complete sentences from chunks
python transcribe_speakers.py --sentence-mode --output sentences.txt
# With LLM analysis
./RUN_GPU.sh --enable-llm
# Save to file
./RUN_GPU.sh --output transcript.txt
# Other languages (Spanish, French, German, etc.)
./RUN_GPU.sh --language es # Spanish
./RUN_GPU.sh --language fr # French
./RUN_GPU.sh --language de # German
# Maximum accuracy with LLM and sentence extraction
python transcribe_speakers.py --model large --enable-llm --sentence-mode --output enriched.txt
# Force CPU (avoid GPU issues)
# Force CPU (if GPU issues)
python transcribe_speakers.py --force-cpu
```