We recorded the data processing signal that is flowing in the air in the .wav file. I want to find the start and end time of each data processing in the signal.
from scipy.io.wavfile import read
sampling_rate, data = read('signal.wav')
I found a similar example ( How to find what time a part of audio starts and ends in another audio? and Pinpoint the sample number or point when the sound was received) but they use voice recognization to find the start and end time of data processing in the .wav file. In my .wav file, I don't have any voice. I have only a noisy sound signal.
Is it possible to find the start and end time of data processing?