From 86b69af1d60e39a406e433a392f5b75cd0831f8d Mon Sep 17 00:00:00 2001 From: dschlueter Date: Thu, 4 Jun 2026 00:34:10 +0200 Subject: [PATCH] =?UTF-8?q?Aufnahme-Samplerate=20auf=2048000=20Hz=20ge?= =?UTF-8?q?=C3=A4ndert=20(MOTU=20M2=20Nativrate)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- BEDIENUNGSANLEITUNG.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BEDIENUNGSANLEITUNG.md b/BEDIENUNGSANLEITUNG.md index 7e755a1..432fb08 100644 --- a/BEDIENUNGSANLEITUNG.md +++ b/BEDIENUNGSANLEITUNG.md @@ -73,7 +73,7 @@ dir, 30–60 Sekunden lang. Öffne ein Terminal und gib folgendes ein: ```bash -arecord -D pulse -f S16_LE -r 44100 -c 1 --duration=60 \ +arecord -D pulse -f S16_LE -r 48000 -c 1 --duration=60 \ ~/chatterbox-tts-cli/my_voice_deutsch_60s.wav ``` diff --git a/README.md b/README.md index 654e472..0ee0dda 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ cat ~/chatterbox-tts-cli/Trainings_Text.txt # 3. Aufnahme starten — 60 Sekunden, stoppt automatisch # (nutzt das Standard-Eingabegerät von PipeWire/PulseAudio) -arecord -D pulse -f S16_LE -r 44100 -c 1 --duration=60 \ +arecord -D pulse -f S16_LE -r 48000 -c 1 --duration=60 \ ~/chatterbox-tts-cli/my_voice_deutsch_60s.wav # 4. Aufnahme abhören und prüfen @@ -145,7 +145,7 @@ pactl list sources short | grep -v monitor # Aufnahme explizit vom MOTU M2: arecord -D pulse \ --default-device=alsa_input.usb-MOTU_M2_M20000046918-00.analog-stereo \ - -f S16_LE -r 44100 -c 1 --duration=60 \ + -f S16_LE -r 48000 -c 1 --duration=60 \ ~/chatterbox-tts-cli/my_voice_deutsch_60s.wav ```