cfff799d604ea57385ea2c0e49d6ed9662a38a17,librosa/core/constantq.py,,cqt,#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#Any#,22

Before Change


        res_type = "sinc_fastest"

    // Make sure our hop is long enough to support the bottom octave
    if np.mod(hop_length, 2**n_octaves) != 0 or hop_length < 2**n_octaves:
        raise ParameterError("hop_length must be a positive integer multiple of 2^{0:d} "
                            "for {0:d}-octave CQT".format(n_octaves))

    // Now do the recursive bit
    fft_basis, n_fft, filter_lengths = __fft_filters(sr, fmin_t,
                                                     n_filters,
                                                     bins_per_octave,
                                                     tuning,

After Change



    // Make sure our hop is long enough to support the bottom octave
    num_twos = __num_two_factors(hop_length)
    if num_twos < n_octaves - 1:
        raise ParameterError("hop_length must be a positive integer multiple of 2^{0:d} "
                            "for {1:d}-octave CQT".format(n_octaves - 1, n_octaves))

    // Now do the recursive bit
    fft_basis, n_fft, filter_lengths = __fft_filters(sr, fmin_t,
                                                     n_filters,
                                                     bins_per_octave,
                                                     tuning,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 6

Instances


Project Name: librosa/librosa
Commit Name: cfff799d604ea57385ea2c0e49d6ed9662a38a17
Time: 2015-07-01
Author: ebattenberg@gmail.com
File Name: librosa/core/constantq.py
Class Name:
Method Name: cqt


Project Name: librosa/librosa
Commit Name: 9b95e0f07b60b6a144893dcc506dfaf90db61c95
Time: 2020-05-18
Author: bmcfee@users.noreply.github.com
File Name: librosa/feature/utils.py
Class Name:
Method Name: stack_memory


Project Name: librosa/librosa
Commit Name: 24d6f5e42d775949e191122091826eefa7bf1246
Time: 2020-06-27
Author: bmcfee@users.noreply.github.com
File Name: librosa/core/spectrum.py
Class Name:
Method Name: stft


Project Name: librosa/librosa
Commit Name: 2f790fb7a68e293fef67e86a18f5a4224c492bd1
Time: 2019-12-19
Author: gsus4onc@gmail.com
File Name: librosa/feature/spectral.py
Class Name:
Method Name: rms