I am doing signal processing, and using librosa.load
to load audio (librosa). But I am confused about the parameters in librosa.load(path, *, sr=22050, mono=True, offset=0.0, duration=None)
.
My question is the offset
parameter, the offset in this reference means starting N seconds into the audio. However, does it actually call onset? Normally, the onset refers to the beginning of a musical note or the sound, and offset means the ending of a musical note.
Or perhaps I misunderstanding it?