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
|
<?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>covertag</utility>
<author>Brian Langenberger</author>
<section>1</section>
<name>update audio file image metadata</name>
<title>Audio File Image Tagger</title>
<synopsis>[OPTIONS] <track 1> [track 2] ...</synopsis>
<description>
covertag takes image files and a list of audio files
and updates those files with the new artwork.
</description>
<options>
<option short="h" long="help">show a list of options and exit</option>
<option short="r" long="replace">
this options erases all existing images and replaces them
with any specified files
</option>
<option short="V" long="verbose" arg="verbosity">
The level of output to display.
Choose between 'normal', 'quiet' and 'debug'.
</option>
</options>
<options category="image">
<option long="front-cover" arg="filename">
an image file of the album's front cover
</option>
<option long="back-cover" arg="filename">
an image file of the album's back cover
</option>
<option long="leaflet" arg="filename">
an image file of one of the album's leaflet pages
</option>
<option long="media" arg="filename">
an image file of the album's media
</option>
<option long="other-image" arg="filename">
an image file related to the album
</option>
</options>
<examples>
<example>
<description>
Replace all images in track.mp3 with a PNG file
</description>
<command>
covertag -r --front-cover=front.png track.mp3
</command>
</example>
<example>
<description>
Add several JPEG images to track.flac
</description>
<command>
covertag --front-cover=front.jpg --back-cover=back.jpg
--leaflet=page1.jpg --leaflet=page2.jpg --leaflet=page3.jpg
track.flac
</command>
</example>
<example>
<description>
Remove all cover art from track.wv
</description>
<command>
covertag -r track.wv
</command>
</example>
</examples>
</manpage>
|