Question:
How do you embed a video into a report definition?
Answer:
Currently, there is no native video element within Logi Info Studio.
However, you can use an Include Html element to place your video into a report definition as you would any normal website. For example, using the HTML5 Video script provided by w3schools and the Big Buck Bunny video; the following is an example.
<video width="400" controls>
<source src="https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4" type="video/mp4">
<source src="https://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_480p_stereo.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
<p>
Video courtesy of
<a href="https://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.
</p>
Further Reading
w3schools source: Click Here
Big Buck Bunny source: Click Here
IncludeHTML element: Click Here