##v0.2.1
Bug fixes
- fixed an off-by-one error in
librosa.onset.onset_strength()
- fixed a sign-flip error in
librosa.output.write_wav()
- removed all mutable object default parameters
Features
- added option
centering
tolibrosa.onset.onset_strength()
to resolve frame-centering issues with sliding window STFT - added frame-center correction to
librosa.core.frames_to_time()
andlibrosa.core.time_to_frames()
- added
librosa.util.pad_center()
- added
librosa.output.annotation()
- added
librosa.output.times_csv()
- accelerated
librosa.core.stft()
andifgram()
- added
librosa.util.frame
for in-place signal framing librosa.beat.beat_track
now supports user-supplied tempo- added
librosa.util.normalize()
- added
librosa.util.find_files()
- added
librosa.util.axis_sort()
- new module:
librosa.util()
librosa.filters.constant_q
now support padding- added boolean input support for
librosa.display.cmap()
- speedup in
librosa.core.cqt()
Other changes
- optimized default parameters for
librosa.onset.onset_detect
- set
librosa.filters.mel
parametern_mels=128
by default librosa.feature.chromagram()
andlogfsgram()
now use power instead of energylibrosa.display.specshow()
withy_axis='chroma'
now labels aspitch class
- set
librosa.core.cqt
parameterresolution=2
by default - set
librosa.feature.chromagram
parameteroctwidth=2
by default
Bug fixes
- fixed default
librosa.core.stft, istft, ifgram
to match specification - fixed a float->int bug in peak_pick
- better memory efficiency
librosa.segment.recurrence_matrix
corrects for width suppression- fixed a divide-by-0 error in the beat tracker
- fixed a bug in tempo estimation with short windows
librosa.feature.sync
now supports 1d arrays- fixed a bug in beat trimming
- fixed a bug in
librosa.core.stft
when calculating window size - fixed
librosa.core.resample
to support stereo signals
Features
- added filters option to cqt
- added window function support to istft
- added an IPython notebook demo
- added
librosa.features.delta
for computing temporal difference features - new
examples
scripts: tuning, hpss - added optional trimming to
librosa.segment.stack_memory
librosa.onset.onset_strength
now takes generic spectrogram functionfeature
- compute reference power directly in
librosa.core.logamplitude
- color-blind-friendly default color maps in
librosa.display.cmap
librosa.core.onset_strength
now accepts an aggregator- added
librosa.feature.perceptual_weighting
- added tuning estimation to
librosa.feature.chromagram
- added
librosa.core.A_weighting
- vectorized frequency converters
- added
librosa.core.cqt_frequencies
to get CQT frequencies librosa.core.cqt
basic constant-Q transform implementationlibrosa.filters.cq_to_chroma
to convert log-frequency to chroma- added
librosa.core.fft_frequencies
librosa.decompose.hpss
can now return masking matrices- added reversal for
librosa.segment.structure_feature
- added
librosa.core.time_to_frames
- added cent notation to
librosa.core.midi_to_note
- added time-series or spectrogram input options to
chromagram
,logfsgram
,melspectrogram
, andmfcc
- new module:
librosa.display
librosa.output.segment_csv
=>librosa.output.frames_csv
- migrated frequency converters to
librosa.core
- new module:
librosa.filters
librosa.decompose.hpss
now supports complex-valued STFT matriceslibrosa.decompose.decompose()
supportssklearn
decomposition objects- added
librosa.core.phase_vocoder
- new module:
librosa.onset
; migrated onset strength fromlibrosa.beat
- added
librosa.core.pick_peaks
librosa.core.load()
supports offset and duration parameterslibrosa.core.magphase()
to separate magnitude and phase from a complex matrix- new module:
librosa.segment
Other changes
onset_estimate_bpm => estimate_tempo
- removed
n_fft
fromlibrosa.core.istft()
librosa.core.mel_frequencies
returnsn_mels
values by default- changed default
librosa.decompose.hpss
window to 31 - disabled onset de-trending by default in
librosa.onset.onset_strength
- added complex-value warning to
librosa.display.specshow
- broke compatibilty with
ifgram.m
;librosa.core.ifgram
now matchesstft
- changed default beat tracker settings
- migrated
hpss
intolibrosa.decompose
- changed default
librosa.decompose.hpss
power parameter to2.0
librosa.core.load()
now returns single-precision by default- standardized
n_fft=2048
,hop_length=512
for most functions - refactored tempo estimator
Initial public release.