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
1
vote
0 answers

Swift - How to get the upload speed and not download speed?

i want to know how to get upload speed in swift. Actually i have this code from Right way of determining internet speed in iOS 8 class SpeedTest: UIViewController, URLSessionDelegate, URLSessionDataDelegate { typealias…
kirusamma
  • 69
  • 6
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
  • 399
  • 3
  • 9
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,089
  • 3
  • 23
  • 47
0
votes
0 answers

Download Speed from my google cloud instance Server it is very slow

I have this problem, I usually download the lasted backup of my app for further upgrade. About a week ago the download speed when I try to download any file from my server to my PC. It's an impossible task because the download rate, it's about…
0
votes
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…
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
0
votes
1 answer

Why is the file downloading work slowly when I use my callback progress with curl?

I have this simple python script, that downloads file using curl. Also it calculates bandwidth. Here is the whole script: import pycurl import time next_time = 0 # Callback function invoked when download/upload has progress def…
Arr
  • 15
  • 2
0
votes
1 answer

Measuring download speed when using HttpURLConnection Java

So I'm designing a download manager using java, I need to show the download speed to the user. below is the code I've used to find the download speed in KB/s but I don't think it's measuring download speed correctly. it's measuring my download speed…
Mahdi Ghajary
  • 1,355
  • 9
  • 16
0
votes
0 answers

Best method to detect the download capabilities of user, using Javascript

I need to detect the download capabilities of the users device in order to figure out whether I should give them a large 50mb video to download or a small 40kb image to download. My first thought was to detect the internet connection of the user…
Ian S
  • 1,155
  • 2
  • 14
  • 39
0
votes
1 answer

PHP fread ssh stream significantly slow

Scenario: I needed a function to get STDOUT of a command run through SSH asynchronously. This has various uses including (and most importantly) reading files through SSH. An important feature of this function is that it is asynchronous, hence I can…
Christian
  • 25,801
  • 14
  • 102
  • 151
0
votes
3 answers

Good techniques for serving several images per page

I have a web application that needs to serve a large amount of small images per page (up to 100). I can use caching to reduce calls to the database/backend, but there is a noticeable impact from having to make so many separate requests for the…
Tom
  • 28,567
  • 26
  • 84
  • 120