<?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: Encode timeout in Media (Intel® Video Processing Library, Intel Media SDK)</title>
    <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1506213#M14840</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Thanks for your answer. I have attached the code. I also provided an input video sample.&lt;BR /&gt;&lt;BR /&gt;In the reamde.md, you will find the used command line.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jul 2023 12:14:45 GMT</pubDate>
    <dc:creator>BernardThilmant</dc:creator>
    <dc:date>2023-07-19T12:14:45Z</dc:date>
    <item>
      <title>Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1505440#M14833</link>
      <description>&lt;DIV&gt;&lt;SPAN class=""&gt;Hello,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;I am using oneVPL to encode simultaneously 16 low resolution video streams in H.264 (see the&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;mfxVideoParam for more info).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;All of the streams have the same characteristics.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;mfxVideoParam encodeParams     = {};            
encodeParams.mfx.CodecId                 = MFX_CODEC_AVC;
encodeParams.mfx.CodecProfile            = MFX_PROFILE_AVC_MAIN;
encodeParams.mfx.CodecLevel              = MFX_LEVEL_AVC_4;
encodeParams.mfx.TargetUsage             = MFX_TARGETUSAGE_BALANCED;
encodeParams.mfx.RateControlMethod       = MFX_RATECONTROL_AVBR;
encodeParams.mfx.TargetKbps              = 4000;
encodeParams.mfx.MaxKbps                 = 4000;
encodeParams.mfx.InitialDelayInKB        = 384;
encodeParams.mfx.GopRefDist              = 1;
encodeParams.mfx.GopPicSize              = 8;
encodeParams.mfx.FrameInfo.FourCC        = MFX_FOURCC_NV12;
encodeParams.mfx.FrameInfo.FrameRateExtN = 60;
encodeParams.mfx.FrameInfo.FrameRateExtD = 1;
encodeParams.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
encodeParams.mfx.FrameInfo.CropW        = 960;
encodeParams.mfx.FrameInfo.CropH        = 544;
encodeParams.mfx.FrameInfo.Width        = ALIGN16(960);
encodeParams.mfx.FrameInfo.Height       = ALIGN16(544);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The encoding must be done in real time.&lt;BR /&gt;&lt;BR /&gt;I have a test app which is based on the following example:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://github.com/oneapi-src/oneVPL/blob/v2023.1.1/examples/hello/hello-encode/src/hello-encode.cpp" target="_blank" rel="noopener"&gt;https://github.com/oneapi-src/oneVPL/blob/v2023.1.1/examples/hello/hello-encode/src/hello-encode.cpp&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The modification I did are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Allow multiple sessions to run in parallel&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;I loop the input raw files in order to have no time limits as my input raw clips have a duration of few seconds&lt;UL&gt;&lt;LI&gt;At the end I always repeat the encoding of the same sequences&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Every thing works well except for long duration tests (&amp;gt; 1 hour), where I can get some timeout errors on the&amp;nbsp;MFXVideoCORE_SyncOperation call.&lt;BR /&gt;&lt;BR /&gt;On the &lt;A href="https://github.com/oneapi-src/oneVPL/blob/v2023.1.1/examples/hello/hello-encode/src/hello-encode.cpp" target="_blank" rel="noopener"&gt;hello-encode.cpp&lt;/A&gt;&amp;nbsp;example the timeout is set to 100ms -&amp;gt; I tried up to 2000ms and still have errors.&lt;BR /&gt;&lt;BR /&gt;Any idea why I get these timeouts? Especially since I keep encoding the same sequences, I mean there is no surprise with a new sequence&amp;nbsp;which would be more difficult to encode.&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;Here is some information about my setup&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Processor:&amp;nbsp;i5-12500E&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;OS: Linux&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;oneVPL GPU Runtime: 23.1.5&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;oneVPL: v2023.1.3&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thanks in advence,&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 14:58:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1505440#M14833</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-07-17T14:58:27Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1505947#M14835</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting in Intel Communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please share the sample reproducer code and the exact steps you followed, so that we can reproduce the same from our end.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Jul 2023 15:15:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1505947#M14835</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-07-18T15:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1506213#M14840</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Thanks for your answer. I have attached the code. I also provided an input video sample.&lt;BR /&gt;&lt;BR /&gt;In the reamde.md, you will find the used command line.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 12:14:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1506213#M14840</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-07-19T12:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1508100#M14863</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried to replicate your issue, but we are getting segmentation fault. We tried it on ubuntu 18.04 with oneVPL 2023.3.1.&lt;/P&gt;
&lt;P&gt;Please see the below screenshot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AthiraM_Intel_0-1690304939133.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/44007i1605F75C726D3715/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="AthiraM_Intel_0-1690304939133.png" alt="AthiraM_Intel_0-1690304939133.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please check whether your issue persists with latest version of oneVPL.&lt;/P&gt;
&lt;P&gt;If the issue still persists, please let us know the OS( specify the distribution, eg: centos/ubuntu/rhel/fedora) you used. Also share the screenshots of the error.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 17:09:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1508100#M14863</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-07-25T17:09:29Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1510085#M14875</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you please give us an update?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2023 15:36:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1510085#M14875</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-08-01T15:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1511652#M14885</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for the late answer, I had an issue with my account and finally had to recreate it.&lt;BR /&gt;&lt;BR /&gt;I can already see you are using the software implementation (param "-sw"), do you also have the segmentation fault with the hardware implementation (param "-hw") ?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 09:15:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1511652#M14885</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-08-07T09:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1513812#M14896</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are getting "&lt;STRONG&gt;Aborted (Core dumped) " &lt;/STRONG&gt;issue while trying hardware implementation (-hw).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AthiraM_Intel_0-1692006113690.png" style="width: 432px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/44614i9C8354F1C0CCB367/image-dimensions/432x189?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="432" height="189" role="button" title="AthiraM_Intel_0-1692006113690.png" alt="AthiraM_Intel_0-1692006113690.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please check whether your issue persists with latest version of oneVPL from your side.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the issue still persists, please let us know the OS( specify the distribution, eg: centos/ubuntu/rhel/fedora) you used. Also share the screenshots of the error.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 09:42:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1513812#M14896</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-08-14T09:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1514520#M14899</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;No core dump on my side.&lt;BR /&gt;&lt;BR /&gt;I am using buildroot.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am going to do the update to&amp;nbsp;&lt;SPAN&gt;oneVPL 2023.3.1.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 10:19:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1514520#M14899</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-08-16T10:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1516043#M14904</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I did the update. No dump on my side.&lt;BR /&gt;&lt;BR /&gt;I have the following versions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;oneVPL&amp;nbsp; GPU 23.2.4&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;oneVPL&amp;nbsp; 2023.3.1&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Driver&amp;nbsp; &amp;nbsp; &amp;nbsp;23.2.4&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Gmmlib 22.3.7&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;libva&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.19.0&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;libva-utils&amp;nbsp; 2.19.0&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;(as it is specify here:&amp;nbsp;&lt;A href="https://github.com/oneapi-src/oneVPL-intel-gpu/releases/tag/intel-onevpl-23.2.4" target="_blank"&gt;https://github.com/oneapi-src/oneVPL-intel-gpu/releases/tag/intel-onevpl-23.2.4&lt;/A&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe you could generate a dump file and get the backtrace of the program ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 12:46:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1516043#M14904</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-08-21T12:46:54Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1517581#M14913</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are checking on this issue internally. We will get back to you with an update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Aug 2023 08:31:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1517581#M14913</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-08-25T08:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1518686#M14926</link>
      <description>&lt;P&gt;Thank you &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;BR /&gt;&lt;BR /&gt;If you see something I can do to help, let me know.&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2023 12:41:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1518686#M14926</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-08-29T12:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1521475#M14936</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have informed the development team regarding your issue, they asked the following details:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please set a really long delay so we will have more info to know whether it is a GPU hang vs it’s just taking a really long time to return.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 2000ms you tried is really long, but can you try 5000 or 10,000ms – to verify whether it’s a hang.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are getting timeout error, please share the screenshots also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="activitymodule" class="module toggle-wrap"&gt;
&lt;DIV class="mod-content"&gt;
&lt;DIV class="issuePanelWrapper"&gt;
&lt;DIV id="issue_actions_container" class="issuePanelContainer bbb-gp-ellipsis-calculated"&gt;
&lt;DIV id="comment-21393148" class="issue-data-block activity-comment twixi-block  expanded"&gt;
&lt;DIV class="twixi-wrap verbose actionContainer"&gt;
&lt;DIV class="action-body flooded"&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 16:58:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1521475#M14936</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-09-07T16:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1522453#M14941</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;Thank you for your response.&lt;BR /&gt;&lt;BR /&gt;I am going to try a longer timeout as suggested. I come back to you as soon as I can.&lt;BR /&gt;&lt;BR /&gt;My wife will very soon give birth. From that moment, I will be on paternity leave for almost 2 months.&lt;BR /&gt;&lt;BR /&gt;I won't be able to answer during this time. I will start working again in November.&lt;BR /&gt;&lt;BR /&gt;Sorry for the inconvenience.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 09:31:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1522453#M14941</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-09-11T09:31:11Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1522830#M14942</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Good day to you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for letting us know. We will wait for your update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Also share the VPL/UMD logs for further investigation when you come back?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Sep 2023 06:04:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1522830#M14942</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-09-12T06:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1545969#M15123</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I am back to work.&lt;BR /&gt;&lt;BR /&gt;I have an issue on my side when I try&amp;nbsp; to reproduce the issue.&lt;BR /&gt;&lt;BR /&gt;I come back ASAP with the information that have been asked.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Bernard Thilmant&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 10:49:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1545969#M15123</guid>
      <dc:creator>BernardThilmant</dc:creator>
      <dc:date>2023-11-21T10:49:01Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1549557#M15142</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please give us an update? Are you able to get the logs?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Dec 2023 11:09:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1549557#M15142</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-12-01T11:09:32Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1551843#M15159</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you please give us an update?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Dec 2023 10:52:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1551843#M15159</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-12-08T10:52:54Z</dc:date>
    </item>
    <item>
      <title>Re:Encode timeout</title>
      <link>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1556659#M15174</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. This thread will no longer be monitored by Intel. If you need further assistance, please post a new question.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Dec 2023 05:40:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Media-Intel-Video-Processing/Encode-timeout/m-p/1556659#M15174</guid>
      <dc:creator>AthiraM_Intel</dc:creator>
      <dc:date>2023-12-22T05:40:20Z</dc:date>
    </item>
  </channel>
</rss>

