Skip to content Skip to sidebar Skip to footer

How To Get Equally Spaced Audio Chunks From .wav File Using Ffmpeg?

I have a .wav file which I am trying to slice into chunks of .wav files that are each 5 seconds long. I am calling ffmpeg as a sub process from within my Python script. So far, I t

Solution 1:

Use the segment muxer.

ffmpeg -i in.wav -f segment -segment_time 5 -c copy frame-%d.wav

Post a Comment for "How To Get Equally Spaced Audio Chunks From .wav File Using Ffmpeg?"