AcoustID.ChromaContext.SetOption C# (CSharp) 메소드

SetOption() 공개 메소드

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