No reference in Hype documentation as to the newer VP9 video codec:
Can VP9 video be imported into Hype document?
Thank you
Yup!
Just create a video element (drag your WEBM file to your scene), or create a custom video element and include it as a source. You probably want to include a mp4 fallback. (At this moment, iPhone users will be able to see videos encoded on VP8, but not VP9, so Mobile Safari won't see anything)
https://caniuse.com/#feat=webm
<video controls>
<source src="${resourcesFolderName}/myVideo.webm" type="video/webm">
<source src="${resourcesFolderName}/myVideo.mp4" type="video/mp4">
<p>Your browser doesn't support HTML5 video. Here is
a <a href="${resourcesFolderName}/myVideo.mp4">link to the video</a> instead.</p>
</video>
Great to hear.
Thank you Daniel.
Only using for desktop/tablet and prompting for Chrome or Edge, so should be fine.
Thanks again.