JakubKoralewski / cursor-recorder

Records mouse movement to a file. Use with OBS Studio as an external Python script or using the standalone Python script. Use the After Effects script to import the generated cursor movement data.
https://obsproject.com/forum/resources/obs-cursor-recorder.789/
Mozilla Public License 2.0
16 stars 0 forks source link

Add obs script #3

Closed JakubKoralewski closed 5 years ago

JakubKoralewski commented 5 years ago

The goal of this PR was simplicity. Having an OBS script will make it:

  1. Start and stop right on time. The cursor data will start being gathered at start of recording and stop at it stopping.

  2. More efficient. The cursor data will only be gathered when a frame is being processed. Previously, it was based on a hardcoded refresh rate that could be completely different from the video frame rate.

    It is not tested at all. It can and probably will have issues.

JakubKoralewski commented 5 years ago

Wow! Great stuff!