Software Archive
Read-only legacy content
17061 Discussions

Recording the RealSense 3D video

Mona_J_
Beginner
474 Views

I want to record the video the user is looking at the camera. By looking at the SDK documentation I could get this far. However the file I have after recording is done is not readable by Windows Media Player. What kind of formatting I should do in the code in order that my video can be opened by the Windows Media Player?

 

private void ConfigureRealSense()
        {
            PXCMFaceModule faceModule;
            

            
            // Start the SenseManager and session  
            senseManager = PXCMSenseManager.CreateInstance();
            senseManager.captureManager.SetFileName("recorded_video.avi", true);
            senseManager.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, 640, 480, 0);
            senseManager.Init();

 

0 Kudos
4 Replies
Xusheng_L_Intel
Employee
474 Views

Windows media play did not support our 3D image format. You can find details of our 3D image format @https://software.intel.com/sites/landingpage/realsense/camera-sdk/2014gold/documentation/html/index.html?appendix_recorded_file_forma.html,. Thanks!

0 Kudos
Mona_J_1
Beginner
474 Views

So how can I see the video? What tool should I use?

 

0 Kudos
Rajendran_E_
Beginner
474 Views

Hi Mano,

 In my application also am recording video , the file is recorded by not playing.

Can you give me sample for recording videos.

0 Kudos
jb455
Valued Contributor II
474 Views

If you just want to have the video and none of the 3D stuff you can use a screen recorder like CamStudio to record what's on the screen, for playback in WMP or whatever.

0 Kudos
Reply