Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Save Kinect's color camera video stream in to .avi video

Tags:

c#

wpf

kinect

I want to save the video streams that is captured by Kinect's Color camera to .avi format video, I tried many ways of doing this but nothing was succeeded. Has anyone successfully done this? I'm using Kinect for Windows SDK and WFP for application development

like image 238
Shanaka Avatar asked Nov 03 '22 20:11

Shanaka


1 Answers

I guess the easiest workaround would be to use a screen capture software like http://camstudio.org/.

There is also post with the same question her: Kinect recording a video in C# WPF

As far as I understand you need to to save the single frames delivered by the kinect by into a video file. This post should explain how to do it How to render video from raw frames in WPF?.

like image 159
Markus Avatar answered Nov 14 '22 23:11

Markus