Skip to content

Release v1.1.0

Choose a tag to compare

@github-actions github-actions released this 31 Jul 08:05
· 42 commits to main since this release
9ff606a
  • 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