mp3cut
A mp3 file splitter helpful to cut a single mp3 file into multiple files.
Example
// chapters.txt
0:00 Song 1
2:34 Song 2
4:09 Song 3
mp3cut -o outdir chapters.txt source.mp3
out
├── Song 1.mp3
├── Song 2.mp3
└── Song 3.mp3
API
Chapter
let chapters_data = read_to_string.unwrap;
let chapters = from.unwrap;
// [{ title: "Song 1", timestamp: 0:00 },
// { title: "Song 2", timestamp: 2:34 },
// { title: "Song 3", timestamp: 4:09 }]
find_mp3_bounds
let mp3_data = read;
let bounds = find_mp3_bounds;
// [23_442, 449_396, 889_292, 1_234_567]