Questions tagged [download-speed]

the amount of data being downloaded in a second

Download speed is a metric used to quantify the amount of data being loaded into the client computer from the server. Units usually used for download speed are bytes per second (contrary to link bandwidth which is usually given in bits per second).

34 questions
239
votes
10 answers

How to detect internet speed in JavaScript?

How can I create a JavaScript page that will detect the user’s internet speed and show it on the page? Something like “your internet speed is ??/?? Kb/s”.
Sharon Haim Pour
  • 5,974
  • 12
  • 39
  • 59
38
votes
6 answers

HTTPS vs HTTP speed comparison

Update 2013-04-25: This is a popular question that is getting more attention than it probably should. In order to stop the spread of misinformation please read the following paragraphs and the accompanying article first: Speed should not be a factor…
David Murdoch
  • 82,194
  • 38
  • 141
  • 186
14
votes
4 answers

Change text in the QProgressBar

Well i have a QProgressBar where i show the download progress, however i want to set where it shows the percentage the download speed, leaving it as: Percentage% (downloadspeed KB/s) Any idea?
Kazuma
  • 1,291
  • 5
  • 18
  • 33
14
votes
2 answers

How to measure download speed and progress using requests?

I am using requests to download files, but for large files I need to check the size of the file on disk every time because I can't display the progress in percentage and I would also like to know the download speed. How can I go about doing it ?…
Mayank Kumar
  • 971
  • 3
  • 11
  • 18
9
votes
2 answers

How to programmatically limit the download speed?

I use the following code to limit the download speed of a file in java: package org; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; class MainClass { public static void…
Hadi
  • 642
  • 7
  • 21
4
votes
7 answers

How can I find out the download speed of the client from server?

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.
Ali Ersöz
  • 14,982
  • 10
  • 47
  • 62
4
votes
0 answers

NodeJS request / request-progress file download slows down to almost zero

We have a specific piece of NodeJS software which downloads files to it's local filesystem. The files can very from a few KB's to GB's. Sometimes, for no apparent reason the download speeds becomes really slow. The actual connection is quite decent…
Sneeper
  • 41
  • 2
4
votes
2 answers

Get Download and Upload Speeds C#

I'm looking for a class or a library or anything that will allow me to get the current download speed, I've tried a lot of code from the net including FreeMeter but can't get it to work. Can some provide any sort of code just to give this simple…
Sandeep Bansal
  • 5,988
  • 15
  • 77
  • 121
3
votes
1 answer

How to test the download speed to a specific server in another country?

The question is simple: I have a HTTP server hosted in country A where I'm living in, then is there any facility/tool/service that I can use to test the download speed in another country B? The story is, we have one customer in Istanbul, Turkey who…
Wei WANG
  • 1,620
  • 16
  • 20
3
votes
1 answer

How to calculate download speed with cURL progress_callback (PHP)

I'm using cURL to upload a file via given URL. (user gives URL, and my server downloads the file) For a progressbar, I use the CURLOPT_PROGRESSFUNCTION option. I want the function of the progress to also calculate the speed of download, and how much…
HTMHell
  • 4,572
  • 4
  • 30
  • 70
2
votes
0 answers

Does serving MIME type images improves loading speed, what benefits

I am wondering if including MIME types images, instead of the images themselves, helps improve the loading speed in the page? What are advantages of serving encoded MIME types instead of original files? Thank you,
IberoMedia
  • 2,126
  • 7
  • 32
  • 57
2
votes
0 answers

Approach used to estimate download remaining time in applications (such as browsers)

I am just wondering why the initial estimation of the remaining time of each download in most (if not all) applications is only based on the current download speed of the particular download and does not take into account the other concurrent…
George
  • 31
  • 3
2
votes
2 answers

Laravel Limit Client Download Speed (Bandwidth throttling)

In Laravel, I can download using response()->download(); But is there any way to limit client speed?
2
votes
0 answers

How to find out Download and Upload speed in android

I am working on a project . I need to find out the download and upload speed per second ... So far i have find out the transmitted and received total bytes. Any help will be much appreciated. Here is my code.. mStartRX =…
Autul
  • 21
  • 2
2
votes
0 answers

Find download speed using Javascript

I'm working which detect the download speed of a given system ,and the approach I took to find that is as follow Download files of know size and then based upon the estimated time taken calculate the download speed Here are code look function…
Ratatouille
  • 1,174
  • 3
  • 17
  • 38
1
2 3