Hello,
I am using the command:
chroma_d = librosa.feature.chroma_stft(y=audio, sr=sample_rate)
Can you tell me what could cause the warning message:
\Python\lib\site-packages\librosa\core\pitch.py:146: UserWarning: Trying to estimate tuning from empty frequency set.
warnings.warn('Trying to estimate tuning from empty frequency set.')
I think this warning message is causing my "alive_bar" to get stuck
My usage is extracting Chroma features using the line above, from labeled data, read from a csv file.
Let me know what other information you may require to help with an answer to this question as it is causing my alive_bar status to get stuck in PyCharm:
with alive_bar(items, force_tty=True) as bar:
Thanks!