<?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 Gstreamer ingestor in Edge Software Catalog</title>
    <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310120#M1867</link>
    <description>&lt;P&gt;Hi, we are having some problems using gstreamer .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After a couple of seconds executing EII with an AVI file as input, we are having the following error in video ingestion, using EII 2.4.2:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Wed Aug 25 18:52:02 2021]  INFO:run:145: Initializing Gstreamer pipeline

[Wed Aug 25 18:52:02 2021]  INFO:run:147: Gstreamer ingestor thread started

0:00:01.408703907    38 0x7fc24c009140 ERROR              h264parse gsth264parse.c:2795:gst_h264_parse_set_caps: video/x-h264 caps without codec_data or stream-format

0:00:01.422327566    38 0x7fc240066cf0 ERROR              h264parse gsth264parse.c:2795:gst_h264_parse_set_caps: video/x-h264 caps without codec_data or stream-format

0:00:01.442964822    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

0:00:01.467961058    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

0:00:01.509774979    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

[Wed Aug 25 18:52:02 2021]  INFO:new_sample:257: Format: BGR, Size: 640x480

2021-08-25 18:52:02,480 : INFO  : Insecure Mode : VideoIngestion : [area_detection_udf.py] :process : in line : [184] : Crop Area: [(0, 0), (640, 480)] Detection Area: [(0, 0), (640, 480)]

[Wed Aug 25 18:53:33 2021]  INFO:bus_call:176: End of stream

[Wed Aug 25 18:53:33 2021]  INFO:run:150: Gstreamer ingestor thread stopped&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ingestor configurations are the recommended in the user guide:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;"ingestor": {
            "loop_video": true,
            "pipeline": "multifilesrc location=./video.avi loop=TRUE ! decodebin ! videoconvert ! videoscale ! video/x-raw,format=BGR,width=640,height=480 ! appsink",
            "poll_interval": 0.04,
            "queue_size": 10,
            "type": "gstreamer"
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that the video is not starting again. We have changed&amp;nbsp; run() function in gstreamer ingestor cpp file to add a loop as a work around:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;void GstreamerIngestor::run(bool snapshot_mode) {
#ifdef WITH_PROFILE
    auto start = std::chrono::system_clock::now();
#endif
    if (snapshot_mode) {
        m_frame_count = 0;
    }
    for(int i=0; i &amp;lt; 200; ++i){
        LOG_INFO("Video loop iteration: %d", i);
        LOG_INFO_0("Initializing Gstreamer pipeline");
        gstreamer_init(snapshot_mode);
        LOG_INFO_0("Gstreamer ingestor thread started");
        gst_element_set_state(m_gst_pipeline, GST_STATE_PLAYING);
        g_main_loop_run(m_loop);
        LOG_INFO_0("Restart Gstreamer ingestor thread");
        usleep(1000000);
    }
    LOG_INFO_0("Gstreamer ingestor thread stopped");

#ifdef WITH_PROFILE
    // This code block will execute only when g_main_loop ends
    // and it can be triggered by stopping the ingestor source
    auto end = std::chrono::system_clock::now();
    int elapsed = std::chrono::duration_cast&amp;lt;std::chrono::seconds&amp;gt;(
            end - start).count();
    LOG_INFO("GStreamer FPS: %d", m_frame_count / elapsed);
    char* str_app_name = NULL;
    str_app_name = getenv("AppName");
    std::ofstream fps_file;
    fps_file.open("/var/tmp/fps.txt", std::ofstream::app);
    fps_file &amp;lt;&amp;lt; str_app_name &amp;lt;&amp;lt; " FPS : " &amp;lt;&amp;lt; (m_frame_count / elapsed) &amp;lt;&amp;lt; std::endl ;
    fps_file.close();
#endif
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Adding a loop in the gstreamer ingestor have fixed the problem, and we have a continuous execution, but this error keeps appearing in ingestion logs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Is this a known issue? or maybe a problem with the configurations. Any feeedback on this will be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Aug 2021 21:23:13 GMT</pubDate>
    <dc:creator>Lucho</dc:creator>
    <dc:date>2021-08-26T21:23:13Z</dc:date>
    <item>
      <title>Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310120#M1867</link>
      <description>&lt;P&gt;Hi, we are having some problems using gstreamer .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After a couple of seconds executing EII with an AVI file as input, we are having the following error in video ingestion, using EII 2.4.2:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Wed Aug 25 18:52:02 2021]  INFO:run:145: Initializing Gstreamer pipeline

[Wed Aug 25 18:52:02 2021]  INFO:run:147: Gstreamer ingestor thread started

0:00:01.408703907    38 0x7fc24c009140 ERROR              h264parse gsth264parse.c:2795:gst_h264_parse_set_caps: video/x-h264 caps without codec_data or stream-format

0:00:01.422327566    38 0x7fc240066cf0 ERROR              h264parse gsth264parse.c:2795:gst_h264_parse_set_caps: video/x-h264 caps without codec_data or stream-format

0:00:01.442964822    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

0:00:01.467961058    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

0:00:01.509774979    38 0x7fc240066cf0 ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P

[Wed Aug 25 18:52:02 2021]  INFO:new_sample:257: Format: BGR, Size: 640x480

2021-08-25 18:52:02,480 : INFO  : Insecure Mode : VideoIngestion : [area_detection_udf.py] :process : in line : [184] : Crop Area: [(0, 0), (640, 480)] Detection Area: [(0, 0), (640, 480)]

[Wed Aug 25 18:53:33 2021]  INFO:bus_call:176: End of stream

[Wed Aug 25 18:53:33 2021]  INFO:run:150: Gstreamer ingestor thread stopped&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ingestor configurations are the recommended in the user guide:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;"ingestor": {
            "loop_video": true,
            "pipeline": "multifilesrc location=./video.avi loop=TRUE ! decodebin ! videoconvert ! videoscale ! video/x-raw,format=BGR,width=640,height=480 ! appsink",
            "poll_interval": 0.04,
            "queue_size": 10,
            "type": "gstreamer"
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that the video is not starting again. We have changed&amp;nbsp; run() function in gstreamer ingestor cpp file to add a loop as a work around:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;void GstreamerIngestor::run(bool snapshot_mode) {
#ifdef WITH_PROFILE
    auto start = std::chrono::system_clock::now();
#endif
    if (snapshot_mode) {
        m_frame_count = 0;
    }
    for(int i=0; i &amp;lt; 200; ++i){
        LOG_INFO("Video loop iteration: %d", i);
        LOG_INFO_0("Initializing Gstreamer pipeline");
        gstreamer_init(snapshot_mode);
        LOG_INFO_0("Gstreamer ingestor thread started");
        gst_element_set_state(m_gst_pipeline, GST_STATE_PLAYING);
        g_main_loop_run(m_loop);
        LOG_INFO_0("Restart Gstreamer ingestor thread");
        usleep(1000000);
    }
    LOG_INFO_0("Gstreamer ingestor thread stopped");

#ifdef WITH_PROFILE
    // This code block will execute only when g_main_loop ends
    // and it can be triggered by stopping the ingestor source
    auto end = std::chrono::system_clock::now();
    int elapsed = std::chrono::duration_cast&amp;lt;std::chrono::seconds&amp;gt;(
            end - start).count();
    LOG_INFO("GStreamer FPS: %d", m_frame_count / elapsed);
    char* str_app_name = NULL;
    str_app_name = getenv("AppName");
    std::ofstream fps_file;
    fps_file.open("/var/tmp/fps.txt", std::ofstream::app);
    fps_file &amp;lt;&amp;lt; str_app_name &amp;lt;&amp;lt; " FPS : " &amp;lt;&amp;lt; (m_frame_count / elapsed) &amp;lt;&amp;lt; std::endl ;
    fps_file.close();
#endif
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Adding a loop in the gstreamer ingestor have fixed the problem, and we have a continuous execution, but this error keeps appearing in ingestion logs:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ERROR                  vaapi gstvaapiimage.c:104:vaapi_image_is_linear: FIXME: incomplete formats 444P&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;Is this a known issue? or maybe a problem with the configurations. Any feeedback on this will be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 21:23:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310120#M1867</guid>
      <dc:creator>Lucho</dc:creator>
      <dc:date>2021-08-26T21:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310419#M1868</link>
      <description>&lt;P&gt;Hi Lucho,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out! Have you tried using the latest EII version 2.6 and see if the same behavior is observed? Also, I found the following in the &lt;A href="https://github.com/open-edge-insights/video-ingestion/blob/master/docs/multifilesrc_doc.md" target="_self"&gt;multifilesrc doc&lt;/A&gt;, could you give that a try?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="ql-indent-1"&gt;&lt;EM&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN style="font-family: sans-serif;"&gt;In case one notices general stream error with multifilesrc element when certain video files are used then transcode the video file to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.6px; font-family: sans-serif;"&gt;H264&lt;/SPAN&gt;&lt;SPAN style="font-family: sans-serif;"&gt;&amp;nbsp;video with&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.6px; font-family: sans-serif;"&gt;.avi&lt;/SPAN&gt;&lt;SPAN style="font-family: sans-serif;"&gt;&amp;nbsp;container format to ensure the compatibity of the format of the video file.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P class="ql-indent-1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Jesus&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 17:58:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310419#M1868</guid>
      <dc:creator>JesusE_Intel</dc:creator>
      <dc:date>2021-08-27T17:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310922#M1869</link>
      <description>&lt;P&gt;We have tried using .avi container with H264 codec:&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="h264codec.png" style="width: 277px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/19086i9BF4345471AE239B/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="h264codec.png" alt="h264codec.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;having the same results.&lt;/P&gt;
&lt;P&gt;Video loop keeps failing:&lt;BR /&gt;&lt;BR /&gt;[Mon Aug 30 20:24:19 2021] INFO:bus_call:177: End of stream&lt;BR /&gt;[Mon Aug 30 20:24:19 2021] INFO:run:151: Gstreamer ingestor thread stopped&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;with the same configurations:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;"ingestor": {
        "loop_video": true,
        "pipeline": "multifilesrc loop=TRUE location=./video.avi ! decodebin ! videoconvert ! videoscale ! video/x-raw,format=BGR,width=1024,height=720 ! appsink",
        "poll_interval": 0.04,
        "queue_size": 10,
        "type": "gstreamer"
    }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we will try with EII 2.6.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 20:41:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1310922#M1869</guid>
      <dc:creator>Lucho</dc:creator>
      <dc:date>2021-08-30T20:41:48Z</dc:date>
    </item>
    <item>
      <title>Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1311521#M1870</link>
      <description>&lt;P&gt;Hi Lucho,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Sounds good, please let me know the outcome of your tests with EII version 2.6.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Sep 2021 17:37:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1311521#M1870</guid>
      <dc:creator>JesusE_Intel</dc:creator>
      <dc:date>2021-09-01T17:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1311988#M1871</link>
      <description>&lt;P&gt;Hi Jesus,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried with EII 2.6, with the same results. Output:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Fri Sep  3 15:07:59 2021]  INFO:run:147: Gstreamer ingestor thread started
error: XDG_RUNTIME_DIR not set in the environment.
[Fri Sep  3 15:08:00 2021]  INFO:new_sample:257: Format: BGR, Size: 1024x720
2021-09-03 15:08:00,061 : INFO  : {} : VideoIngestion : [area_detection_udf.py] :process : in line : [184] : Crop Area: [(0, 0), (1024, 720)] Detection Area: [(0, 0), (1024, 720)]
[Fri Sep  3 15:09:17 2021]  INFO:bus_call:176: End of stream
[Fri Sep  3 15:09:17 2021]  INFO:run:150: Gstreamer ingestor thread stopped
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Video ingestion config:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;"ingestor": {
        "loop_video": true,
        "pipeline": "multifilesrc location=./video.avi loop=TRUE ! decodebin ! videoconvert ! videoscale ! video/x-raw,format=BGR,width=1024,height=720 ! appsink",
        "poll_interval": 0.04,
        "queue_size": 10,
        "type": "gstreamer"
    },&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any configuration that we can change to solve this issue?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 15:19:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1311988#M1871</guid>
      <dc:creator>Lucho</dc:creator>
      <dc:date>2021-09-03T15:19:06Z</dc:date>
    </item>
    <item>
      <title>Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1312734#M1872</link>
      <description>&lt;P&gt;Hi Lucho,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Let me check with my peers and get back to you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Sep 2021 18:12:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1312734#M1872</guid>
      <dc:creator>JesusE_Intel</dc:creator>
      <dc:date>2021-09-07T18:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313182#M1873</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/174825"&gt;@Lucho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the&lt;STRONG&gt; videoscale&lt;/STRONG&gt; element, it needs to be processed before the &lt;STRONG&gt;videoconvert&lt;/STRONG&gt; element as the example shown on the guide:&amp;nbsp;&lt;A href="https://github.com/open-edge-insights/video-ingestion/blob/master/docs/usb_doc.md" target="_blank"&gt;https://github.com/open-edge-insights/video-ingestion/blob/master/docs/usb_doc.md&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you try using the same configuration to see if you still encounter the same error?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 04:19:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313182#M1873</guid>
      <dc:creator>Murni_J_Intel</dc:creator>
      <dc:date>2021-09-09T04:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313354#M1874</link>
      <description>&lt;P&gt;Hi Murni,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have removed videoscale due to an error tring to change the order. Config:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="json"&gt;"ingestor": {
        "loop_video": true,
        "pipeline": "multifilesrc location=./video.avi loop=TRUE ! decodebin ! videoconvert ! video/x-raw,format=BGR ! appsink",
        "poll_interval": 0.04,
        "queue_size": 10,
        "type": "gstreamer"
    }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Video loop keeps failing:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[Thu Sep  9 16:16:33 2021]  INFO:run:145: Initializing Gstreamer pipeline
[Thu Sep  9 16:16:33 2021]  INFO:run:147: Gstreamer ingestor thread started
error: XDG_RUNTIME_DIR not set in the environment.
[Thu Sep  9 16:16:33 2021]  INFO:new_sample:257: Format: BGR, Size: 1920x1080
2021-09-09 16:16:33,712 : INFO  : {} : VideoIngestion : [area_detection_udf.py] :process : in line : [184] : Crop Area: [(0, 0), (1920, 1080)] Detection Area: [(0, 0), (1920, 1080)]
[Thu Sep  9 16:18:56 2021]  INFO:bus_call:176: End of stream
[Thu Sep  9 16:18:56 2021]  INFO:run:150: Gstreamer ingestor thread stopped
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 16:23:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313354#M1874</guid>
      <dc:creator>Lucho</dc:creator>
      <dc:date>2021-09-09T16:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313485#M1875</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/174825"&gt;@Lucho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your feedback. May I check with you, is it working with the existing PCB demo video? is the video.avi that you used being place on the test_videos folder? if yes, please help to change the path on the configuration.&lt;/P&gt;
&lt;P&gt;I would suggest you try out with the existing available demo video to see if the error still persists so that we can reproduce it on our side.&amp;nbsp; You can also try without using any filter or classifier UDF by passing "dummy" to the UDF configuration in Video Ingestion and Video Analytics container. You can refer to the&amp;nbsp;&lt;A href="https://open-edge-insights.github.io/pages/video.html#working-with-video-data" target="_blank"&gt;https://open-edge-insights.github.io/pages/video.html#working-with-video-data&lt;/A&gt;&amp;nbsp;section on how to configure "dummy" UDF. This will help to see if the error caused by the ingestion pipeline&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 23:55:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1313485#M1875</guid>
      <dc:creator>Murni_J_Intel</dc:creator>
      <dc:date>2021-09-09T23:55:44Z</dc:date>
    </item>
    <item>
      <title>Re:Gstreamer ingestor</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1318347#M1876</link>
      <description>&lt;P&gt;If you need any additional information, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Sep 2021 18:03:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Gstreamer-ingestor/m-p/1318347#M1876</guid>
      <dc:creator>JesusE_Intel</dc:creator>
      <dc:date>2021-09-30T18:03:01Z</dc:date>
    </item>
  </channel>
</rss>

