From 86cbf4320784a0e8f2af40f933c1793092fbe9a5 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Tue, 24 May 2016 09:03:39 +0200 Subject: manpage .1 -> .8 --- Makefile | 6 +++--- sound-cutter.1.in | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ sound-cutter.8.in | 63 ------------------------------------------------------- 3 files changed, 66 insertions(+), 66 deletions(-) create mode 100644 sound-cutter.1.in delete mode 100644 sound-cutter.8.in diff --git a/Makefile b/Makefile index 14c27fe..5fa6edb 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ MANDIR = /usr/share/man VERSION = 1.0.2 -all: sound-cutter sound-cutter.8 +all: sound-cutter sound-cutter.1 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@" $< > $@ @@ -34,10 +34,10 @@ all: sound-cutter sound-cutter.8 install: all install -D -m0755 sound-cutter $(DESTDIR)$(BINDIR)/sound-cutter - install -D -m0644 sound-cutter.8 $(DESTDIR)$(MANDIR)/man8/sound-cutter.8 + install -D -m0644 sound-cutter.1 $(DESTDIR)$(MANDIR)/man1/sound-cutter.1 clean: - rm -f sound-cutter{,.8} + rm -f sound-cutter{,.1} dist: clean git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true diff --git a/sound-cutter.1.in b/sound-cutter.1.in new file mode 100644 index 0000000..c5b9697 --- /dev/null +++ b/sound-cutter.1.in @@ -0,0 +1,63 @@ +.TH sound-cutter 8 "" "sound-cutter #VERSION#" "" +.SH NAME +sound-cutter \- Wrapper for sox for mastering stereo music (a.k.a. CDs) from multi channel records +.SH SYNOPSIS +\fBsound-cutter [options]\fP +.SH DESCRIPTION +\fBsound-cutter\fP mixes, processes and cuts multi channel recordings via \fBsox\fP. +.SH OPTIONS +.TP +.B "\-1, \-\-no\-gain" +Do not normalize audio (it's faster). +.TP +.B "\-f, \-\-force" +Overwrite output file(s). +.TP +.B "\-n, \-\-dummy" +Only print what would be done. +.TP +.B "\-s, \-\-sampleRate" +Explicitly set output sample rate. +.TP +.B "\-i, \-\-input" +Specify input file, one at a time (can be given multiple times). +.TP +.B "\-o, \-\-output" +Specify output file. +May be given only once. +.TP +.B "\-p, \-\-points" +Specify points file (see below for syntax). +May be given only once. +.TP +.B "\-a, \-\-ausfuehrlich" +Give verbose explanations (rudimentary). +.TP +.B "\-h, \-\-help" +Print help and exit. +.SH POINTS_FILE +Structure of file containing instructions for mixing, processing and cutting: +.TP +.B "# with trailing space" +starts comment (until end of line) +.TP +.B "# without trailing space" +divides left and right part of line +.TP +.B "first line" +left part denotes global start and stop of recording, +right part denotes final remix command +.TP +.B "other lines with non-empty left part" +denote border between tracks. Left part is time for cut, right part may be \fBoverlap $someTime\fP to denote fade betweeen tracks and/or \fBnoNewFile\fP to denote that no new +track should start here (thus it's only a border between \fBsub\fPtracks) or may be left empty. +.TP +.B "other lines with empty left part" +denote modifications of current (sub)track. +Additional to all sox effects, \fBtrimsplice $position $discard $excess $leeway\fP is also valid. +This combines splice and trim in a sensible manner. +These type of lines must not occure successively. +.SH AUTHOR +.nf +Erich Eckner +.fi diff --git a/sound-cutter.8.in b/sound-cutter.8.in deleted file mode 100644 index c5b9697..0000000 --- a/sound-cutter.8.in +++ /dev/null @@ -1,63 +0,0 @@ -.TH sound-cutter 8 "" "sound-cutter #VERSION#" "" -.SH NAME -sound-cutter \- Wrapper for sox for mastering stereo music (a.k.a. CDs) from multi channel records -.SH SYNOPSIS -\fBsound-cutter [options]\fP -.SH DESCRIPTION -\fBsound-cutter\fP mixes, processes and cuts multi channel recordings via \fBsox\fP. -.SH OPTIONS -.TP -.B "\-1, \-\-no\-gain" -Do not normalize audio (it's faster). -.TP -.B "\-f, \-\-force" -Overwrite output file(s). -.TP -.B "\-n, \-\-dummy" -Only print what would be done. -.TP -.B "\-s, \-\-sampleRate" -Explicitly set output sample rate. -.TP -.B "\-i, \-\-input" -Specify input file, one at a time (can be given multiple times). -.TP -.B "\-o, \-\-output" -Specify output file. -May be given only once. -.TP -.B "\-p, \-\-points" -Specify points file (see below for syntax). -May be given only once. -.TP -.B "\-a, \-\-ausfuehrlich" -Give verbose explanations (rudimentary). -.TP -.B "\-h, \-\-help" -Print help and exit. -.SH POINTS_FILE -Structure of file containing instructions for mixing, processing and cutting: -.TP -.B "# with trailing space" -starts comment (until end of line) -.TP -.B "# without trailing space" -divides left and right part of line -.TP -.B "first line" -left part denotes global start and stop of recording, -right part denotes final remix command -.TP -.B "other lines with non-empty left part" -denote border between tracks. Left part is time for cut, right part may be \fBoverlap $someTime\fP to denote fade betweeen tracks and/or \fBnoNewFile\fP to denote that no new -track should start here (thus it's only a border between \fBsub\fPtracks) or may be left empty. -.TP -.B "other lines with empty left part" -denote modifications of current (sub)track. -Additional to all sox effects, \fBtrimsplice $position $discard $excess $leeway\fP is also valid. -This combines splice and trim in a sensible manner. -These type of lines must not occure successively. -.SH AUTHOR -.nf -Erich Eckner -.fi -- cgit v1.2.3-54-g00ecf