vote up 0 vote down star

hello there,

I have an asp.net application that would 'simulate' real-time video. I did that acquiring multiple picture from an mysql database.

The problem is how would it be displayed on the web-page.? I refresh the page 1 second per picture, the result is the pictures are choppy and flickery.

    Response.AppendHeader("Refresh", "1")

How can I make the refresh rate of the page 4times per second? or is there any implementation for it to be displayed in a continent way.

I would really appreciate if you will reply. good day (^_^)...

here is the script that i am using to read the images from the database,.

If dr.Read Then dr.Read() Response.ContentType = "image/jpeg" 'gets or sets the type of output stream Response.BinaryWrite(dr.Item("file")) 'writes a stream of binary characters to the http output stream Else Response.Write("There is no current active webccast.") End If dr.Close()

flag

4 Answers

vote up 0 vote down

If you really want to simulate video, you need to be able to display at least 15 pictures each second (15fps). Making that many requests per second isn't a great idea.

If you absolutely must do this, I'd suggest "buffering" the pictures first, before displaying them, and if possible, fetching them in batches:

buffer = []       // cache loaded images
bufferSize = 30   // load 30 images before playing

function loadImage(src) {
   var img = new Image()
   img.src = src
   buffer.push(img)
}

function animate(target) {
   if (buffer.length > 0) {
      var img = buffer.shift()
      document.getElementById(target).src = img.src
   }
}

function bufferImages() {
   for (var i=0; i<bufferSize; i++) {
      loadImage('/ajax/ObtainImage.aspx?name=img')
   }
}

setInterval("animate('imgTarget')", 65)  // should give us about 15fps 
setInterval("bufferImages()", 1000)  // every second
link|flag
what type of ajax would you recommend for me to use. – Art Mar 16 at 23:58
If you really want to simulate video, you need to be able to display at least 15 pictures each second (15fps). Making that many requests per second isn't a great idea...I'll rewrite my answer to reflect this. – elo80ka Mar 17 at 0:04
i'm reading the images from the database, and the images are in the column field of a BLOB type,. i think we are at the tip, we just need to jump to get it right., can you plaease help me.?? – Art Mar 17 at 8:01
If you can post the script you're using to read the images, I can try and do a more detailed answer. – elo80ka Mar 17 at 8:39
If dr.Read Then dr.Read() Response.ContentType = "image/jpeg" 'gets or sets the type of output stream Response.BinaryWrite(dr.Item("file")) 'writes a stream of binary characters to the http output stream Else Response.Write("There is no current active webccast.") End If dr.Close() – Art Mar 24 at 9:32
vote up 3 vote down
create a javascript method to change the image using xmlhttpobject and recursively set a timer


         function Timer() {

             setTimeout("getImage(['imageContainer1'])", 200);
             t = setTimeout("Timer()", 100);
                       }

        function getImage(params) {
            var request=getXMLhttpObject();
            makeRequest("ajax/ObtainImage.aspx?name='myimage'+param[1]+'.jpg",request,  imageResponseHandler(request, params));

                   }

    function getXMLhttpObject() {

            return  (navigator.appName == "Microsoft Internet Explorer")? new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();
                              }

 function makeRequest(url,request, Handler) {

             request.open("GET", url, true);
             request.onreadystatechange = Handler;
             request.send(null);

         }


    function imageResponseHandler(request,params) {
             return function() {
                 if (request.readyState == 4)
                     document.getElementById(params[0]).src = request.responseText;
             }

         }
link|flag
Sorry, but i'm new in this language, and what is "getXMLhttpObject"?.? i do now know many of this type of programming. Can you please convert it to visual basi.,? – Art Mar 16 at 23:49
this is javascript, i just added getXmlHttpObject Method – Oscar Cabrero Mar 16 at 23:53
vote up 1 vote down

Maybe you need to think about loading more than one picture onto the page and using javascript to cycle between them. Rather than refreshing the page you could get the pictures using AJAX.

link|flag
If I would load more than one picture to the page. The essence of 'simulating' live video streaming will be lost. – Art Mar 16 at 23:46
You could try loading them in but keeping them hidden with css/javascript until needed – lobsterino Mar 16 at 23:48
I think the speed of page loading will be affected. – Art Mar 16 at 23:53
vote up 1 vote down

I would either use some Javascript/Ajax to change the content or the meta-refresh (probally not the best for fast refresh).

link|flag
What type of Javascript/Ajax??.. Can you please elaborate more? – Art Mar 16 at 23:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.