Clear Filters
Clear Filters

How to Record .Wav file for a voice recognition with data base Audacity

1 view (last 30 days)
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?

Answers (2)

Mayque Souza
Mayque Souza on 14 Nov 2017
UP!

Mayque Souza
Mayque Souza on 29 Nov 2017
UP!

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!