我想以不同的速度播放WAV音频文件的一部分,例如双倍速度,并保持文件的其余部分以原始速度正常工作。
% snd is a wav file last 20 seconds.
specPart = snd((2:7) * 2) % I took a part of it and doubled its speed
sound(specPart , FS) % this will be played in double speed
现在我想播放所有snd
个文件,包括其中的specPart
。
答案 0 :(得分:0)
sound(specPart , 2*FS) % it will double its speed
我希望这会有所帮助