Have any of you done video playback in a web app? I’m having trouble getting the tags and security right and don’t have a lot of time for troubleshooting. This is what the tag looks like:
<video class="span12" controls="controls" preload="metadata" style="width:640px;height:480px;margin-bottom:50px;margin-left:0px;margin-right:0px;margin-top:0px;" poster="/Images/Associated/Dreams/157/157_15323343272003033307.jpg">
<source src="/Images/AssociatedVideos/Dreams/157/157_12197826761982048858.mp4" type='video/mp4' />
<object data="/Images/AssociatedVideos/Dreams/157/157_12197826761982048858.mp4" width="640" height="480" type="application/x-shockwave-flash">
<embed src="/Images/AssociatedVideos/Dreams/157/157_12197826761982048858.mp4" width="640" height="480" />
</object>
</video>
If I copy the video URL and use it directly, the browser prompts for download and plays the video just fine. Some videos will play using the tag above. They are all mp4 and the mime type is set on the server. It just occurred to me to check the encoding in the file and make sure it’s mp4 as well, so I’ll check that.
Any ideas?
Thanks,
Markus
I think I just figured it out...max transfer size in IIS. I’ll adjust that and see if it works.

--
--
Springfield .NET Users Group - http://www.sgfdotnet.org
To post to this group, send email to sgfd...@googlegroups.com
To unsubscribe from this group, send email to sgfdotnet-...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sgfdotnet?hl=en
---
You received this message because you are subscribed to the Google Groups "Springfield .NET Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sgfdotnet+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Figured it out…H264 encoding versus mpeg4. (H264 works)
From: Markus Pope [mailto:mar...@crowdit.com]
Sent: Thursday, May 9, 2013 10:55 AM
To: 'sgfd...@googlegroups.com'
Subject: RE: Video Playback...
I think I just figured it out...max transfer size in IIS. I’ll adjust that and see if it works.

From: sgfd...@googlegroups.com [mailto:sgfd...@googlegroups.com] On Behalf Of Markus Pope
Sent: Thursday, May 9, 2013 10:44 AM
To: sgfd...@googlegroups.com
Subject: Video Playback...
Have any of you done video playback in a web app? I’m having trouble getting the tags and security right and don’t have a lot of time for troubleshooting. This is what the tag looks like:
--