I have some signals in csv taken from an accelerometer. These come from vibration data of gearboxes.

With scipy I can easily get its frequency (in terms of acceleration) by applying the RFFT to the oscillogram (I am also using a Hanning Window)

And by dividing each magnitude point by it corresponding omega (Hz*2Pi) I can get its frequency in terms of velocity (also multiplying by 1000 to get mm/s).

I understand that I can't apply this same procedure to get an oscillogram in terms of velocity instead of acceleration.
Does anybody knows how to do this in python?
(Edited question, and thanks for the input)