-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-sample.xml
More file actions
32 lines (32 loc) · 1.28 KB
/
Copy pathconfig-sample.xml
File metadata and controls
32 lines (32 loc) · 1.28 KB
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
<config>
<workroot>/path/to/workroot</workroot>
<mkvtoolnix>
<path>/path/to/MKVtoolnix</path>
</mkvtoolnix>
<matroska>
<cuesheet description="CUE Sheet">
<filter type="mp3">
<path>/path/to/command1</path>
<path>/path/to/command2</path>
<command>cueproc</command>
<option>-c lame_eyed3 -x "/path/to/lame" -p "-V3 --vbr-new --quiet" -b "__DESTROOT__" -d "${ALBUMARTIST}/${ALBUM}" -w "utf-8" -o "#if{track.has_key('DISCNUMBER')}${DISCNUMBER}-#endif${TRACKNUMBER}-${TITLE}"</option>
<thumb>--albumart-files "__THUMB__"</thumb>
<destroot>/path/to/destroot</destroot>
</filter>
<filter type="ogg">
<path>/path/to/command</path>
<command>cueproc</command>
<option>-c oggenc -x "/path/to/oggenc2" -p "-q 6" -b "__DESTROOT__" -d "${ALBUMARTIST}/${ALBUM}" -w "utf-8" -o "#if{track.has_key('DISCNUMBER')}${DISCNUMBER}-#endif${TRACKNUMBER}-${TITLE}"</option>
<destroot>/path/to/destroot</destroot>
</filter>
</cuesheet>
<cover description="Cover Image">
<filter>
<path>/path/to/command</path>
<command>/path/to/convert</command>
<option>-resize 256x256 "__COVER__" "__THUMB__"</option>
<format>s_%s</format>
</filter>
</cover>
</matroska>
</config>