File: audiotool.1

package info (click to toggle)
libccaudio2 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,076 kB
  • ctags: 985
  • sloc: sh: 11,441; cpp: 8,586; makefile: 47
file content (115 lines) | stat: -rw-r--r-- 4,020 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.TH audiotool "1" "October 2004" "GNU ccAudio Tool" OST
.SH NAME
audiotool \- manipulate audio data files.
.SH SYNOPSIS
.B audiotool
\fI\-append\fR [\fI\-offset=pos\fR] \fItarget\fR \fIaudiofiles...\fR
.br
.B audiotool
\fI\-build\fR [\fI\-encoding=codec\fR] \fItarget\fR \fIaudiofiles...\fR
.br
.B audiotool
\fI\-chart\fR [\fI\-silence=value\fR] [\fI\-framing=msec\fR] \fIaudiofiles...\fR
.br
.B audiotool
\fI\-codecs\fR
.br
.B audiotool
\fI\-info\fR \fIaudiofile\fR
.br
.B audiotool
\fI\-notation\fR \fIaudiofile\fR [\fI``new-string''\fR]
.br
.B audiotool
\fI\-play\fR \fIaudiofiles...\fR
.br
.B audiotool
\fI\-plugins\fR
.br
.B audiotool
\fI-soundcard\fR [\fIindex\fR]
.br
.B audiotool
\fI\-strip\fR [\fI\-silence=value\fR] [\fI-framing=msec\fR] \fIaudiofiles...\fR
.br
.B audiotool
\fI\-trim\fR [\fI\-silence=value\fR] [\fI-framing=msec\fR] [\fI-padding=frames\fR] \fIaudiofiles...\fR
.br
.B audiotool
\fI\-version\fR
.SH DESCRIPTION
Audiotool is used to copy, manipulate, and examine the contents of audio
files.  These audio files may be raw headerless audio data or audio stored in
common data files such as .wav or .au files.  In the near future
audiotool will also support packetized audio files such as .mp3 and .ogg.
.PP
.TP
\fB\-append\fR
appends the content of other audio files into an existing audio file.
The offset to save within the existing file may be specified.
If nessisary the content of the specified files will be re-encoded in
the codec of the file being appended to.
.TP
\fB\-build\fR
Build a brand new audio file from scratch and then copy content from
existing audio files into it.  The encoding of the new
audio file will either be based on the file extension, the audio file
that is being copied into it, or by specifying the encoding format
directly.
.TP
\fB\-chart\fR
This is used to generate an energy chart profile of the audio file frame
by frame.  A * indicates solid audio content, a ^ indicates what might
be a lead or trailer section of partial content, and a . indicates
relative silence.  Soon a autotrim option will be added to audiotool to
remove silent frames.
.TP
\fB\-codecs\fR
List all active codec objects.  If you have plugins which are loaded that
creates codec objects which match a built-in codec, the plugin will be
selected first.
.TP
\fB\-info\fR
The info command gives you basic information on the audio file,
including what format it is stored as, what codec the audio data is
encoded in, how much data is in the file, what the bit rate used is,
etc.
.TP
\fB\-notation\fR
Notation can be used to either set or display the annotation stored in
audio files which support annotations, such as .au and .wav files.
.TP
\fB\-play\fR
Plays the content of the audio file to the default system audio device
(soundcard).  Play is supported on w32 and posix systems that support
oss audio.  Future work will expand to additional platforms.
.TP
\fB\-plugins\fR
This simply returns the path to the plugins directory.  All plugins are
loaded with Audio::init().  Plugins are not supported when building with
static linkage.
.TP
\fB\-strip\fR
Strips out all silent frames from an audio file.  Silent frames are
those which fall below a threashold and that have no peak impulse above
the threashold.
.TP
\fB\-trim\fR
Removes leading and trailing "silence" from a file.  The \-padding option
may be used to add additional silent frames at the end of the file after
it has been trimed, as this may be needed for files that will later be
used to join together phrases.
.SH BUGS
At this time audiotool does not perform and ccaudio does not
support sample rate conversion.  Appending and building from files which
are encoded at different sample rates could have ammusing results.
.SH AUTHOR
Written by David Sugar.
.SH "REPORTING BUGS"
Report bugs to <dyfet@gnu.org>.
.SH COPYRIGHT
Copyright \(co 2004 Open Source Telecom Corp.
.br
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.