How to cut the last 20 seconds of a audio file?
13 ビュー (過去 30 日間)
古いコメントを表示
How to cut the last 20 seconds of a audio file?
0 件のコメント
回答 (1 件)
Venkata Siva Krishna Madala
2018 年 2 月 22 日
Hello Valerio Riso,
I understand that you want to cut the last 20 seconds of a audio file using MATLAB.
I have written a sample code which will perform the task.
filename='yourfilenamewithextension'
[y, fs]=audioread(filename);
samples=[1,length(y)-(20*fs)];%replace 20 with the number of seconds you need to cut
[y1,fs] = audioread(filename,samples);
audiowrite('cutversion',y1,fs);
You can play around with samples in the code to change the duration of the audio you want to extract.
- Venkata Siva Krishna Madala
2 件のコメント
Ayesha
2022 年 11 月 3 日
how can I take only a small portion of the audio signal, about 500 consecutive points, and repeat this portion 10 times using the repmat command?
参考
カテゴリ
Help Center および File Exchange で Audio Processing Algorithm Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!