I have a lot audiobooks, each one is usually split into 20-60 files. It's not comfortable to navigate with audio players if I want to group them into some sets by genre (with [Album artist] ID3 tag set to "Various Artists").
Is there free windows or linux tool or set of tools, whose could do the following?
- Merge the audiobook files to one mp3 without recoding
- Carefully build correct CUE sheet with original ID3 tags pointing to former chapters inside new solid mp3 file.
You can easily join mp3 by simple concatenating them.
Tags can be extracted with ffprobe:
Cue sheets is text files, you can read about its format here:
Since here questions related to programming, I will not post complete solution.