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>trackcmp</utility>
<author>Brian Langenberger</author>
<section>1</section>
<name>compares one or more audio tracks for equivalence</name>
<title>Compare Audio Tracks</title>
<synopsis>[OPTIONS] <track 1> <track 2></synopsis>
<description>
trackcmp takes two audio tracks and compares their PCM data.
If they are exactly the same, it prints no output and returns 0.
If not, a message is displayed and 1 is returned.
trackcmp may also take two directories as arguments.
In that case, any audio files in both directories are compared
as per a single file.
Track and album numbers are used to determine which file
should be compared to which.
</description>
<options>
<option short="h" long="help">show a list of options and exit</option>
<option short="j" long="joint" arg="processes">
The maximum number of tracks to compare at one time.
If one has multiple CPUs or CPU cores, allowing
trackcmp(1)
to use all of them simultaneously can greatly increase comparison speed.
</option>
<option short="S" long="no-summary">
suppress summary output
</option>
<option short="V" long="verbose" arg="verbosity">
The level of output to display.
Choose between 'normal', 'quiet' and 'debug.
</option>
</options>
</manpage>
|