Webcasting/Broadcasting using VB.NET, MYSQL and ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:21:00Zhttp://stackoverflow.com/feeds/question/600843http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/600843/webcasting-broadcasting-using-vb-net-mysql-and-asp-net0Webcasting/Broadcasting using VB.NET, MYSQL and ASP.NETart2009-03-01T23:40:48Z2009-03-17T16:54:41Z
<p>Hi,.
I am currently working on my project webcasting, my concept is to capture the desktop of the host computer as an image/jpeg file and save it to the database, by having a common database VB.NET and ASP.NET can connect. And lastly, get the image/images from the database and render it to ASP.NET.</p>
<p>1.) VB.NET -> capture image
2.) MYSQL -> write image as BLOB
3.) ASP.NET-> binary write to web page</p>
<p>My problem is that the pictures that is rendered on to ASP.NET is choppy and flickery, do you know any way or method that i can eliminate these problem and provide a smoother picture animation as a result without sacrificing equipment performance.?????</p>
<p>I would really appreciate any tip or suggestion.,. (^_^).,</p>
<p><hr /></p>
<p>here is the way i output pictures on the webpage:</p>
<p>If dr.HasRows Then</p>
<pre><code>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
</code></pre>
<p>Else</p>
<p>I set 1 second to refresh the page, but the more I refresh the page, the more flicker i get.</p>
http://stackoverflow.com/questions/600843/webcasting-broadcasting-using-vb-net-mysql-and-asp-net/600904#6009040Answer by routeNpingme for Webcasting/Broadcasting using VB.NET, MYSQL and ASP.NETrouteNpingme2009-03-02T00:27:40Z2009-03-02T00:27:40Z<p>Are you trying to create a pseudo-screen recorder with a realtime view?</p>
<p>If so, with the architecture of going from a Screen Capture to DB and render back out to an ASP.NET web application, there are so many layers waiting on each other to complete there that you're not going to get a really smooth view.</p>
<p>What I'd suggest is taking a look at how LogMeIn does this (www.logmein.com) - some kind of active object will need to be launched (WinForms app, ActiveX control, Silverlight app, etc) that establishes a direct connection to the "source" PC; that's the only way you can 'stream' images to the client and provide a reasonable experience.</p>
<p>At minimum, you will need to do something in AJAX to background-refresh the image and then smoothly replace it on the ASP.NET front end, or create an active executable that will establish a direct stream or poll the database for you. Hope that helps somewhat...</p>
http://stackoverflow.com/questions/600843/webcasting-broadcasting-using-vb-net-mysql-and-asp-net/655114#6551140Answer by unang asawang iniwanan for Webcasting/Broadcasting using VB.NET, MYSQL and ASP.NETunang asawang iniwanan2009-03-17T16:54:41Z2009-03-17T16:54:41Z<p>naku po arturo, ikaw pla to... hay....mwahh</p>