Upload edit\Qwen3-TTS-test\.venv\Lib\site-packages\librosa\__init__.pyi with huggingface_hub
Browse files
edit//Qwen3-TTS-test//.venv//Lib//site-packages//librosa//__init__.pyi
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from . import core
|
| 2 |
+
from . import beat
|
| 3 |
+
from . import decompose
|
| 4 |
+
from . import display
|
| 5 |
+
from . import effects
|
| 6 |
+
from . import feature
|
| 7 |
+
from . import filters
|
| 8 |
+
from . import onset
|
| 9 |
+
from . import segment
|
| 10 |
+
from . import sequence
|
| 11 |
+
from . import util
|
| 12 |
+
|
| 13 |
+
from ._cache import cache as cache
|
| 14 |
+
|
| 15 |
+
from .util.exceptions import (
|
| 16 |
+
LibrosaError as LibrosaError,
|
| 17 |
+
ParameterError as ParameterError,
|
| 18 |
+
)
|
| 19 |
+
from .util.files import example as example, ex as ex
|
| 20 |
+
from .util.files import cite as cite
|
| 21 |
+
|
| 22 |
+
from .version import show_versions as show_versions
|
| 23 |
+
|
| 24 |
+
from .core import (
|
| 25 |
+
frames_to_samples as frames_to_samples,
|
| 26 |
+
frames_to_time as frames_to_time,
|
| 27 |
+
samples_to_frames as samples_to_frames,
|
| 28 |
+
samples_to_time as samples_to_time,
|
| 29 |
+
time_to_samples as time_to_samples,
|
| 30 |
+
time_to_frames as time_to_frames,
|
| 31 |
+
blocks_to_samples as blocks_to_samples,
|
| 32 |
+
blocks_to_frames as blocks_to_frames,
|
| 33 |
+
blocks_to_time as blocks_to_time,
|
| 34 |
+
note_to_hz as note_to_hz,
|
| 35 |
+
note_to_midi as note_to_midi,
|
| 36 |
+
midi_to_hz as midi_to_hz,
|
| 37 |
+
midi_to_note as midi_to_note,
|
| 38 |
+
hz_to_note as hz_to_note,
|
| 39 |
+
hz_to_midi as hz_to_midi,
|
| 40 |
+
hz_to_mel as hz_to_mel,
|
| 41 |
+
hz_to_octs as hz_to_octs,
|
| 42 |
+
hz_to_fjs as hz_to_fjs,
|
| 43 |
+
mel_to_hz as mel_to_hz,
|
| 44 |
+
octs_to_hz as octs_to_hz,
|
| 45 |
+
A4_to_tuning as A4_to_tuning,
|
| 46 |
+
tuning_to_A4 as tuning_to_A4,
|
| 47 |
+
fft_frequencies as fft_frequencies,
|
| 48 |
+
cqt_frequencies as cqt_frequencies,
|
| 49 |
+
mel_frequencies as mel_frequencies,
|
| 50 |
+
tempo_frequencies as tempo_frequencies,
|
| 51 |
+
fourier_tempo_frequencies as fourier_tempo_frequencies,
|
| 52 |
+
A_weighting as A_weighting,
|
| 53 |
+
B_weighting as B_weighting,
|
| 54 |
+
C_weighting as C_weighting,
|
| 55 |
+
D_weighting as D_weighting,
|
| 56 |
+
Z_weighting as Z_weighting,
|
| 57 |
+
frequency_weighting as frequency_weighting,
|
| 58 |
+
multi_frequency_weighting as multi_frequency_weighting,
|
| 59 |
+
samples_like as samples_like,
|
| 60 |
+
times_like as times_like,
|
| 61 |
+
midi_to_svara_h as midi_to_svara_h,
|
| 62 |
+
midi_to_svara_c as midi_to_svara_c,
|
| 63 |
+
note_to_svara_h as note_to_svara_h,
|
| 64 |
+
note_to_svara_c as note_to_svara_c,
|
| 65 |
+
hz_to_svara_h as hz_to_svara_h,
|
| 66 |
+
hz_to_svara_c as hz_to_svara_c,
|
| 67 |
+
load as load,
|
| 68 |
+
stream as stream,
|
| 69 |
+
to_mono as to_mono,
|
| 70 |
+
resample as resample,
|
| 71 |
+
get_duration as get_duration,
|
| 72 |
+
get_samplerate as get_samplerate,
|
| 73 |
+
autocorrelate as autocorrelate,
|
| 74 |
+
lpc as lpc,
|
| 75 |
+
zero_crossings as zero_crossings,
|
| 76 |
+
clicks as clicks,
|
| 77 |
+
tone as tone,
|
| 78 |
+
chirp as chirp,
|
| 79 |
+
mu_compress as mu_compress,
|
| 80 |
+
mu_expand as mu_expand,
|
| 81 |
+
stft as stft,
|
| 82 |
+
istft as istft,
|
| 83 |
+
magphase as magphase,
|
| 84 |
+
iirt as iirt,
|
| 85 |
+
reassigned_spectrogram as reassigned_spectrogram,
|
| 86 |
+
phase_vocoder as phase_vocoder,
|
| 87 |
+
perceptual_weighting as perceptual_weighting,
|
| 88 |
+
power_to_db as power_to_db,
|
| 89 |
+
db_to_power as db_to_power,
|
| 90 |
+
amplitude_to_db as amplitude_to_db,
|
| 91 |
+
db_to_amplitude as db_to_amplitude,
|
| 92 |
+
fmt as fmt,
|
| 93 |
+
pcen as pcen,
|
| 94 |
+
griffinlim as griffinlim,
|
| 95 |
+
estimate_tuning as estimate_tuning,
|
| 96 |
+
pitch_tuning as pitch_tuning,
|
| 97 |
+
piptrack as piptrack,
|
| 98 |
+
yin as yin,
|
| 99 |
+
pyin as pyin,
|
| 100 |
+
cqt as cqt,
|
| 101 |
+
hybrid_cqt as hybrid_cqt,
|
| 102 |
+
pseudo_cqt as pseudo_cqt,
|
| 103 |
+
icqt as icqt,
|
| 104 |
+
griffinlim_cqt as griffinlim_cqt,
|
| 105 |
+
vqt as vqt,
|
| 106 |
+
salience as salience,
|
| 107 |
+
interp_harmonics as interp_harmonics,
|
| 108 |
+
f0_harmonics as f0_harmonics,
|
| 109 |
+
get_fftlib as get_fftlib,
|
| 110 |
+
set_fftlib as set_fftlib,
|
| 111 |
+
key_to_degrees as key_to_degrees,
|
| 112 |
+
key_to_notes as key_to_notes,
|
| 113 |
+
mela_to_degrees as mela_to_degrees,
|
| 114 |
+
mela_to_svara as mela_to_svara,
|
| 115 |
+
thaat_to_degrees as thaat_to_degrees,
|
| 116 |
+
list_mela as list_mela,
|
| 117 |
+
list_thaat as list_thaat,
|
| 118 |
+
fifths_to_note as fifths_to_note,
|
| 119 |
+
interval_to_fjs as interval_to_fjs,
|
| 120 |
+
interval_frequencies as interval_frequencies,
|
| 121 |
+
pythagorean_intervals as pythagorean_intervals,
|
| 122 |
+
plimit_intervals as plimit_intervals,
|
| 123 |
+
)
|