Need ideas on how to extract a 30s portion of a wav file and save as a new file
조회 수: 3 (최근 30일)
이전 댓글 표시
This may be easy but I'm no expert in MatLab. I have a bacth of wav files and I need to extract a 30s sample from each. Example
1.wav - need 1:34-2:04
2.wav - need 5:15 - 5:45
ideally I'd like to run a code which will take each wav file and extract the correct time period according to a pre-generated table and save each snippet as a new wav file (e.g., 1_snip.wav would be the 30secs I need to analyze). Any points in the right direction would be great. Thanks!
댓글 수: 0
답변 (1개)
Rik
2022년 5월 6일
Have you already found a way to read a single wav file? If not, audioread should do what you want.
Remember that the second output is the sampling frequency (in samples per second), so you will have to multiply that by the number of seconds to determine the number of samples you need.
Then you can use audiowrite to create the new file.
댓글 수: 2
Rik
2022년 5월 6일
You need to convert the time in seconds to samples. You can use the sample frequency output parameter. Simply convert the time marks to seconds and multiply those with Fs. Then you can use those to index the data array.
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulation, Tuning, and Visualization에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!