playback confirmed broken in ios8.1 safari. working in all major desktop browsers
<source "="" type="video/mp4" src="http://tekfab.com/video/HP01_TEKFAB_Compact_Stacker_streaming_WEB.mp4">
should be
<source type="video/mp4" src="http://tekfab.com/video/HP01_TEKFAB_Compact_Stacker_streaming_WEB.mp4">
also note that it is not outputting the source for the ogg/ogv file in addition to that erroneous code.
this is how the total code should look, which i can confirm plays in all browsers.
<video height="100%" width="100%" poster="undefined" preload="undefined" controls="" class="" style="display: block;">
<source src="http://tekfab.com/video/HP01_TEKFAB_Compact_Stacker_streaming_WEB.mp4" type="video/mp4"></source>
<source src="http://tekfab.com/video/HP01_TEKFAB_Compact_Stacker_streaming_WEB.webm" type="video/webm"></source>
<source src="http://tekfab.com/video/HP01_TEKFAB_Compact_Stacker_streaming_WEB.ogv" type="video/ogg"></source>
</video>