From: Thomas Fillon Date: Tue, 15 Oct 2013 22:29:35 +0000 (+0200) Subject: Add Processor a post_process() function. analyzer will produce the Results during... X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ba8fb9e02e27ac70b50afbb5e713ea25067cecd4;p=timeside-diadems.git Add Processor a post_process() function. analyzer will produce the Results during that post-process --- diff --git a/timeside/analyzer/irit_speech_4hz.py b/timeside/analyzer/irit_speech_4hz.py index 8d05487..1e5e876 100644 --- a/timeside/analyzer/irit_speech_4hz.py +++ b/timeside/analyzer/irit_speech_4hz.py @@ -101,7 +101,7 @@ class IRITSpeech4Hz(Analyzer): return frames, eod - def release(self): + def post_process(self): ''' ''' diff --git a/timeside/analyzer/irit_speech_entropy.py b/timeside/analyzer/irit_speech_entropy.py index bc034b4..8f84544 100644 --- a/timeside/analyzer/irit_speech_entropy.py +++ b/timeside/analyzer/irit_speech_entropy.py @@ -62,7 +62,7 @@ class IRITSpeechEntropy(Analyzer): self.entropyValue.append(entropy(frames)) return frames, eod - def release(self): + def post_process(self): entropyValue = array(self.entropyValue) w = self.modulLen * self.samplerate() / self.blocksize()