I have been working on a project for a few days now and hit a snag. I need to be able to embed a google drive video into an HTA application. I have looked everywhere for an answer and tried things such as the html5 method (which I have discovered is not supported by an hta application):
<video id="vid_1" width="720" height="480" autoplay="true">
<source src="https://drive.google.com/file/d/0BzRLxDgyDJqKUHViVkVPQlIwUGc/preview" type="video/mp4">
</video>
the google drive "auto-embed" method:
<iframe src="https://drive.google.com/file/d/0BzRLxDgyDJqKUHViVkVPQlIwUGc/preview" width="640" height="480"></iframe>
which came up with these errors and showed a blank screen:
https://i.stack.imgur.com/ebsvM.jpg
and finally the good old fashion object/embed method:
<object type="video/mp4" data="https://drive.google.com/file/d/0BzRLxDgyDJqKUHViVkVPQlIwUGc/preview" width="340" height="280">
<param name="src" value="https://drive.google.com/file/d/0BzRLxDgyDJqKUHViVkVPQlIwUGc/preview" />
<param name="controller" value="true" />
<param name="autostart" value="true" />
</object>
and
<embed class="vidPlayer" autostart="true" src="https://drive.google.com/file/d/0BzRLxDgyDJqKUHViVkVPQlIwUGc/preview" type='video/mp4'/>
both of which simply showed a white screen.
Any ideas on how to accomplish this? I'm beginning to think it is impossible... The widths and lengths are completely optional, those are currently just placeholders in the code. Thanks for any and all help!