How to Record .Wav file for a voice recognition with data base Audacity
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello Friend,
I would like some help to generate a .wav file so that we can compare it with my database built with Audacity software with 16bits-PCM. We started using a function:
fs = 44100; % of sample frequency
nobits = 16; % of bits per sample
nochannels = 1; % of channels (mono)
recording = audiorecorder (fs, nobits, nochannels);
get (recording);
recording = audiorecorder;
disp ('Start talking').
recording (recording, 5);
disp ('End of Recording');
But I do not have a hit rate on my neural network, when recording with Audacity and then loading audio with "audioread" and inserting into the neural network, it gives me a high hit rate. However when recording directly by audiorecorder in Matlab, it is not possible to perform matches. Any suggestions?
댓글 수: 0
답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio and Video Data에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!