Hide Forgot
Description of problem: The man page of icedax shows a -L command line paramater. The built in help shows it. It does not work. Version-Release number of selected component (if applicable): icedax-1.1.11-8.fc15.x86_64 How reproducible: always Steps to Reproduce: 1. icedax -L Actual results: icedax: Bad Option: -L. use 'icedax -help' to get more information. Additional info: Filing under crdkit component because icedax doesn't have its own
This is because a mode (0 or 1) is needed after -L option: $ man icedax ... -L cddb mode --cddb does a cddbp album- and track title lookup based on the cddb id. The parameter cddb mode defines how multiple entries shall be handled. ┌──────────┬──────────────────────────────────────────┐ │Parameter │ Description │ ├──────────┼──────────────────────────────────────────┤ │ 0 │ interactive mode. The user selects the │ │ │ entry to use. │ ├──────────┼──────────────────────────────────────────┤ │ 1 │ first fit mode. The first entry is taken │ │ │ unconditionally. │ └──────────┴──────────────────────────────────────────┘ ...
I was trying "icedax -L cddb=0" based on the online help which says: (-L) cddb=cddbpmode do cddbp title lookups. resolve multiple entries according to cddbpmode: 0=interactive, 1=first entry but that didn't work. The online help and the error message could be clearer.
Help isn't very clear, you're right. You can report suggested changes to upstream: http://alioth.debian.org/projects/debburn Just to sum it up, it's able to use these variants: icedax -L 0 icedax -L 1 icedax -cddb 0 icedax -cddb 1 icedax --cddb 0 icedax --cddb 1