LinuxCommandLibrary

shnsplit

Splits audio files according to a `.cue` file.

TLDR

Split a .wav + .cue file into multiple files

$ shnsplit -f [path/to/file.cue] [path/to/file.wav]
copy


Show supported formats
$ shnsplit -a
copy


Split a .flac file into multiple files
$ shnsplit -f [path/to/file.cue] -o flac [path/to/file.flac]
copy


Split a .wav file into files of the form "track-number - album - title"
$ shnsplit -f [path/to/file.cue] [path/to/file.wav] -t "%n - %a - %t
copy

Copied to clipboard