Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 1/6] Remove the --quiet (-q) option from vorbiscomment.1 man page.
--- vorbiscomment/vorbiscomment.1 | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/vorbiscomment/vorbiscomment.1 b/vorbiscomment/vorbiscomment.1 index 0108e78..2bceb83 100644 --- a/vorbiscomment/vorbiscomment.1 +++ b/vorbiscomment/vorbiscomment.1 @@ -39,13 +39,11 @@ Reads, modifies, and appends Ogg Vorbis audio file metadata tags. .IP "-a, --append" Append comments. .IP "-c file, --commentfile file" -Take comments from a file. The file is the same format as is output by the the -l option or given to the -t option: one element per line in 'tag=value' format. If the file is /dev/null and -w was passed, the existing comments will be removed. +Take comments from a file. The file is the same format as is output by the -l option or given to the -t option: one element per line in 'tag=value' format. If the file is /dev/null and -w was passed, the existing comments will be removed. .IP "-h, --help" Show command help. .IP "-l, --list" List the comments in the Ogg Vorbis file. -.IP "-q, --quiet" -Quiet mode. No messages are displayed. .IP "-t 'name=value', --tag 'name=value'" Specify a new tag on the command line. Each tag is given as a single string. The part before the '=' is treated as the tag name and the part after as the value. .IP "-w, --write" -- 1.7.1
Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 2/6] Mention the -V option in ogginfo.1 man page.
--- ogginfo/ogginfo.1 | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/ogginfo/ogginfo.1 b/ogginfo/ogginfo.1 index 126da20..bde5490 100644 --- a/ogginfo/ogginfo.1 +++ b/ogginfo/ogginfo.1 @@ -49,6 +49,8 @@ Quiet mode. This may be specified multiple times. Doing so once will remove the detailed informative messages, twice will remove warnings as well. .IP -v Verbose mode. At the current time, this does not do anything. +.IP -V +Output version information and exit. .SH AUTHORS .br -- 1.7.1
Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 3/6] Fix typos in oggdec.1 man page.
--- oggdec/oggdec.1 | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oggdec/oggdec.1 b/oggdec/oggdec.1 index fb12b18..1035cb6 100644 --- a/oggdec/oggdec.1 +++ b/oggdec/oggdec.1 @@ -6,7 +6,7 @@ oggdec - simple decoder, Ogg Vorbis file to PCM audio file (Wave or RAW). .SH "SYNOPSIS" .B oggdec [ -.B -Qhv +.B -QhV ] [ .B -b bits_per_sample ] [ @@ -48,7 +48,7 @@ Print help message. Display version information. .IP "-b n, --bits=n" Bits per sample. Valid values are 8 or 16. -.IP "-e n, --endian=n" +.IP "-e n, --endianness=n" Set endianness for 16-bit output. 0 (default) is little-endian (Intel byte order). 1 is big-endian (sane byte order). .IP "-R, --raw" Output in raw format. If not specified, writes Wave file (RIFF headers). -- 1.7.1
Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 4/6] Document the --scale option of oggenc.
---
oggenc/man/oggenc.1 | 5 +++++
oggenc/oggenc.c | 1 +
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/oggenc/man/oggenc.1 b/oggenc/man/oggenc.1
index 411e2a9..633e5ec 100755
--- a/oggenc/man/oggenc.1
+++ b/oggenc/man/oggenc.1
@@ -47,6 +47,9 @@ oggenc \- encode audio into the Ogg Vorbis format
.B --downmix
]
[
+.B --scale
+]
+[
.B -s
.I serial
]
@@ -164,6 +167,8 @@ useful for downsampling for lower-bitrate encoding.
.IP "--downmix"
Downmix input from stereo to mono (has no effect on non-stereo streams). Useful
for lower-bitrate encoding.
+.IP "--scale"
+Input scaling factor (helps with clipping inputs).
.IP "--advanced-encode-option optionname=value"
Sets an advanced option. See the Advanced Options section for details.
.IP "-s, --serial"
diff --git a/oggenc/oggenc.c b/oggenc/oggenc.c
index 4a120f3..b6c2863 100644
--- a/oggenc/oggenc.c
+++ b/oggenc/oggenc.c
@@ -513,6 +513,7 @@ static void usage(void)
" --resample n Resample input data to sampling rate n
(Hz)\n"
" --downmix Downmix stereo to mono. Only allowed on
stereo\n"
" input.\n"
+ " --scale Input scaling factor (helps with clipping
inputs).\n"
" -s, --serial Specify a serial number for the stream. If
encoding\n"
" multiple files, this will be incremented
for each\n"
" stream after the first.\n"));
--
1.7.1
Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 5/6] Document --remote and -delay in ogg123.1 man page.
--- ogg123/ogg123.1 | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ogg123/ogg123.1 b/ogg123/ogg123.1 index 3543ed4..5453c0e 100644 --- a/ogg123/ogg123.1 +++ b/ogg123/ogg123.1 @@ -73,6 +73,10 @@ Specify output file for file devices. The filename "-" writes to standard out. If the file already exists, .B ogg123 will overwrite it. +.IP "-l s, --delay s" +Set termination timeout in milliseconds. ogg123 will skip to the next song on +SIGINT (Ctrl-C), and will terminate if two SIGINTs are received within the +specified timeout 's'. (default 500) .IP "-h, --help" Show command help. .IP "-k n, --skip n" @@ -106,6 +110,8 @@ times slower than normal speed. May be with -x for interesting fractional speeds. .IP "-r, --repeat" Repeat playlist indefinitely. +.IP "-R, --remote" +Use remote control interface. .IP "-z, --shuffle" Play files in pseudo-random order. .IP "-Z, --random" -- 1.7.1
Kamil Dudka
2013-May-28 12:28 UTC
[Vorbis-dev] [PATCH 6/6] Document the --config (-c) option of ogg123.
---
ogg123/cmdline_options.c | 1 +
ogg123/ogg123.1 | 2 ++
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/ogg123/cmdline_options.c b/ogg123/cmdline_options.c
index f3107f9..5ed5c9c 100644
--- a/ogg123/cmdline_options.c
+++ b/ogg123/cmdline_options.c
@@ -373,6 +373,7 @@ void cmdline_usage (void)
printf ("\n");
printf (_("Miscellaneous options\n"));
+ printf (_(" -c c, --config c Config options from
command-line.\n"));
printf (_(" -l s, --delay s Set termination timeout in
milliseconds. ogg123\n"
" will skip to the next song on SIGINT
(Ctrl-C),\n"
" and will terminate if two SIGINTs are
received\n"
diff --git a/ogg123/ogg123.1 b/ogg123/ogg123.1
index 5453c0e..b52583e 100644
--- a/ogg123/ogg123.1
+++ b/ogg123/ogg123.1
@@ -73,6 +73,8 @@ Specify output file for file devices. The filename
"-" writes to standard
out. If the file already exists,
.B ogg123
will overwrite it.
+.IP "-c c, --config c"
+Config options from command-line.
.IP "-l s, --delay s"
Set termination timeout in milliseconds. ogg123 will skip to the next song on
SIGINT (Ctrl-C), and will terminate if two SIGINTs are received within the
--
1.7.1