Split audio file into several files, each below a size threshold
问题 I have a FLAC file which I need to split into several distinct FLAC files, each of which must be below 100 MB in size. Are there any UNIX tools which can do this for me? Can I implement this logic myself? Side-note: since FLAC is compressed, I figure that the easiest solution will require first converting the file to WAV. 回答1: There are two parts to your question. Convert existing FLAC audio file to some other format like wav Split converted wav file into chunk of specific size. Obviously,