Wenn dabei eine STFT und dann eine inverse STFT (ISTFT) auf einem 16 Bit 44,1 kHz Audiodatei mit der Bibliothek Librosa:Abtastrate Ausgabe mit Librosa
import librosa
y, sr = librosa.load('test.wav', mono=False)
y1 = y[0,]
S = librosa.core.stft(y1)
z1 = librosa.core.istft(S, dtype=y1.dtype)
librosa.output.write_wav('test2.wav', z1, sr)
der Ausgang ist nur ein 22-kHz-Audio-Datei . Warum? Wo ändert sich die Abtastrate in librosa?
das ist nicht die richtige Antwort yunus. –