Demlo: update for 1.2

master
Pierre Neidhardt 2014-10-15 10:53:26 +02:00
parent 387ec65425
commit b17eb6327f
1 changed files with 13 additions and 15 deletions

View File

@ -1,7 +1,4 @@
-- Demlorc configuration file. -- Demlo configuration file.
-- Clear unknown tags.
cleartags = true
-- Remove embedded covers. -- Remove embedded covers.
clearcovers = true clearcovers = true
@ -20,11 +17,12 @@ constants = constants .. ' der die das den dem des ein eine einen eines einer wo
constants = constants .. " d'Acide JBX " constants = constants .. " d'Acide JBX "
-- Extension support for external covers. This is a pattern-matching string. For -- Extension support for external covers. This is a pattern-matching string. For
-- instance 'jpe?g' will match both 'jpg' and 'jpeg'. Case is ignored. -- instance 'jpe?g' will match both 'jpg' and 'jpeg'. Case is ignored. The value
cover_extlist = { gif = true } -- is ignored, use 'true' or anything else.
cover_extlist = { gif=true }
-- If true, extract covers from tags, copy covers in current folder, exclude those -- If true, extract covers from tags, copy covers in current folder, exclude
-- outside the size boundaries. -- those outside the size boundaries.
covers = true covers = true
-- Default format. -- Default format.
@ -36,6 +34,9 @@ graphical = true
-- Root folder for output files. -- Root folder for output files.
library = os.getenv('HOME') .. '/musics' library = os.getenv('HOME') .. '/musics'
-- Do not complete tags with online database.
online = false
-- What to do if file exists. -- What to do if file exists.
overwrite = false overwrite = false
@ -45,16 +46,13 @@ process = false
-- Re-encode. -- Re-encode.
recode = true recode = true
-- Shall we recurse into subfolders when walking tree. -- We recurse into subfolders when walking tree.
recursive = true recursive = true
-- Default search/replace script applied to all tags by the 'cleantags' function. -- We copy file when the content is not modified.
replace = [[{ rename = false
['[{%[]'] = '(',
['[%]}]'] = ')',
}]]
-- You might want to set one of the official scripts by default. -- You might want to set one of the official scripts by default.
script = 'default' scripts = 'tag case sub filename cover format'
-- End of configuration file. -- End of configuration file.