AcoustID.Chromaprint.SilenceRemover.SilenceRemover C# (CSharp) Méthode

SilenceRemover() public méthode

public SilenceRemover ( IAudioConsumer consumer, int threshold ) : System
consumer IAudioConsumer
threshold int
Résultat System
        public SilenceRemover(IAudioConsumer consumer, int threshold = 0)
        {
            m_start = true;
            m_threshold = threshold;
            m_average = new MovingAverage(kSilenceWindow);
            m_consumer = consumer;
        }