You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I use a toolbox from python_speech_features import logfbank to get log mel energy from wav file, can I convert the feature back to speech b waveform bby your model?
If yes, could you please guide?
Thank you.
from python_speech_features import logfbank
from scipy.io import wavfile
sample_rate, wav_data = wavfile.read('test.wav')
audio_feats = logfbank(wav_data, samplerate=sample_rate).astype(np.float32)
##
# How to convert audio_feats back to wavform?
##
The text was updated successfully, but these errors were encountered:
Hi,
I use a toolbox
from python_speech_features import logfbank
to get log mel energy from wav file, can I convert the feature back to speech b waveform bby your model?If yes, could you please guide?
Thank you.
The text was updated successfully, but these errors were encountered: