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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added: include_root argument to%0A audinterface.Feature.process_folder(),%0A audinterface.Process.process_folder(),%0A audinterface.Segment.process_folder().%0A Returns relative file path%0A in index%0A if set to False.%0A Default value is True%0A* Changed: when audinterface.Feature%0A is instantiated with an audinterface.Segment%0A object that returns an empty index,%0A audinterface.Feature.process_*()%0A no longer return Index([], dtype='object')%0A but MultiIndex([], names=['file', 'start', 'end'])%0A* Fixed: preserve order of start and end values%0A as returned by the segmentation callable%0A in the index returned by audinterface.Segment%0A processing functions%0A* Fixed: precision of audinterface.utils.to_timedelta()%0A for pd.Timedelta objects as input,%0A e.g.%0A to_timedelta(pd.Timedelta('0 days 00:00:35.511437999'))%0A now returns%0A Timedelta('0 days 00:00:35.511437999')%0A instead of%0A Timedelta('0 days 00:00:35.511437').%0A This also affects the output of%0A audinterface.utils.signal_index()%0A* Fixed: preserve requested start and end values in%0A process_file(),%0A process_files(),%0A process_folder()%0A methods of audinterface.Process%0A and audinterface.Feature().%0A Before they were rounded%0A to the next sample%0A in the returned index