aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 11:47:24 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 11:47:24 +1200
commit0a13ff9a4815d1ad07f9655d1d662dd9e0a284f0 (patch)
tree4572f3b4c15d1d09e886367107149fe743672e15 /README.md
parent8416d0f0b1da0c4f5e89f1588f797df749b43a70 (diff)
downloadcue-bin-split-0a13ff9a4815d1ad07f9655d1d662dd9e0a284f0.tar.xz
Specify custom filename format
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index bddd675..c88c66a 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,6 @@ Warning
-------
Try running `grep -i FIXME *.c`
-**This will overwrite any existing file with the same name as an output file**
-
Sample Usage
------------
@@ -20,7 +18,8 @@ Assuming you want to use the first indices of each track as a boundary,
grep "INDEX 01" cue-file | \
sed -e 's/INDEX 01//g' | \
- cue-bin-split raw-file channels samples-rate bytes-per-sample
+ cue-bin-split raw-file channels samples-rate bytes-per-sample name-format
-will output a bunch of files track_0001 through track_nnnn.
-You might then push them through ffmpeg or something to get them to another format.
+Where format is something like `track_%04d`.
+This will output a bunch of files named accordingly.
+You might then push them through ffmpeg or something to get them to another audio format.