noScribe Trankription
Offizielle Seite: https://noscribe.de/de/
noScribe extrahiert automatisch die Audiospur aus Videodateien und transkribiert diese.
Vorteile:
- Grafische Benutzeroberfläche - keine Kommandozeile nötig
- Speziell für Interviews entwickelt
- Automatische Sprechererkennung (Speaker Diarization)
- Integrierter Editor zum Nachbearbeiten
- Zeitstempel werden automatisch eingefügt
- Nutzt Whisper im Hintergrund - beste Qualität
- Kostenlos und Open Source
- Exportiert direkt in verschiedene Formate (TXT, DOCX, SRT)
- Kann Audio während des Transkribierens anzeigen
- Für lange Interviews optimiert
- die maximale Dateigröße: Praktisch unbegrenzt, aber bei sehr langen Aufnahmen (>3h) kann die Verarbeitung länger dauern
- Qualität: Je besser die Audioqualität, desto genauer das Transkript
- Mehrkanal-Audio: Wird auf Mono reduziert
Jedes gängige Format sollte funktionieren. Falls dein Interview in einem exotischen Format vorliegt, kannst du es vorher mit "ffmpeg" konvertieren:
ffmpeg -i eingabe.xxx -ar 16000 ausgabe.mp3
noScribe folgende Audio- und Video-Formate:
Audio:
- MP3
- WAV
- M4A
- FLAC
- OGG
- WMA
Video:
- MP4
- AVI
- MOV
- MKV
- WebM
Installation Linux
Gehe auf die Releases-Seite und lade die Linux-Version herunter.
- Download the CUDA or CPU version of noScribe 0.7 for Linux here: https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.7%2FLinux
- Issues with noScribe 0.7 for Linux on some systems have been reported. If noScribe 0.7 for Linux does not work on your system, please use noScribe 0.6.2 while we try to solve these issues: https://drive.switch.ch/index.php/s/EIVup04qkSHb54j?path=%2FnoScribe%20vers.%200.6%2FLinux
- Untar the file using the terminal command
tar -xzvf noScribe_0.7.0_cpu_linux_amd64.tar.gzortar -xzvf noScribe_0.7.0_cuda_linux_amd64.tar.gz. - Execute noScribe using the terminal by
cding into the noScribe folder and executing./noScribe. - Optionally: Edit the files
noScribe.desktopandnoScribeEdit.desktopwith a text editor and enter the complete path in the lines starting withExec=andIcon=.
Manuelle Installation:
# Abhängigkeiten installieren
sudo apt install python3 python3-pip python3-venv git ffmpeg -y
# git Repo klonen
git clone https://github.com/kaixxx/noScribe.git
cd noScribe
# noScribeEdit
rm -rf noScribeEdit/
git clone https://github.com/kaixxx/noScribeEditor.git noScribeEdit
# Python‑Umgebung
python3 -m venv venv
source venv/bin/activate
# Abhängigkeiten
pip install -r environments/requirements_linux.txt
pip install -r noScribeEdit/environments/requirements.txt
# Modelle
rm -rf models/fast
rm -rf models/precise
git clone https://huggingface.co/mukowaty/faster-whisper-int8 models/fast
git clone https://huggingface.co/mobiuslabsgmbh/faster-whisper-large-v3-turbo models/precise
# Start
python3 ./noScribe.py
Starten:
bash
python3 noScribe.py