Discussion about VideoRotation
Posté 5 days ago @ 3:57 pm
Source code is available here:
https://github.com/DJCEL/VirtualDJ-VideoRotation-Win64
https://github.com/DJCEL/VirtualDJ-VideoRotation-Win64
Posté 5 days ago @ 4:36 pm
This is good, thank you
Posté 4 days ago @ 4:33 pm
I'll second that, a bit of beat-aware script automation [locally] to change axis is the icing on the cake, the cherry on the cake would be rotation speed as effect_beats, but I can probably work it out with script or source.
I look forward to poking at the sauce. I'm not really at any level with dev'ing video plugins , but I can bodge stuff.
I look forward to poking at the sauce. I'm not really at any level with dev'ing video plugins , but I can bodge stuff.
Posté 4 days ago @ 5:31 pm
To have a rotation based on one beat, an idea is:
For 'm_Speed' beats :
#include <math.h> // for the function floor()
double x = SongPosBeats - floor(SongPosBeats);
m_Angle = float(x) * 360.0f;
For 'm_Speed' beats :
double x;
if (m_Speed == 0) x = 0;
else x = fmod(SongPosBeats, m_Speed) / m_Speed;
m_Angle = float(x) * 360.0f;
Posté 4 days ago @ 7:04 pm
@DJCEL, you have a PM !
Posté 3 days ago @ 2:55 pm