How to Correlate Two Audio Events (Detect if they are Similar) in Python
问题 For my project I have to detect if two audio files are similar and when the first audio file is contained in the second. My problem is that I tried to use librosa the numpy.correlate. I don't know if I'm doing it in the right way. How can I detect if audio is contained in another audio file? import librosa import numpy long_audio_series, long_audio_rate = librosa.load("C:\\Users\\Jerry\\Desktop\\long_file.mp3") short_audio_series, short_audio_rate = librosa.load("C:\\Users\\Jerry\\Desktop\