aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-09-05 21:28:07 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2016-09-05 21:28:07 +1200
commit1e52dff3276810c633a2ad5dd3b010ee97a6331a (patch)
tree2d5701930a17845fa6c6ba1d974518b9a9468f00 /README.md
parentc8c27f7d8683403c49f5a440b29916ad6a0a1f91 (diff)
downloadcue-bin-split-1e52dff3276810c633a2ad5dd3b010ee97a6331a.tar.xz
Remove free filename format due to vulnerability
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9f5895e..d6e0c13 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ files named track_nnnn.
-c channel_count
-i input_file
-s size of a single channel's sample (bytes)
- -f name_format (%d and co are replaced with track number)
+ -n output file name (prepended with track number)
## Sample Usage
@@ -30,9 +30,9 @@ were chopping up a 44100 Hz, two channel, 16 bit audio stream,
grep "INDEX 01" audio.cue | \
sed -e 's/INDEX 01//g' | \
- cue-bin-split -i audio.bin -c 2 -r 44100 -s 2 -f track-%03d.raw
+ cue-bin-split -i audio.bin -c 2 -r 44100 -s 2 -f -track.raw
-Would output each track named as `track-001.raw`, `track-002.raw` and so on.
+Would output each track named as `001-track.raw`, `002-track.raw` and so on.
You might then push them through ffmpeg, lame, and/or friends to get them to
another audio format such as flac or mp3.