ambevar-dotfiles/.config/demlo/demlorc

59 lines
1.7 KiB
Plaintext

-- Demlo configuration file.
-- Remove embedded covers.
clearcovers = true
-- We do not use colors by default since it may not work properly on all
-- terminals. Feel free to turn it on if it works well on your system.
colors = true
-- Words that will be written as is and will not be turned to titlecase.
constants = ''
-- French
constants = constants .. ' un une de du le la les et mais pour ni ou à a où contre entre chez dans sur que qui '
-- German
constants = constants .. ' der die das den dem des ein eine einen eines einer wo an am in bei aus mit nach seit von zu vom zur zum durch für gegen ohne um '
-- Music
constants = constants .. " d'Acide JBX "
-- Extension support for external covers. This is a pattern-matching string. For
-- instance 'jpe?g' will match both 'jpg' and 'jpeg'. Case is ignored. The value
-- is ignored, use 'true' or anything else.
cover_extlist = { gif=true }
-- If true, extract covers from tags, copy covers in current folder, exclude
-- those outside the size boundaries.
covers = true
-- Default format.
format = 'ogg'
-- Use human readable output instead of machine-friendly output.
graphical = true
-- Root folder for output files.
library = os.getenv('HOME') .. '/musics'
-- Do not complete tags with online database.
online = false
-- What to do if file exists.
overwrite = false
-- If false, show preview and exit before processing.
process = false
-- Re-encode.
recode = true
-- We recurse into subfolders when walking tree.
recursive = true
-- We copy file when the content is not modified.
rename = false
-- You might want to set one of the official scripts by default.
scripts = 'tag sub case filename cover format'
-- End of configuration file.