I currently am using HTML_Div_Pode to display a video in my game. I'm using the following code and it's working perfectly for me:
<video><source src="http://www.mysite.com/video.ogv" type="video/ogg"></video>
What I would like to do though is simply include the video file in the node-webkit extraction so I can fetch the video from the local files rather then from over the internet.
Something like this:
<video><source src="files/video.ogv" type="video/ogg"></video>
Is this possible and if so how would I go about doing that?
Thank you.