I moved to the Dev branch to run my program and I got a difference from the Master branch when using AubioPitch : the time vector seems to be now in sample while before it was in second.
Master branch :
file_decoder = get_processor('gst_dec')(nomFichier, start=deb, duration=duree)
inst_pitch = get_processor('aubio_pitch')()
pipe = (file_decoder | inst_pitch )
pipe.run()
res_pitch_hz = inst_pitch.results['aubio_pitch.pitch']
print inst_pitch.time #### --> in second #####
Dev branch :
file_decoder = get_processor('file_decoder')
decoder = file_decoder(uri=nomFichier, start=deb, duration=duree)
inst_pitch = get_processor('aubio_pitch')()
pipe = (decoder | inst_pitch)
pipe.run()
res_pitch_hz = inst_pitch.results['aubio_pitch.pitch']
print inst_pitch.time ##### --> NOT in second ####