Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how i can combine keyboard voice to my voice. i am giving the code which i am using.

조회 수: 3 (최근 30일)
anjali parashar
anjali parashar 2013년 4월 4일
마감: Sabin 2023년 1월 6일
[y,fs,nbits]=wavread('C:\Users\HP\Desktop\anjali.wav');
sound(y,fs)
t=0:1/fs:length(y)/fs-1/fs;
% original waveform
figure(1)
subplot(3,3,1)
plot(t,y)
title ('time domain waveform of untitled1.wav')
xlabel('time (sec)')
ylabel('amplitude')
%%%%%% keyboard noise
[z,fs,nbits]=wavread('C:\Users\HP\Desktop\keyboard.wav');
sound(z,fs)
t1=0:1/fs:length(z)/fs-1/fs;
% keyboard waveform
figure(2)
plot(t1,z)
title ('time domain waveform of untitled.wav')
xlabel('time (sec)')
ylabel('amplitude')
%%%%%%%%%
y3 = [y(1:500,:); z; y(501:end)];
sound(y3,fs)
t=0:1/fs:length(y)/fs-1/fs;
  댓글 수: 1
Jan
Jan 2013년 4월 4일
The question is not clear. Please explain "combine" with any details and describe, if the code is working properly or which problems it has.

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by