You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It defines a segmentation object that returns start and end values in a wrong order,
but still not totally meaning less:
>>>segment.process_file(file)
MultiIndex([('file.wav', '0 days 00:00:01', '0 days')],
names=['file', 'start', 'end'])
If this is used as a segment object inside audinterface.Process it will process a segment with 1 duration, it reads the segment at the correct position, but returns wrong timestamps:
Let's consider the following code:
It defines a segmentation object that returns
start
andend
values in a wrong order,but still not totally meaning less:
If this is used as a
segment
object insideaudinterface.Process
it will process a segment with 1 duration, it reads the segment at the correct position, but returns wrong timestamps:Expected behavior would have been:
The text was updated successfully, but these errors were encountered: