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
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2007-2015 Brian Langenberger
This work is licensed under the
Creative Commons Attribution-Share Alike 3.0 United States License.
To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/3.0/us/ or send a letter to
Creative Commons,
171 Second Street, Suite 300,
San Francisco, California, 94105, USA.
-->
<manpage>
<utility>trackinfo</utility>
<author>Brian Langenberger</author>
<section>1</section>
<name>prints information and metadata from tracks</name>
<title>Track Information</title>
<synopsis>[OPTIONS] <track 1> [track 2] ...</synopsis>
<description>
trackinfo takes a list of audio tracks and writes information about
them to standard output.
This includes track length, number of channels, sample rate,
bits-per-sample, filename and additional metadata, if any.
</description>
<options>
<option short="h" long="help">show a list of options and exit</option>
<option short="n" long="no-metadata">
do not print track metadata such as track name, album name and so forth
</option>
<option short="L" long="low-level">
display low-level metadata information such as ID3 frames,
Vorbis comment pairs, and so on
</option>
<option short="b" long="bitrate">
prints the average bitrate of the track in kilobytes-per-second
instead of the usual track information
</option>
<option short="%" long="percentage">
prints the percentage compression of the track instead of the usual
track information
</option>
<option short="C" long="channel-assignment">
prints the track's channel assignment, if defined
</option>
</options>
</manpage>
|