Split lossless audio files into tracks: Difference between revisions

From Notes to self
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Given a single lossless audio file (wav, flac, ape, wv, etc.) <code>foo</code> and corresponding cue sheet <code>foo.cue</code>, we can split it into separate tracks by the following command:<pre>shnsplit -f foo.cue -o "flac flac --verify --best -o %f -" -t "%n-%p-%t" -m " _" foo</pre>
Given a single lossless audio file (wav, flac, ape, wv, etc.) <code>foo</code> and corresponding cue sheet <code>foo.cue</code>, we can split it into separate tracks (compressed by flac) by the following command:<pre>$ shnsplit -f foo.cue -o "flac flac --verify --best -o %f -" -t "%n-%p-%t" -m " _" foo</pre>


[[Category: Debian GNU/Linux]]
[[Category: Debian GNU/Linux]]

Revision as of 01:32, 22 September 2011

Given a single lossless audio file (wav, flac, ape, wv, etc.) foo and corresponding cue sheet foo.cue, we can split it into separate tracks (compressed by flac) by the following command:

$ shnsplit -f foo.cue -o "flac flac --verify --best -o %f -" -t "%n-%p-%t" -m " _" foo