Click here to Skip to main content
15,887,175 members
Please Sign up or sign in to vote.
1.20/5 (3 votes)
Hi,

In my application want to record video file with audio by using realsense sdk.

I done video recording by using following code. But while playing i did not receive any audio in that video file.

Following code content i used for recording video.

C#
session = PXCMSession.CreateInstance();
senseManager = session.CreateSenseManager();
senseManager.captureManager.SetFileName("TestVideo.rssdk", false);
senseManager.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, WIDTH, HEIGHT, 30);
senseManager.Init();

 for (int i = 0; i < 200; i++)
  {
   PXCMCapture.Sample sample = senseManager.QuerySample();
  }
 senseManager.ReleaseFrame();



So , finally audio not coming into video file ( TestVideo.rssdk )
How to bring audio into my video file ??????

1#. Possible to record video file with audio using intel real sense sdk
2#. How to enable audio MIC in visual studio 2013?
Posted
Updated 13-Nov-15 15:49pm
v4

1 solution

Have you tried this forum?
Intel® RealSense™ SDK Support forum[^]
 
Share this answer
 
Comments
Member 11865398 20-Nov-15 23:51pm    
Yeah. I tried George.I did not find solution.
George Jonsson 21-Nov-15 6:48am    
Too bad then, because the chance to find someone here that working with Intel RealSense is probably pretty slim.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900