<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to record video from D435 cameras in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407570#M2450</link>
    <description>&lt;P&gt;The first thing I would try is to change rs2::recorder rec to rs2::recorder device&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The rationale behind this is that rs2::recorder device, followed by an instruction such as 'pause or 'filename'', seems to be the commonly occurring structure for rs2::recorder commands.&lt;/P&gt;</description>
    <pubDate>Sun, 11 Feb 2018 14:53:50 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2018-02-11T14:53:50Z</dc:date>
    <item>
      <title>How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407567#M2447</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new to both the D435 and RealSense SDK 2.0. I want to modify the rs-multicam c++ sample to synchronously record videos from each connected RGB camera, and to save the videos to a path.&lt;/P&gt;&lt;P&gt;I'm not sure where to begin, and I would really appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;jmagen&lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2018 09:51:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407567#M2447</guid>
      <dc:creator>JMage</dc:creator>
      <dc:date>2018-02-10T09:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407568#M2448</link>
      <description>&lt;P&gt;Welcome to the RealSense community!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The options for recording with a D435 currently include:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Recording data into a file called a 'rosbag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md&lt;/A&gt; librealsense/&lt;A href="http://readme.md"&gt;readme.md&lt;/A&gt; at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are new to recording, you may like to first experiment with recording and playing back data in the pre-made RealSense Viewer tool that comes with the SDK 2.0, as described in the above link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A short YouTube video explaining the rosbag process is also available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?time_continue=2&amp;amp;v=pwlbArh_neU"&gt;https://www.youtube.com/watch?time_continue=2&amp;amp;v=pwlbArh_neU&lt;/A&gt; rosbag - YouTube &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  The other option is to record the RealSense data into a PNG image with the SDK's 'Save-To-Disk' sampl eprogram.  You could then convert the PNG into a conventional video.  Google 'convert png to video' for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/examples/save-to-disk"&gt;https://github.com/IntelRealSense/librealsense/tree/master/examples/save-to-disk&lt;/A&gt; librealsense/examples/save-to-disk at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;</description>
      <pubDate>Sat, 10 Feb 2018 10:55:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407568#M2448</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-02-10T10:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407569#M2449</link>
      <description>&lt;P&gt;Thanks for the quick reply, MartyG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I very much like the playback of rosbag files within the RealSense viewer, so I would like to replicate that. I'm trying to add some recorders into the multicam sample, but I'm having a hard time creating a recorder for a stream. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Immediately after multicam's query for the list of connected RealSense devices, I inserted a query for all sensors in the context--with the hope that I could find the color streams and create a recorder for each of them.&lt;/P&gt;&lt;P&gt;Here is my code snippet:&lt;/P&gt;&lt;P&gt;for (auto&amp;amp;&amp;amp; sen : ctx.query_all_sensors()) { // Query the list of sensors&lt;/P&gt;&lt;P&gt;     for (auto&amp;amp;&amp;amp; prof : sen.get_stream_profiles()) { // Query the list of stream profiles from sen&lt;/P&gt;&lt;P&gt;               if (prof.stream_type() == RS2_STREAM_COLOR) {&lt;/P&gt;&lt;P&gt;                    rs2::recorder rec("stream_name.bag", sen); //This does not work&lt;/P&gt;&lt;P&gt;                    connected_devices.enable_device(rec);&lt;/P&gt;&lt;P&gt;          }&lt;/P&gt;&lt;P&gt;     }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I go about creating a recorder for streams?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;jmagen&lt;/P&gt;</description>
      <pubDate>Sun, 11 Feb 2018 13:33:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407569#M2449</guid>
      <dc:creator>JMage</dc:creator>
      <dc:date>2018-02-11T13:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407570#M2450</link>
      <description>&lt;P&gt;The first thing I would try is to change rs2::recorder rec to rs2::recorder device&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The rationale behind this is that rs2::recorder device, followed by an instruction such as 'pause or 'filename'', seems to be the commonly occurring structure for rs2::recorder commands.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Feb 2018 14:53:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407570#M2450</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-02-11T14:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407571#M2451</link>
      <description>&lt;P&gt;Hi jmagen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you solve this problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I'm having the same issue and haven't figured it out how to record synchronously from two devices.&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;MP&lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2018 13:06:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407571#M2451</guid>
      <dc:creator>MPint4</dc:creator>
      <dc:date>2018-03-02T13:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to record video from D435 cameras</title>
      <link>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407572#M2452</link>
      <description>&lt;P&gt;Hello mariopintopleroma,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Have you tried changing the lines MartyG suggested?  &lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;Best regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Josh B.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Intel Customer Support</description>
      <pubDate>Sat, 03 Mar 2018 00:55:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/How-to-record-video-from-D435-cameras/m-p/407572#M2452</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-03-03T00:55:23Z</dc:date>
    </item>
  </channel>
</rss>

