Software Archive
Read-only legacy content

Recording the RealSense 3D video

Mona_J_
Einsteiger
1.203Aufrufe

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 Antworten
Xusheng_L_Intel
Mitarbeiter
1.203Aufrufe

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!

Mona_J_1
Einsteiger
1.203Aufrufe

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

 

Rajendran_E_
Einsteiger
1.203Aufrufe

Hi Mano,

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

Can you give me sample for recording videos.

jb455
Geschätzter Beitragender II
1.203Aufrufe

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.

Antworten