Questions tagged [download-speed]

The rate of digital data transfer from an internet source to a device requesting the data. Use this tag for programmatic challenges involving this speed, for example calculating it or controlling it.

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).

39 questions
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,372
  • 5
  • 23
  • 50
1
vote
0 answers

I want to calculate the current download speed of network while playing videos in flutter

I am using video_player_flutter_master for playing videos but i also want to show the download speed of the network just like Traffic State Api in android for getting received bytes. I am not able to getting this in flutter only plugin available for…
Anm Nima
  • 11
  • 1
1
vote
0 answers

How to correctly calculate download speed from Httpclient ReadAsStreamAsync?

How can I correctly calculate download speed from Httpclient ReadAsStreamAsync? I'm trying to get the old download speed by subtracting TotalBytesRead - OldTotalBytesRead, it works as intended, but the the problem is on the elapsed time, how can I…
1
vote
0 answers

Download speed test

I am writing an app in C# to measure and display download speed. I have the following code to download a 62MB file in chunks, which seems to work well for my purposes. I plan to extend this to measure the time required for each chunk, so it can be…
1
vote
1 answer

Yahoo-Finance Query Speed

I'm currently working on a project that involves querying yahoo-finance for many different ticker symbols. The bottleneck is acquiring the data from yahoo, so I was wondering if there is a way I might go about speeding this up. If I used multiple…
ZenPylon
  • 518
  • 4
  • 11
1
vote
2 answers

Download speed for Open Hardware Monitor

I'm making some changes for Open Hardware Monitor. I will add the network adapter download and upload speed. But when I calculate the download speed I get a wrong calculation. I can't use a timer to calculate the correct download speed because of…
JimmyD
  • 2,629
  • 4
  • 29
  • 58
0
votes
0 answers

Implementing internet speed test in Android/IOS application created in unity 2021.3.22f1

I am creating application in unity 2021.3.22f1 (for android and IOS mobiles). I am searching for any options to implement the speed test in the app. I have a hard time finding any paid or free services that let me do api calls from c# to get the…
0
votes
0 answers

Calculate minimum required mobile data speed (telco SIM card) for a given mobile website

Background: We have a web application, that is accessible as a hybrid mobile app. The mobile phones use 4G / LTE SIM cards for accessing the application which is hosted on a public cloud infrastructure. Problem at hand: We have to calculate the…
aeon
  • 1,029
  • 2
  • 13
  • 23
0
votes
0 answers

Limit Download Speed PHP Remote Files

I am looking to limit download speed of a file, I have found the below thread on here which works wonders for locally stored files, however my files are stored on an external server and I'm not entirely sure how to make this work with said…
0
votes
0 answers

Browser Network Request Fetch Time With Javascript

I am trying to collect download speed logs of user by fetching a static Image (png) file from cdn after every few seconds. The issue is the Time it shows in Devtools of browser is very far from the time I am getting with fetch api. Since…
0
votes
1 answer

Show the download speed in Google drive Python

How do I show the download speed in Google drive API Python I want to modify it to show the download speed def download_file(id): fileStats=file_info(id) # showing the file stats print("----------------------------") …
blank
  • 1
  • 1
0
votes
1 answer

What is the value of uppercase "KB" in Computer Science? What is difference between uppercase "KB" and lowercase "kb" in CS?

Am I correct: Lowercase k is equal to 1000 in CS and Uppercase K is equal to 1024 in CS?
0
votes
1 answer

Python Google Drive Api limit download speed

Downloading file from Google Drive without problem. I need limit download speed like 512kbps, 1024kbps per second. Tried to time.sleep(1) and change chunksize but it's not working perfectly. Maybe there is fuction to limit speed. http =…
user3525010
0
votes
0 answers

Calculate Download Speed Like ookla

Can anyone please let me know how I can properly calculate the download speed like Ookla speed tester. I have tried to calculate it with the following approach but still not getting the correct result. I am downloading a file from CDN and…
Tin Kills
  • 11
  • 1