[Solved]I want to record video that nuitrack skeleton tracking

I want to record video that nuitrack skeleton tracking.
So, I bought Nuitrack perpetual license.

sensor : Intel realsense 435
O/S : Windows 10
Language : C++/C#
Tool : Visual studio 2019 community

Is there something like an example that allows video to be captured while the skeleton tracking program is running?

My process is roughly like below.

  1. When the socket program waits for a signal, it launches the nuitrack skeleton tracking viewer.
  2. When the stop signal comes in, we stop the nuitrack skeleton tracking viewer.

During this time, video is captured.
If there’s a good way, share it

Hi, this topic interests me too

How did you decide her?

In my case, I used ffmpeg.

Open Windows PowerShell, Execute below command.

ffmpeg -y -rtbufsize 100M -f gdigrab -framerate 30 -probesize 10M -draw_mouse 1 -i title="your_program.exe" -c:v libx264 -r 30 -preset ultrafast -tune zerolatency -crf 25 -pix_fmt yuv420p "output.mp4"

I don’t know much about the options. See the ffmpeg documentation if necessary.

1 Like