Я хочу вырезать аудио файлы. Тем не менее, всякий раз, когда я обрезаю его, добавляется сбой, резкий шум, когда я обрезаю звук. Как я могу удалить этот шум?
Код, который я использую для записи звука:
import sounddevice as sd
from scipy.io.wavfile import write
fs = 16000 # Sample rate
seconds = 1.5 # Duration of recording
myrecording = sd.rec(int(seconds*fs), samplerate=fs, channels=1, dtype='int16') #recor the audio
sd.wait() # Wait until recording is finished
myrecording=myrecording[8000:] #get one second data
write('output.wav', fs, myrecording) # Save as WAV file
Заранее спасибо.