Which parameters ore metrics can be used to differentiate two simple speach signals recorded using the following code?
1 回表示 (過去 30 日間)
古いコメントを表示
I have used the following code to record and write speech signals
clc
clear all
close all
% Record the voice password for 3.55 seconds.
record = audiorecorder;
disp('===============Speak Password============')
recordblocking(record,3.5);
disp('===============End of Recording==========');
% Play back the recording.
play(record);
% Store data in an array.
audiodata = getaudiodata(record);
% Plot the waveform.
plot(audiodata);
filename = 'key_audio.wav';
audiowrite(filename, audiodata, record.SampleRate)
how to differentiate two speech signals recorded here
0 件のコメント
回答 (0 件)
参考
カテゴリ
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!