Isolating words in speech

7 views (last 30 days)
Leon Ellis
Leon Ellis on 21 Aug 2021
Edited: Leon Ellis on 21 Aug 2021
Good day, my task is to say 20 words into my microphone on matlab and to create an algorithm of some sorts in order to take the words given and separate them into their own audio file. This is what I have so far:
clear
r1 = audiorecorder(22050, 24, 1);
disp('Press Enter, then say 20 words that can be used to make multiple sentences');
pause;
recordblocking(r1,12); % speak into microphone & say the words
disp('Press Enter to listen to the recording');
pause;
p = play(r1); % listen
disp('Press Enter to plot the recording');
pause;
mySpeech1 = getaudiodata(r1, 'double'); % get data as int16 array
grid on;
disp('Press enter to save file');
pause;
filename = 'C:\Users\leone\OneDrive\Desktop\Year 2\Semester 2\EERI 222\Practical1\Recording.wav';
audiowrite(filename, mySpeech1,22050);
[yn, fs] = audioread('Noise.wav');
yn=mean(yn); %Get the average noise
[y, fs] = audioread('Recording.wav');
t = linspace(0, 1, size(y,1))/fs;
tTrans=transpose(t); %Time's x-values
y=y-yn; %Remove the average noise
plot(tTrans,y);
hold off;
pause;
If possible could someone please provide an idea of what code i can use or direction I should look into. I've kindof been thrown into the task without resources provided that could help and I'm struggling to find. Thanks in advance!

Answers (0)

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!