Librosa

Latest version: v0.11.0

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 7

0.7.0

------
2019-07-07

Note: the 0.7 series will be the last to officially support Python 2.7.


New features
- `772`_ `librosa.stream`: Stream generator to process long audio files into smaller pieces. *Brian McFee*
- `845`_ `librosa.load`: Replaced the default audio decoder with `pysoundfile`, and only use `audioread` as backup. *Brian McFee*
- `843`_ `librosa.griffinlim`: Phase retrieval from magnitude spectrograms using the (accelerated) Griffin-Lim method. *Brian McFee*
- `843`_ `librosa.feature.inverse`: New module for feature inversion, based on the Griffin-Lim phase retrieval algorithm. Includes `mel_to_audio` and `mfcc_to_audio`. *Brian McFee*
- `725`_ `librosa.lpc`: Linear prediction coefficients (LPC). *Adam Weiss*
- `907`_ `librosa.sequence.rqa`: Recurrence Quantification Analysis (RQA) for sequence alignment. *Brian McFee*
- `739`_ `librosa.beat.plp`: Predominant local pulse (PLP) for variable-tempo beat tracking. *Brian McFee*
- `894`_ `librosa.feature.fourier_tempogram`: Fourier Tempogram for representing rhythm in the frequency domain. *Brian McFee*
- `891`_ `librosa.pcen` Per-channel energy normalization (PCEN) now allows logarithmic range compression at the limit power->0. *Vincent Lostanlen*
- `863`_ `librosa.effects.pitch_shift` supports custom resampling modes. *Taewoon Kim*
- `857`_ `librosa.cqt` and `librosa.icqt` Forward and inverse constant-Q transform now support custom resampling modes. *Brian McFee*
- `842`_ `librosa.segment.path_enhance`: Near-diagonal path enhancement for recurrence, self- or cross-similarity matrices. *Brian McFee*
- `840`_ `librosa.segment.recurrence_matrix` now supports a keyword argument, `self=False`. If set to `True`, the recurrence matrix includes self-loops. *Brian McFee*
- `776`_ `librosa.piptrack` now supports a keyword argument, `ref=None`, allowing users to override the reference thresholding behavior for determining which bins correspond to pitches. *Brian McFee*
- `770`_ `librosa.segment.cross_similarity`: Cross-similarity function for comparing two feature sequences. *Rachel Bittner, Brian McFee*
- `709`_ `librosa.onset.onset_strength_multi` now supports a user-specified reference spectrum via the `ref` keyword argument. *Brian McFee*
- `576`_ `librosa.resample` now supports `mode='polyphase'`. *Brian McFee*
- `519`_ `librosa.onset.onset_strength_multi`: Setting `aggregate=False` disables the aggregation of onset strengths across frequency bins. *Brian McFee*


Bug fixes
- `900`_ `librosa.effects.pitch_shift` now preserves length. *Vincent Lostanlen*
- `891`_ `librosa.pcen` Dynamic range compression in PCEN is more numerically stable for small values of the exponent. *Vincent Lostanlen*
- `888`_ `librosa.ifgram` Instantaneous frequency spectrogram now correctly estimates center frequencies when using windows other than `hann`. *Brian McFee*
- `869`_ `librosa.sequence.dtw` Fixed a bug in dynamic time warping when `subseq=True`. *Viktor Andreevitch Morozov*
- `851`_ `librosa.pcen` now initializes its autoregressive filtering in the steady state, not with silence. *Jan Schlüter, Brian McFee*
- `833`_ `librosa.segment.recurrence_matrix`: `width` parameter now cannot exceed data length. *Brian McFee*
- `825`_ Filter bank constructors `mel`, `chroma`, `constant_q`, and `cq_to_chroma` are now type-stable. *Vincent Lostanlen, Brian McFee*
- `802`_ `librosa.icqt` Inverse constant-Q transform has been completely rewritten and is more numerically stable. *Brian McFee*

0.6.3

------
2019-02-13

Bug fixes
- `806`_ Fixed a bug in `librosa.estimate_tuning`. *robrib, Monsij Biswal, Brian McFee*
- `799`_ Enhanced stability of elliptical filter implementation in `iirt`. *Frank Zalkow*

New features
- `766`_ made smoothing optional in `librosa.feature.chroma_cens`. *Kyungyun Lee*
- `760`_ allow explicit units for time axis decoration in `librosa.display`. *Kyungyun Lee*

Other changes
- `813`_ updated `librosa.load` documentation to cover bit depth truncation. *Andy Sarroff*
- `805`_ updated documentation for `librosa.localmax`. *Brian McFee*
- `801`_ renamed `librosa.feature.rmse` to `librosa.feature.rms`. *nullmightybofo*
- `793`_ updated comments in `librosa.stft`. *Dan Ellis*
- `791`_ updated documentation for `write_wav`. *Brian McFee*
- `790`_ removed dependency on deprecated `imp` module. *Brian McFee*
- `787`_ fixed typos in CONTRIBUTING documentation. *Vincent Lostanlen*
- `785`_ removed all run-time assertions in favor of proper exceptions. *Brian McFee*
- `783`_ migrated test infrastructure from `nose` to `pytest`. *Brian McFee*
- `777`_ include LICENSE file in source distribution. *toddrme2178*
- `769`_ updated documentation in `librosa.istft`. *Shayenne Moura*

.. _813: https://github.com/librosa/librosa/issues/813
.. _806: https://github.com/librosa/librosa/issues/806
.. _805: https://github.com/librosa/librosa/issues/805
.. _801: https://github.com/librosa/librosa/issues/801
.. _799: https://github.com/librosa/librosa/issues/799
.. _793: https://github.com/librosa/librosa/issues/793
.. _791: https://github.com/librosa/librosa/issues/791
.. _790: https://github.com/librosa/librosa/issues/790
.. _787: https://github.com/librosa/librosa/issues/787
.. _785: https://github.com/librosa/librosa/issues/785
.. _783: https://github.com/librosa/librosa/issues/783
.. _777: https://github.com/librosa/librosa/issues/777
.. _769: https://github.com/librosa/librosa/issues/769
.. _766: https://github.com/librosa/librosa/issues/766
.. _760: https://github.com/librosa/librosa/issues/760

0.6.2

------
2018-08-09

Bug fixes
- `730`_ Fixed cache support for `joblib>=0.12`. *Matt Vollrath*

New features
- `735`_ Added `librosa.times_like` and `librosa.samples_like` to generate time and sample indices
corresponding to an existing feature matrix or shape specification. *Steve Tjoa*
- `750`_, `753`_ Added `librosa.tone` and `librosa.chirp` signal generators. *Ziyao Wei*

Other changes
- `727`_ updated documentation for `librosa.get_duration`. *Zhen Wang*
- `731`_ fixed a typo in documentation for `librosa.fft_frequencies`. *Ziyao Wei*
- `734`_ expanded documentation for `librosa.feature.spectrall_rolloff`. *Ziyao Wei*
- `751`_ fixed example documentation for proper handling of phase in dB-scaling. *Vincent Lostanlen*
- `755`_ forward support and future-proofing for fancy indexing with `numpy>1.15`. *Brian McFee*

.. _730: https://github.com/librosa/librosa/pull/730
.. _735: https://github.com/librosa/librosa/pull/735
.. _750: https://github.com/librosa/librosa/pull/750
.. _753: https://github.com/librosa/librosa/pull/753
.. _727: https://github.com/librosa/librosa/pull/727
.. _731: https://github.com/librosa/librosa/pull/731
.. _734: https://github.com/librosa/librosa/pull/734
.. _751: https://github.com/librosa/librosa/pull/751
.. _755: https://github.com/librosa/librosa/pull/755

0.6.1

------
2018-05-24

Bug fixes
- `677`_ `librosa.util.find_files` now correctly de-duplicates files on case-insensitive platforms. *Brian McFee*
- `713`_ `librosa.util.valid_intervals` now checks for non-negative durations. *Brian McFee, Dana Lee*
- `714`_ `librosa.util.match_intervals` can now explicitly fail when no matches are possible. *Brian McFee, Dana Lee*

New features
- `679`_, `708`_ `librosa.pcen`, per-channel energy normalization. *Vincent Lostanlen, Brian McFee*
- `682`_ added different DCT modes to `librosa.feature.mfcc`. *Brian McFee*
- `687`_ `librosa.display` functions now accept target axes. *Pius Friesch*
- `688`_ numba-accelerated `librosa.util.match_events`. *Dana Lee*
- `710`_ `librosa.sequence` module and Viterbi decoding for generative, discriminative, and multi-label hidden Markov models. *Brian McFee*
- `714`_ `librosa.util.match_intervals` now supports tie-breaking for disjoint query intervals. *Brian McFee*

Other changes
- `677`_, `705`_ added continuous integration testing for Windows. *Brian McFee*, *Ryuichi Yamamoto*
- `680`_ updated display module tests to support matplotlib 2.1. *Brian McFee*
- `684`_ corrected documentation for `librosa.stft` and `librosa.ifgram`. *Keunwoo Choi*
- `699`_, `701`_ corrected documentation for `librosa.filters.semitone_filterbank` and `librosa.filters.mel_frequencies`. *Vincent Lostanlen*
- `704`_ eliminated unnecessary side-effects when importing `librosa.display`. *Brian McFee*
- `707`_ improved test coverage for dynamic time warping. *Brian McFee*
- `714`_ `librosa.util.match_intervals` matching logic has changed from raw intersection to Jaccard similarity. *Brian McFee*


API Changes and compatibility
- `716`_ `librosa.dtw` has moved to `librosa.sequence.dtw`, and `librosa.fill_off_diagonal` has moved to
`librosa.util.fill_off_diagonal`. *Brian McFee*

.. _716: https://github.com/librosa/librosa/pull/716
.. _714: https://github.com/librosa/librosa/pull/714
.. _713: https://github.com/librosa/librosa/pull/713
.. _710: https://github.com/librosa/librosa/pull/710
.. _708: https://github.com/librosa/librosa/pull/708
.. _707: https://github.com/librosa/librosa/pull/707
.. _705: https://github.com/librosa/librosa/pull/705
.. _704: https://github.com/librosa/librosa/pull/704
.. _701: https://github.com/librosa/librosa/pull/701
.. _699: https://github.com/librosa/librosa/pull/699
.. _688: https://github.com/librosa/librosa/pull/688
.. _687: https://github.com/librosa/librosa/pull/687
.. _684: https://github.com/librosa/librosa/pull/684
.. _682: https://github.com/librosa/librosa/pull/682
.. _680: https://github.com/librosa/librosa/pull/680
.. _679: https://github.com/librosa/librosa/pull/679
.. _677: https://github.com/librosa/librosa/pull/677

0.6

====

0.6.0

------
2018-02-17

Bug fixes
- `663`_ fixed alignment errors in `librosa.feature.delta`. *Brian McFee*
- `646`_ `librosa.effects.trim` now correctly handles all-zeros signals. *Rimvydas Naktinis*
- `634`_ `librosa.stft` now conjugates the correct half of the spectrum. *Brian McFee*
- `630`_ fixed display decoration errors with `cqt_note` mode. *Brian McFee*
- `619`_ `librosa.effects.split` no longer returns out-of-bound sample indices. *Brian McFee*
- `616`_ Improved `librosa.util.valid_audio` to avoid integer type errors. *Brian McFee*
- `600`_ CQT basis functions are now correctly centered. *Brian McFee*
- `597`_ fixed frequency bin centering in `librosa.display.specshow`. *Brian McFee*
- `594`_ `librosa.dtw` fixed a bug which ignored weights when `step_sizes_sigma` did not match length. *Jackie Wu*
- `593`_ `librosa.stft` properly checks for valid input signals. *Erik Peterson*
- `587`_ `librosa.show_versions` now shows correct module names. *Ryuichi Yamamoto*

New features
- `648`_ `librosa.feature.spectral_flatness`. *Keunwoo Choi*
- `633`_ `librosa.feature.tempogram` now supports multi-band analysis. *Brian McFee*
- `439`_ `librosa.iirt` implements the multi-rate filterbank from Chroma Toolbox. *Stefan Balke*
- `435`_ `librosa.icqt` inverse constant-Q transform (unstable). *Brian McFee*

Other changes
- `674`_ Improved `write_wav` documentation with cross-references to `soundfile`. *Brian McFee*
- `671`_ Warn users when phase information is lost in dB conversion. *Carl Thome*
- `666`_ Expanded documentation for `librosa.load`'s resampling behavior. *Brian McFee*
- `656`_ Future-proofing numpy data type checks. *Carl Thome*
- `642`_ Updated unit tests for compatibility with matplotlib 2.1. *Brian McFee*
- `637`_ Improved documentation for advanced I/O. *Siddhartha Kumar*
- `636`_ `librosa.util.normalize` now preserves data type. *Brian McFee*
- `632`_ refined the validation requirements for `librosa.util.frame`. *Brian McFee*
- `628`_ all time/frequency conversion functions preserve input shape. *Brian McFee*
- `625`_ Numba is now a hard dependency. *Brian McFee*
- `622`_ `librosa.hz_to_midi` documentation corrections. *Carl Thome*
- `621`_ `dtw` is now symmetric with respect to input arguments. *Stefan Balke*
- `620`_ Updated requirements to prevent installation with (incompatible) sklearn 0.19.0. *Brian McFee*
- `609`_ Improved documentation for `librosa.segment.recurrence_matrix`. *Julia Wilkins*
- `598`_ Improved efficiency of `librosa.decompose.nn_filter`. *Brian McFee*
- `574`_ `dtw` now supports pre-computed distance matrices. *Curtis Hawthorne*

API changes and compatibility
- `627`_ The following functions and features have been removed:
- `real=` parameter in `cqt`
- `logamplitude` (replaced by `amplitude_to_db`)
- `beat.estimate_tempo` (replaced by `beat.tempo`)
- `n_fft=` parameter to `feature.rmse`
- `ref_power=` parameter to `power_to_db`

- The following features have been deprecated, and will be removed in 0.7.0:
- `trim=` parameter to `feature.delta`

- `616`_ `write_wav` no longer supports integer-typed waveforms. This is due to enforcing
consistency with `librosa.util.valid_audio` checks elsewhere in the codebase. If you have existing
code that requires integer-valued output, consider using `soundfile.write` instead.

.. _674: https://github.com/librosa/librosa/pull/674
.. _671: https://github.com/librosa/librosa/pull/671
.. _663: https://github.com/librosa/librosa/pull/663
.. _646: https://github.com/librosa/librosa/pull/646
.. _634: https://github.com/librosa/librosa/pull/634
.. _630: https://github.com/librosa/librosa/pull/630
.. _619: https://github.com/librosa/librosa/pull/619
.. _616: https://github.com/librosa/librosa/pull/616
.. _600: https://github.com/librosa/librosa/pull/600
.. _597: https://github.com/librosa/librosa/pull/597
.. _594: https://github.com/librosa/librosa/pull/594
.. _593: https://github.com/librosa/librosa/pull/593
.. _587: https://github.com/librosa/librosa/pull/587
.. _648: https://github.com/librosa/librosa/pull/648
.. _633: https://github.com/librosa/librosa/pull/633
.. _439: https://github.com/librosa/librosa/pull/439
.. _435: https://github.com/librosa/librosa/pull/435
.. _666: https://github.com/librosa/librosa/pull/666
.. _656: https://github.com/librosa/librosa/pull/656
.. _642: https://github.com/librosa/librosa/pull/642
.. _637: https://github.com/librosa/librosa/pull/637
.. _636: https://github.com/librosa/librosa/pull/636
.. _632: https://github.com/librosa/librosa/pull/632
.. _628: https://github.com/librosa/librosa/pull/628
.. _625: https://github.com/librosa/librosa/pull/625
.. _622: https://github.com/librosa/librosa/pull/622
.. _621: https://github.com/librosa/librosa/pull/621
.. _620: https://github.com/librosa/librosa/pull/620
.. _609: https://github.com/librosa/librosa/pull/609
.. _598: https://github.com/librosa/librosa/pull/598
.. _574: https://github.com/librosa/librosa/pull/574
.. _627: https://github.com/librosa/librosa/pull/627

Page 4 of 7

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.