Hello!
I am reproducing a paper by Salomon & Bello, and need to make transformations according to the jams files in UrbanSound8K-JAMS, for which I am using muda.replay().
It seems that they used a previous version of Background noise which didn't use start and stop parameters, probably prior to this commit. I am thinking of just setting a default value for the case where there is no start and stop in the status, something like this:
try:
start = state['start']
stop = state['stop']
except KeyError:
start = 0
stop = len(mudabox._audio['y'])
I will post if this works fine latter on. Would appreciate some feedback on this.
Hello!
I am reproducing a paper by Salomon & Bello, and need to make transformations according to the jams files in UrbanSound8K-JAMS, for which I am using
muda.replay().It seems that they used a previous version of Background noise which didn't use start and stop parameters, probably prior to this commit. I am thinking of just setting a default value for the case where there is no start and stop in the status, something like this:
I will post if this works fine latter on. Would appreciate some feedback on this.