how to run YIN starting at sound start + 0.25s?
Posted: Wed Jan 24, 2018 10:51 pm
In my Extended Pitch Detect plugin I'm selecting 5s of audio from one track starting at the beginning of the track and the plugin is generating headers and one row of data that looks like this:
I'd like to generate 7 more rows of data incrementing the start time by 0.25s with each row.
yin operates on the start of the sound for a specific duration: (yin sound minstep maxstep stepsize)
see: https://www.cs.cmu.edu/~rbd/doc/nyquist ... l#index575
So to generate the next row looks like I need to pass it a new sound based on the existing sound starting at 0.25s.
Reading this section of Nyquist doc am not seeing an obvious way to clip 0.25 from the beginning of a sound.
https://www.cs.cmu.edu/~rbd/doc/nyquist/part8.html
Anyone know how to do this?
Thanks!
Code: Select all
time duration frequency RMS Confidence
0.000 0.500 309.40 0.295 0.992
yin operates on the start of the sound for a specific duration: (yin sound minstep maxstep stepsize)
see: https://www.cs.cmu.edu/~rbd/doc/nyquist ... l#index575
So to generate the next row looks like I need to pass it a new sound based on the existing sound starting at 0.25s.
Reading this section of Nyquist doc am not seeing an obvious way to clip 0.25 from the beginning of a sound.
https://www.cs.cmu.edu/~rbd/doc/nyquist/part8.html
Anyone know how to do this?
Thanks!