Play last third of a wav file
조회 수: 2 (최근 30일)
이전 댓글 표시
this is part of a question I have to create a program for, I have no code just yet, but I was wondering how to play the last part of a wav file as asked: The second WAV file will have the last Hallelujah repeated three times (and no other sound). any help for this part will get me going in the right direction thanks.
댓글 수: 0
채택된 답변
Youssef Khmou
2013년 3월 26일
편집: Youssef Khmou
2013년 3월 26일
hi, try :
sound(y(2/3:end,Fs); % with Fs the sampling frequency
% EDITED ANSWER
ok Walter is right the answer is not complete/wrong, here is the correct version :
% example :
data=load('gong.mat')
y=data.y;
Fs=data.Fs;
N=length(y);
sound(y(round(2/3*N):N),Fs); % round|ceil|floor
댓글 수: 2
추가 답변 (1개)
Image Analyst
2013년 3월 26일
You pretty much do have code for this. It's in your other question: my code in my answer. The code just needs slight adaptation.
참고 항목
카테고리
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!