Hello Readers,
Usually, we need to crop the audio file. FFmpeg is useful command tool or the same task.
To crop part of given an audio file, you can can be utilized the following command to crop the audio file:
ffmpeg -ss 00:00:15 -t 45 -i SAMPLEAVIDEO.mp3 CROPPEDAUDIO.mp3
Here some codac is using in above command:
1.) -ss 00:00:15 is the staring time
2.) -t 45 is the duration of the cropped file.
Thanks
0 Comment(s)