Slice audio file into subclips
- ffmpeg
npm install audio-split
var split = require('audio-split');
split({
filepath: 'path/to/file.mp4',
minClipLength: 5
maxClipLength: 10
});
filepath
(String, required)minClipLength
(float, optional, default 5)maxClipLength
(float, optional, default minClipLength + 5)