We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccb970 commit cbba5c6Copy full SHA for cbba5c6
timeside/plugins/analyzer/externals/vamp_tempo.py
@@ -73,5 +73,6 @@ def unit():
73
def post_process(self):
74
super(VampTempo, self).post_process()
75
tempo = self.new_result(data_mode='value', time_mode='global')
76
- tempo.data_object.value = self.vamp_results['list'][0]['values']
+ if self.vamp_results['list']:
77
+ tempo.data_object.value = self.vamp_results['list'][0]['values']
78
self.add_result(tempo)
0 commit comments