how to embed a video in a report

Options
DQM
DQM
edited February 11, 2022 in Analytics #1
<p>Hi, embedding a video in a dashboard is easy using the provided video gadget, but we would like to embed a video in a report.</p>
<p>Our reports are served from a secure site and accessed through a dashboard.</p>
<p>Vimeo provides users with embed codes (using iframes), but these do not seem to work in the structure we use.</p>
<p> </p>
<p>Is there a solution for this problem?</p>
<p> </p>
<p>Help is appreciated,</p>
Warning No formatter is installed for the format ipb

Comments

  • <p>HTML Tidy removes iframes, however you can get around this by creating a text element and placing your code inside <script> tags to prevent HTML Tidy from removing them.</p>
    <p>See attached example to demonstrate an embedded youtube video into a BIRT report.</p>
    <pre class="_prettyXprint _lang-js">
    <!-- Using a div tag and scripting to place your iframe will prevent HTML Tidy from removing the iframe in your code -->
    <div id="BIRT_developer_vs_Java_coder"></div> <!--Reference div for output display -->
    <script type="text/javascript">
    var div = document.getElementById("BIRT_developer_vs_Java_coder"); //Get reference div tag
    div.innerHTML = '<iframe width="1280" height="720" src="https://www.youtube.com/embed/84RAEuPICEY" frameborder="0" allowfullscreen></iframe>'; //Set embedded link
    </script>
    </pre>
    Warning No formatter is installed for the format ipb
  • <p>Cool video!</p>
    Warning No formatter is installed for the format ipb
  • <p>A very cool video indeed! Thanks for the quick reply. Works now :)</p>
    Warning No formatter is installed for the format ipb
  • Hi,

    I am trying to embed video in the word document using Story Teller. I placed video in the HTML place holder and called HTML file using external substitution but getting below error in control centre. Any idea how to resolve it.

    0908 193441 (0000) 2 XHTML Input Filter: XHTML data contains script. It will be ignored.
    0908 193441 (0000) 1 XHTML_Input_Filter: Parsing failed (line: 6, col: 135). Check data structure for XML compliance!

    0908 193441 (0440) 1 XHTML Input Filter: Cannot load Xhtml data (check XML compliance).
    0908 193441 (0183) 1 Unable to load document from 'file:///C:/Users/k64065132/Desktop/abc.html'.
    0908 193441 (0203) 1 External Content Substitution: moniker 'file:///C:/Users/k64065132/Desktop/abc.html!/story[1]' load failed.
    0908 193441 (0475) 1 Error in substitution (Name: 'Video', ID: '3221225497').
    0908 193441 (5105) 3 Receiver of created document set (Document, reciever):14078AA6-D4AC-8645-A6C6-8442DBCCDD32,
    0908 193441 (1723) 2 JobEnd:directoryscanner=XML_Input
  • I think you posted this question on the wrong forum.  I believe your question belongs here:
    Warning No formatter is installed for the format ipb