<?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: Video Player Conversion asset not showing form in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/766491#M33222</link>
    <description>&lt;P&gt;Any news here? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Would be nice to have a solution for this issue. Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 09 Mar 2023 13:49:26 GMT</pubDate>
    <dc:creator>TMerkel</dc:creator>
    <dc:date>2023-03-09T13:49:26Z</dc:date>
    <item>
      <title>Video Player Conversion asset not showing form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/763919#M33121</link>
      <description>&lt;P&gt;Hi guys, i am not sure why, but the following code does not show my chosen form as a preroll:&lt;/P&gt;&lt;P&gt;(advanced video features turned on)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;          {% video_player "embed_player" 
            overrideable=False 
            type={{ module.video.player_type || 'scriptV4' }} 
            full_width={{ module.video.size_type == 'auto_full_width' }} 
            hide_playlist=True 
            viral_sharing=False 
            embed_button=False 
            width='1920', height='1080' 
            player_id={{ item.video }} 
            conversion_asset={"type":"FORM","id":"{{ module.form.form_id }}","position":"PRE"}
            %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Conversion Asset attribute seems not to understand the form_id. Could someone help me with this? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 15:45:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/763919#M33121</guid>
      <dc:creator>TMerkel</dc:creator>
      <dc:date>2023-03-03T15:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Video Player Conversion asset not showing form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/764826#M33145</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/353439"&gt;@TMerkel&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt; Thanks for your question. Hey.&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/73772"&gt;@Kevin-C&lt;/a&gt;,&amp;nbsp;do you have any tips you can share with&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/353439"&gt;@TMerkel&lt;/a&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you! — Jaycee&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 19:10:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/764826#M33145</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-03-06T19:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Video Player Conversion asset not showing form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/766491#M33222</link>
      <description>&lt;P&gt;Any news here? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Would be nice to have a solution for this issue. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 13:49:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/766491#M33222</guid>
      <dc:creator>TMerkel</dc:creator>
      <dc:date>2023-03-09T13:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Video Player Conversion asset not showing form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/770230#M33370</link>
      <description>&lt;P&gt;I just found the solution for the problem. You need to set the variable and parse it as json like the following example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;          {% set conversion_assets = {"type":"FORM","id":module.form.form_id,"position":"PRE"} %}
          {% video_player "embed_player" 
            overrideable=False 
            type={{ module.video.player_type || 'scriptV4' }} 
            full_width={{ module.video.size_type == 'auto_full_width' }} 
            hide_playlist=True 
            viral_sharing=False 
            embed_button=False 
            auto_play=True 
            width='1920', height='1080' 
            player_id={{ item.video }} 
            conversion_asset={{ conversion_assets|tojson|safe }}
            %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 12:21:31 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Video-Player-Conversion-asset-not-showing-form/m-p/770230#M33370</guid>
      <dc:creator>TMerkel</dc:creator>
      <dc:date>2023-03-17T12:21:31Z</dc:date>
    </item>
  </channel>
</rss>

