From 38a2924849ff41d317afda173bce6ecfb2acdbe6 Mon Sep 17 00:00:00 2001 From: drigato Date: Thu, 22 Jan 2015 11:08:34 -0500 Subject: [PATCH] SAAS-555: Analyzer calculates wrong cue out --- .../airtime_analyzer/airtime_analyzer/cuepoint_analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/airtime_analyzer/airtime_analyzer/cuepoint_analyzer.py b/python_apps/airtime_analyzer/airtime_analyzer/cuepoint_analyzer.py index 1e1dee6bd..8a99626c6 100644 --- a/python_apps/airtime_analyzer/airtime_analyzer/cuepoint_analyzer.py +++ b/python_apps/airtime_analyzer/airtime_analyzer/cuepoint_analyzer.py @@ -24,7 +24,7 @@ class CuePointAnalyzer(Analyzer): the unit test on the short m4a file fails. With the new setting, it gets the correct cue-in time and all the unit tests pass. ''' - command = [CuePointAnalyzer.SILAN_EXECUTABLE, '-b', '-F', '0.99', '-f', 'JSON', filename] + command = [CuePointAnalyzer.SILAN_EXECUTABLE, '-b', '-F', '0.99', '-f', 'JSON', '-t', '1.0', filename] try: results_json = subprocess.check_output(command, stderr=subprocess.STDOUT, close_fds=True) silan_results = json.loads(results_json)