Does anyone know if there is anything related to an NGINX->Starman->Dancer stack that would prevent html5 videos from playing on safari iOS (on an Iphone or Ipad)? I realize that such a idea seems unlikley, but this embeded video
http://www.w3schools.com/html/html5_video.asp plays on my ipnone. However, when I download the video and put in my Dancer2 app and use their markup (below) the video plays perfectly on a desktop but will not play on my Iphone. Being that I am downloading their video it cannot be an encoding issue.
<h3>HTML Video Example. Courtesy of <a href="
http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</h3>
<div class="w3-padding w3-white notranslate">
<div style="text-align:center">
<video id="video1" style="width:600px;max-width:100%;" controls>
<source src="user_vids/uploads/user_vidL_5_111222333.mp4" type="video/mp4">
<source src="user_vids/uploads/user_vidL_5_111222333.ogv" type="video/ogg">
Your browser does not support HTML5 video.
</video>
</div>
</div>
Thanks, for any help.