[go: up one dir, main page]

File: dvda2track.xml

package info (click to toggle)
audiotools 3.1.1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 18,200 kB
  • sloc: ansic: 417,746; python: 59,089; xml: 1,639; makefile: 303; sh: 99
file content (113 lines) | stat: -rw-r--r-- 4,029 bytes parent folder | download | duplicates (2)
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
<?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>dvda2track</utility>
  <author>Brian Langenberger</author>
  <section>1</section>
  <name>extract audio tracks</name>
  <title>DVD-Audio Extractor</title>
  <synopsis>[OPTIONS] [track 1] [track 2] ...</synopsis>
  <description>
    dvda2track extracts audio files from a mounted DVD-Audio disc and
    encodes them to tracks.
    If track numbers are given, extracts only those tracks
    from the given title.
    Otherwise it extracts the entire title.
  </description>
  <options>
    <option short="h" long="help">show a list of options and exit</option>
    <option short="I" long="interactive">
      edit metadata and encoding options in interactive mode
      prior to extracting disc
    </option>
    <option short="c" long="cdrom" arg="cdrom">
      the DVD-ROM device the disc is mounted to
    </option>
    <option short="A" long="audio-ts" arg="dir">
      the path to the mounted disc's "AUDIO_TS" directory
    </option>
    <option long="title" arg="title">
      the title number to extract tracks from
    </option>
    <option short="V" long="verbose" arg="verbosity">
      The level of output to display.
      Choose between 'normal', 'quiet' and 'debug'.
    </option>
  </options>
  <options category="extraction">
    <option short="t" long="type" arg="type">
      The audio format of the extracted audio tracks.
      For a list of available audio formats, try: -t help.
    </option>
    <option short="q" long="quality" arg="quality">
      The desired quality of the extracted tracks.
      For a list of available quality modes for a given format, try: -q help
    </option>
    <option short="d" long="dir" arg="directory">
      The target directory for the extracted tracks.
      If none is given, the current working directory is used.
      If the target directory does not exist,
      it will be created automatically.
    </option>
    <option long="format" arg="string">
      The format string to use for new filenames.
      Template fields are replaced with metadata values when
      new tracks are created.  All other text is left as-is.
      If this option is omitted, a default format string is used.
    </option>
  </options>
  <options category="DVD-A lookup">
    <option long="musicbrainz-server" arg="hostname">
      the MusicBrainz server name to query for metadata
    </option>
    <option long="musicbrainz-port" arg="port">
      the MusicBrainz port to query for metadata
    </option>
    <option long="no-musicbrainz">
      don't query MusicBrainz for metadata
    </option>
    <option long="freedb-server" arg="hostname">
      the FreeDB server name to query for metadata
    </option>
    <option long="freedb-port" arg="port">
      the FreeDB port to query for metadata
    </option>
    <option long="no-freedb">
      don't query FreeDB for metadata
    </option>
    <option short="D" long="default">
      When multiple metadata choices are available,
      select the first one automatically.
      This option has no effect when used with -I
    </option>
  </options>
  <options category="metadata">
    <option long="replay-gain">
      add ReplayGain metadata to newly created tracks
    </option>
    <option long="no-replay-gain">
      do not add ReplayGain metadata to newly created tracks
    </option>
  </options>
  <examples>
    <example>
      <description>
        Extract all tracks from the DVD-A on mount point "/media/cdrom"
        whose DVD-ROM device is "/dev/cdrom"
      </description>
      <command>
        dvda2track -c /dev/cdrom -A /media/cdrom/AUDIO_TS/
      </command>
    </example>
  </examples>
</manpage>