AcoustID.ChromaContext.SetOption C# (CSharp) Method

SetOption() public method

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
return bool
        public bool SetOption(string name, int value)
        {
            return fingerprinter.SetOption(name, value);
        }