Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Good afternoon stackoverflow!

Currently I'm working on a handler to serve videos from a database to a control that will display it using HTML5. Using Response.OutputStream.Write does indeed work, however, the video player in both Firefox 4.0 and Chrome cannot seem to determine how long the video is. Firefox's counter just increases as the play time goes on, while Chrome shows a completely random time.

Is there some header that I need to set in order for this to work? I have set the content-length to the number of bytes, which I think is the correct value.

HTML Markup

<video controls="controls" poster="<%= ImageURL %>" width="<%= Width %>" height="<%= Height %>" preload="preload">
    <source src="<%= MP4URL %>" type='video/mp4; codecs="avc1.42E01E,mp4a.40.2"'/>
    <source src="<%= OggURL %>" type='video/ogg; codecs="theora,vorbis"'/>
    <img alt="<%= ImageAlt %>" src="<%= ImageURL %>" width="<%= Width %>" height="<%= Height %>" title="No video playback capabilities, please download the video below" />
</video>
</div>

Video Handler Code

        // Snip -- Company specific DB code

        // Set the correct headers
        context.Response.AppendHeader("content-length", video.Length.ToString());

        // Set the content type
        switch (extensionType.ToLower())
        {
            case "ogv":
                contentType = "video/ogg";
                break;

            case "mp4":
                contentType = "video/mp4";
                break;

            default:
                contentType = "";
                break;
        }
        context.Response.ContentType = contentType;
        context.Response.Charset = String.Empty;
        context.Response.Buffer = false;


        // Write the video to the stream
        context.Response.OutputStream.Write(video, 0, video.Length);

        // Close the repsonse
        context.Response.Close();
        context.Response.End();

Any help on this would be greatly appreciated.

share|improve this question
Any progress on this? – vtortola Dec 20 '11 at 12:16
We never found a solution to this issue. In the end that part of the project was canned. A shame because it would have really added something. Hopefully someone will discover the cause/solution. I would personally love to know what on earth was causing this. – djstamp Dec 22 '11 at 11:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.