Computing, IT, Networking & Security Bandwidth, Throughput & Latency IEC 80000-13 (binary prefixes), SI decimal prefixes

Mbps to MB/s Speed Converter Calculator

Your ISP sells megabits per second. Your browser reports megabytes per second. They differ by a factor of eight, which is why a 300 Mbps line downloads at about 37.5 MB/s and not 300. This converter moves between every common bit-rate and byte-rate unit, shows the decimal (MB, GB) and binary (MiB, GiB) forms side by side, and turns the rate into the numbers you actually care about: how much data per hour, and how long a given file takes. Enter a protocol overhead figure if you want the realistic throughput rather than the wire rate.

Calculator

This calculator runs in your browser. Enable JavaScript for live results — the inputs, formula and worked example below remain fully readable without it.

Inputs this calculator takes, with typical values
InputWhat to enterExample
Link or measured speedThe advertised or measured rate; switch the unit if your figure is in Gbps, kbps or MB/s.300 Mbps
File or transfer sizeThe size of the thing you want to move; used only for the download-time figure.5 GB
Protocol overheadSet to 0 for the exact unit conversion; 4-8% is typical for TCP/IPv4 over Ethernet, and 10-15% for a tunnelled or wireless path.0 %

It returns

  • Megabytes per second — Decimal megabytes: 1 MB = 1,000,000 bytes.
  • Megabits per second
  • Mebibytes per second
  • Data per hour
  • Data per 30-day month
  • Transfer time
  • Transfer time, written out

The formula

MB/s=Mbps8
t=S8R

In plain text: MB/s = Mbps ÷ 8; MiB/s = Mbps × 10⁶ ÷ (8 × 2²⁰); t = size_GB × 8000 ÷ Mbps

  • MbpsBit rate in megabits per second (1 Mb = 1,000,000 bits) (Mbit/s)
  • MB/sByte rate in decimal megabytes per second (1 MB = 1,000,000 bytes) (MB/s)
  • MiB/sByte rate in mebibytes per second (1 MiB = 1,048,576 bytes) (MiB/s)
  • tTransfer time for a file of the given decimal size (seconds)

The factor of 8 is bits per byte. The additional factor of 1.048576 between MB and MiB is 2^20 ÷ 10^6, which is why binary units always read smaller for the same physical rate.

Updated Category Bandwidth, Throughput & Latency Verified against published test cases Reading time 11 min

Why 300 Mbps downloads at 37.5 MB/s

Networks are measured in bits, storage in bytes, and there are eight bits in a byte. That single fact accounts for the entire gap between the number on your broadband bill and the number in your download manager. Divide megabits per second by eight and you have megabytes per second: 300 Mbps ÷ 8 = 37.5 MB/s.

The convention is not arbitrary. A serial link genuinely transmits one bit at a time, so its natural rate is bits per second, and every physical-layer standard from RS-232 to 400 Gigabit Ethernet is specified that way. Storage, by contrast, is addressed in bytes, because a byte is the smallest independently addressable unit in almost every architecture. Both units are correct for their own domain; the confusion only arises where the two meet, which is exactly where you are standing when you download a file.

Watch the capitalisation, because it is the only thing distinguishing the two in writing. A lowercase b is a bit and an uppercase B is a byte, so Mb/s and MB/s differ by a factor of eight. Marketing material and even some equipment vendors get this wrong; when a specification sheet is ambiguous, the giveaway is the magnitude. A consumer internet plan quoted at 500 is almost certainly 500 Mbps, because 500 MB/s would be a 4 Gbps line.

A second, smaller factor lurks behind the first. A decimal megabyte is 1,000,000 bytes; a mebibyte is 220 = 1,048,576 bytes. Windows Explorer, most Linux tools by default, and RAM specifications use the binary quantity but label it “MB”. Storage vendors and network standards use the decimal one. The ratio is 1.048576 at the mega scale, 1.073741824 at the giga scale, and 1.0995 at the tera scale — which is why a 1 TB drive shows up as 931 GB.

The three conversions, and the one that people get wrong

Bit rate to byte rate is a division by 8. This is exact and there is nothing to argue about: 1 Gbps = 125 MB/s, 100 Mbps = 12.5 MB/s, 25 Mbps = 3.125 MB/s.

Decimal to binary bytes multiplies by 106 and divides by 220. Starting from a bit rate, MiB/s = Mbps × 1,000,000 ÷ (8 × 1,048,576). For 100 Mbps that is 100,000,000 ÷ 8,388,608 = 11.9209 MiB/s. The 4.86% shortfall against 12.5 MB/s is not overhead and not a loss — it is the same quantity of data counted with a different-sized unit.

Rate to volume multiplies by time. Megabytes per second × 3,600 gives megabytes per hour; divide by 1,000 for gigabytes per hour. A 300 Mbps line running flat out moves 135 GB in an hour and 3.24 TB in a day, which is worth knowing before you assume an unmetered plan.

Rate to transfer time is where the mistake happens. The correct form is time = size in bytes × 8 ÷ bit rate in bits per second. Dividing a size in gigabytes by a rate in megabits gives a number with no meaning, and dividing a size in gibibytes by a rate in decimal megabytes silently overstates the time by 7.4%. Keep the base units consistent — convert everything to bits, or everything to decimal bytes — and the arithmetic behaves.

Real transfers run slower than any of this, for reasons that are not unit conversion. TCP/IPv4 headers over Ethernet consume roughly 4–8% of the wire rate for large packets, more for small ones. Wi-Fi, VPN encapsulation and mobile links cost more again. The overhead field on this page applies a flat reduction before every conversion so you can quote realistic throughput; leave it at zero when you want the pure unit conversion.

You need to move a 25 GB virtual-machine image across a 500 Mbps link, and you want a realistic estimate rather than the wire-rate fantasy.

  1. Apply the overhead. 500 × (1 − 0.06) = 470 Mbps of usable throughput.
  2. Convert to bytes. 470 ÷ 8 = 58.75 MB/s.
  3. Convert to binary units, for comparison with what your file manager will show. 470,000,000 ÷ 8,388,608 = 56.03 MiB/s.
  4. Convert the file size to bits. 25 GB × 109 = 2.5 × 1010 bytes, × 8 = 2.0 × 1011 bits.
  5. Divide by the rate. 2.0 × 1011 ÷ (470 × 106) = 425.5 seconds, or about 7 minutes 6 seconds.
  6. Sanity-check with the shortcut. 25 × 8,000 ÷ 470 = 425.5 s. Same answer — the shortcut is just steps 4 and 5 collapsed.
  7. Volume per hour. 58.75 MB/s × 3,600 ÷ 1,000 = 211.5 GB per hour. Sustained for a day that is 5.08 TB, which would breach most business plans with a fair-use clause.

Compare the 425.5 s answer with the naive one. Ignoring overhead gives 25 × 8,000 ÷ 500 = 400 s, so the overhead costs 25.5 seconds — 6% of the time, exactly as expected, because a 6% reduction in rate produces a 1/(1−0.06) = 6.4% increase in duration.

How to read the result

Compare like with like before you call your ISP. A speed test that reports 280 Mbps on a 300 Mbps plan is delivering 93% of the wire rate, which is normal once framing and TCP overhead are counted. A file download that reports 28 MB/s on the same line is delivering 224 Mbps — also fine, because a single TCP stream to a distant server is limited by round-trip time and window size, not by your access line.

The per-hour and per-month figures are ceilings, not forecasts. They assume the link runs at full rate continuously, which no real user does. Use them to check whether a data cap is even reachable, or to size an offsite backup window.

If a transfer time comes out longer than a day, reconsider the transport. Moving 100 TB over a 1 Gbps link takes about nine and a half days of continuous transfer. Physically shipping disks — which every major cloud provider offers as a service — is routinely faster for datasets at that scale, and the calculator flags any transfer beyond 24 hours for that reason.

Do not confuse the binary and decimal figures with a performance problem. If your download manager shows 11.9 and your calculation said 12.5, the difference is the unit, not the network.

Common connection speeds converted

Wire-rate conversions with no protocol overhead applied. The 5 GB column is a typical HD film or a mid-sized VM image.
Link speedMB/sMiB/sGB per hourTime for 5 GB
10 Mbps1.251.194.566 min 40 s
25 Mbps3.132.9811.2526 min 40 s
50 Mbps6.255.9622.513 min 20 s
100 Mbps12.511.92456 min 40 s
300 Mbps37.535.761352 min 13 s
500 Mbps62.559.602251 min 20 s
1 Gbps125119.2145040 s
2.5 Gbps312.5298.021,12516 s
10 Gbps1,2501,192.094,5004 s

MB/s = Mbps ÷ 8. MiB/s = MB/s ÷ 1.048576. GB per hour = MB/s × 3.6. Time for 5 GB = 40,000 ÷ Mbps seconds.

MB or MiB: what the standard actually says

IEC 80000-13 defines the binary prefixes kibi, mebi, gibi and tebi (KiB, MiB, GiB, TiB) precisely so that the SI prefixes can keep their decimal meanings. Under that standard, 1 MB is 106 bytes and 1 MiB is 220 bytes, full stop. Adoption is uneven: macOS and most storage vendors follow it, Windows and much older software still label 220 bytes as “MB”, and RAM is always quoted in binary units regardless of the label. Network rates are unambiguously decimal — a 1 Gbps interface is 1,000,000,000 bits per second, not 230.

Mistakes that produce a wrong answer

  • Dividing by 10 instead of 8. A popular shortcut that is 20% wrong. There are eight bits in a byte; the extra loss people are half-remembering is protocol overhead, which is nearer 5%.
  • Mixing binary file sizes with decimal rates. A file your OS calls 5 GB may be 5 GiB, which is 5.37 decimal GB. Use the GiB unit option rather than typing 5 GB.
  • Assuming a single download saturates the link. One TCP stream over a long path is limited by window size divided by round-trip time. Parallel streams, not a faster line, are usually what fixes a slow single transfer.
  • Quoting upload speed from a download figure. Most consumer connections are asymmetric; a 300/30 plan uploads at a tenth of the rate it downloads, and backups care about the second number.
  • Ignoring the slowest hop. End-to-end throughput is set by the narrowest link and by the far end's own connection, not by your access speed alone.
  • Reading storage-array throughput as network throughput. A disk subsystem quoted in MB/s must be multiplied by 8 before you compare it with an interface quoted in Gbps.

When unit conversion is not the question you have

This converter answers a units question. Two neighbouring questions need different tools. If you are trying to work out how fast a circuit needs to be for a given number of users and applications, that is a sizing problem — use the network bandwidth requirement calculator, which aggregates per-application bitrates with concurrency and peak factors. If you are trying to work out why a storage system cannot keep up with the network, the constraint is usually operations per second rather than raw throughput, and the RAID IOPS and write penalty calculator is the right model.

Latency deserves a mention because it is what people usually mean when they say a fast connection feels slow. Throughput and latency are independent: a satellite link can deliver 100 Mbps with 600 ms of round-trip delay, which is excellent for downloading a film and unusable for a video call. The relationship that ties them together is the bandwidth-delay product — bit rate multiplied by round-trip time gives the number of bits in flight, and a TCP window smaller than that product caps a single stream well below the link rate. That is the mechanism behind almost every “my gigabit line only downloads at 200 Mbps from that server” complaint.

Finally, capacity planning at the storage end uses the same decimal-versus-binary distinction as the rate conversion here. A drive sold as 8 TB presents 7.28 TiB to the filesystem, and array-level overheads come off that again — the RAID capacity calculator works through both steps. If you are moving that data to or from a cloud provider, egress is usually billed per gigabyte of decimal transfer, so the GB-per-hour figure on this page is the one that maps onto the invoice; the cloud VM monthly cost calculator covers the compute side of the same bill.

Frequently asked questions

How many MB per second is 300 Mbps?

37.5 MB/s. Divide the megabit figure by eight, because there are eight bits in a byte. In binary units that is 35.76 MiB/s, which is the number Windows and most download managers will show. Real transfers land a few percent lower once TCP and Ethernet headers are counted.

Is 1 Gbps the same as 125 MB/s?

Yes, exactly. One gigabit per second is 1,000,000,000 bits per second, and dividing by eight gives 125,000,000 bytes per second — 125 MB/s in decimal units, or 119.21 MiB/s in binary units. That is the theoretical wire rate; expect roughly 112–118 MB/s of usable TCP throughput on a real gigabit Ethernet link.

Why is my download speed lower than my internet plan?

Three reasons stack up. The unit differs by a factor of eight, so a 300 Mbps plan can never download faster than 37.5 MB/s. Protocol headers take another 4–8%. And a single download is limited by the server, the path's round-trip time and the TCP window, none of which your access line controls. If a speed test shows close to the plan rate but a specific download does not, the bottleneck is at the far end.

What is the difference between MB and MiB?

A megabyte (MB) is 1,000,000 bytes and a mebibyte (MiB) is 1,048,576 bytes, a difference of 4.86%. IEC 80000-13 defines the binary prefixes so the SI ones keep their decimal meaning. The gap grows with scale: 7.37% at giga and 9.95% at tera, which is why a 1 TB drive reports as 931 GiB.

How long does it take to download a 50 GB game?

At 100 Mbps, about 67 minutes; at 300 Mbps, about 22 minutes; at 1 Gbps, about 6 minutes 40 seconds. The formula is size in GB × 8,000 ÷ Mbps, giving seconds. Add roughly 5% for protocol overhead and more if the game store throttles or your storage cannot write that fast.

How much data does a 100 Mbps connection use per month?

If it ran flat out continuously, 32.4 TB in a 30-day month — 45 GB per hour × 720 hours. No household comes close; the figure is useful mainly for checking whether a stated data cap is reachable at all, or for sizing a maintenance window for a bulk transfer.

What overhead percentage should I use?

For TCP/IPv4 over Ethernet with standard 1,500-byte frames, roughly 4–6% of the wire rate goes to headers and inter-frame gaps. Add more for IPv6, VLAN tags, tunnels or IPsec, and considerably more for Wi-Fi, where contention and management traffic can cost 40% or more of the nominal PHY rate. Set the field to zero when you want the exact unit conversion rather than a throughput estimate.

Do upload and download use the same conversion?

Yes — the arithmetic is identical in both directions. What differs is the rate itself: most cable and DSL services are asymmetric, so a 300/30 plan gives you 37.5 MB/s down and 3.75 MB/s up. Backups, video calls and file sharing depend on the upload figure, so convert that number rather than the headline one.

References