According to the client's download speed I want to show the video's either in low or high quality. Any Javascript or C# solution is acceptable.

Thanks.

link|improve this question

72% accept rate
feedback

7 Answers

up vote 2 down vote accepted

There isn't any way to be sure. You can only measure how fast you can send data to the client. Without any kind of input from the client to indicate how fast it is getting the information, there isn't much you can do.

You could redirect the client to a page which uses javascript to download an element in the page which is of known size. Then, take the time at the beginning and at the end of the download and redirect the page to a URL constructed through javascript on the client which sends you the time it took to download the element.

Given that you know the size of the element, you can then estimate a rate and make a guess as to the download speed.

link|improve this answer
That's the way I thought. I could not find a better way. It seems there is not! – Ali Ersöz Mar 24 '09 at 18:48
feedback

Here is a post about how gmail works and how it finds the internet speed of the user. You can get some ideas.

link|improve this answer
feedback

Maybe, in javascript, you can do something like:

var testImg = document.createElement('img');
testImg.src="src.jpg"; // image with known size
var imageSize = 10; // for 10 k image
testImg.onload = function(){
   var downloadRateKPerSrc = imageSize/((new Date().getTime() - startTime)/1000);
};

testImg.style.display='none';
var startTime = new Date().getTime();
document.body.appendChild(testImg);

untested code - but this idea might work?

link|improve this answer
thanks for your code sample. it worked on onload event of body! – Ali Ersöz Mar 26 '09 at 7:59
feedback

Most web sites simply let the user choose a high quality or low quality version.

link|improve this answer
feedback

This is a bad idea, not least because most users can control their bandwidth themselves (i.e. I'm running P2P apps that use significant bandwidth, but I turn them off if something else needs priority.)

link|improve this answer
I know that client's bandwidth could change by the applications that he/she uses. I'm want to know the available speed. But it seems there is no way to find out this. – Ali Ersöz Mar 24 '09 at 18:51
feedback

You could use Silverlight or Flash as upload pugin. This will enable you to have a real control on the client on what is uploaded, what the state is and what the upload speed is when the upload has been started.

link|improve this answer
feedback

You could look up their address in GeoIP Netspeed: http://www.maxmind.com/app/geolocation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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