AcoustID.ChromaContext.SetOption C# (CSharp) Méthode

SetOption() public méthode

Set a configuration option for the selected fingerprint algorithm.
NOTE: DO NOT USE THIS FUNCTION IF YOU ARE PLANNING TO USE THE GENERATED FINGERPRINTS WITH THE ACOUSTID SERVICE. Possible options: - silence_threshold: threshold for detecting silence, 0-32767
public SetOption ( string name, int value ) : bool
name string option name
value int option value
Résultat bool
        public bool SetOption(string name, int value)
        {
            return fingerprinter.SetOption(name, value);
        }