Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is to avoid this code breaking against forthcoming version 1.0 o…
…f librosa. Old code caused warning message: FutureWarning: get_duration() keyword argument 'filename' has been renamed to 'path' in version 0.10.0. This alias will be removed in version 1.0. new_column = [librosa.get_duration(filename=x) for x in minds["path"]] it should be: new_column = [librosa.get_duration(path=x) for x in minds["path"]]
- Loading branch information