Find words from audio file
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alexandre Filion
am 20 Mai 2020
Beantwortet: Gabriele Bunkheila
am 13 Dez. 2021
Hi,
I'm was wondering how can we find the words/letters/syllables from a audio file.
For example, how can I find the words: "Hello World" from the picture under.
Now what I got is that I talk for two seconds and I'm recording it, after I store this record in the variable (y) and then I plot it. This is the code and the result I got so far:
recObj = audiorecorder;
disp('Start speaking.')
recordblocking(recObj, 2);
disp('End of Recording.');
y = getaudiodata(recObj);
figure
plot(y);
title('Hello World!')
Thank You!
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 20 Mai 2020
I haven't tried this before, but you can try this if you have the audio toolbox
Weitere Antworten (1)
Gabriele Bunkheila
am 13 Dez. 2021
Hi Alexandre, I have just come across your question. I appreciate this may no longer be timely but I am adding a couple pointers in case they can help others.
For isolating or segmenting speech in low-noise recordings, the function detectSpeech should work just fine. This will return start and stop times of all signal regions where speech is detected, but no text "transcription" of the actual speech content.
To estimate the transcription you will need a speech-to-text model based on machine learning. The following two links will be relevant:
- speech2text, also availale from within Signal Labeler per this example. Note that the use of this function also requires a registration with a cloud-based speech-to-text service from either Google, Microsoft, or IBM. Refer to the documentation for details
- The MATLAB implementation of the wav2vec 2.0 deep learning network, available from here on GitHub. This will only work for English but it is completely based on MATLAB
I hope this helps.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Audio Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!