Unit 1 · Digital Information · Lesson 1.15 · Flex

Flex Day

The test is behind you. Today has two jobs: turn your test back into learning, and answer one question that sounds simple and isn’t — how big is a minute of video?

Big Idea 2 — DataDebrief + preview

Before this lesson

No reading. Bring your returned test and something to write with. Everything else is on this page.

1

Where We Are

People→ Bits→ Programs→ Internet→ Security→ Big Data→ Impact

The last time you’ll stand in Bits as home base. One foot is already in Programs — but before you go, today’s estimate reaches all the way forward to Big Data, because “how big is a minute of video” is where you first feel how much bits add up.

2

The Hook

500 hours / minute. That is roughly how much video is uploaded to YouTube every single minute of every day. Hold that number for a second, then answer a smaller one that turns out to be the hard part: how many bits is just one minute of one video — before anyone compresses it?

Most people guess “a few megabytes.” You now know enough to work out the real answer, and it is going to be much bigger than that. Everything you learned this unit — pixels, RGB, bits per pixel, and why compression has to exist — is about to land in one number.

3

The Idea — a Debrief, Then an Estimate

First: read your test like data

A returned test is a dataset about you, and the point is not the grade at the top — it’s the pattern in what you missed. Sort your wrong answers into these three buckets. The bucket tells you what to do differently, which is far more useful than “study harder.”

BucketWhat it looked likeThe fix
CarelessYou knew it; you misread the question or slipped on arithmetic.Slow down and re-read the last line. Free points.
Confused pairOverflow vs round-off, 2n vs 2n−1, lossless vs lossy, values vs largest value.Re-learn the difference, not each term alone.
Never learnedYou had no idea. The concept didn’t stick the first time.Reopen that one lesson. Just that one.
Why this matters past today. This is the same move you’ll make in Unit 5 with real datasets: don’t react to one data point, find the pattern across many. Your test is your first dataset. Most students never do this, which is exactly why it works.

Then: the estimate, built from what you know

Here is the whole calculation, and every step is something you learned this unit:

one pixel = 24 bits (8 each for R, G, B)  →  one frame = pixels × 24 bits  →  one second = frame × frame rate  →  one minute = × 60.

Take a normal 1080p video: that’s 1920×1080 = about 2.07 million pixels per frame, at 30 frames per second. Multiply it out and one uncompressed minute is roughly 11 gigabytes — more than a whole phone’s worth of photos, for sixty seconds of footage. Yet the version you actually stream is around 50 MB. That gap, more than 200 to 1, is compression (1.8–1.9) doing the single most important job on the internet. Work it out yourself below.

4

Try It — The Video Size Estimator

Pick a resolution and frame rate, set how long the clip is, and watch the raw bits pile up. The “uncompressed” number is the honest pixel math; the “streamed” number is what a typical compressed version actually costs.

Resolution:
Frame rate:
Length:
one pixel is 24 bits  /  one frame is —
uncompressed: —
a typical streamed version: —  

Everything above is multiplication you could do on paper — and Python does it in three lines. This is the arithmetic, not a new idea:

# A 1080p frame, uncompressed
pixels    = 1920 * 1080          → 2073600
bits      = pixels * 24          → 49766400   # per frame
per_min   = bits * 30 * 60 / 8   → 11197440000 # bytes ≈ 11.2 GB

Notice the / 8 at the end: that converts bits to bytes, because storage is measured in bytes. Miss it and your answer is 8× too big — exactly the bit-vs-byte trap from the test.

5

Vocabulary

No new terms today. The estimate above is built entirely from words you already own — and if any of these felt shaky while you worked, that is your signal to reopen the lesson in brackets:

pixel · RGB 1.5
One square of flat color, stored as three values (red, green, blue) — the 24 bits per pixel this whole estimate stands on.
bit vs byte 1.1
Eight bits make a byte. The / 8 step is the difference, and forgetting it is the classic mistake.
data compression 1.8 – 1.9
The reason 11 GB becomes 50 MB. Without it, streaming video would be impossible.
6

Check

Four questions on the estimate you just built. Pick an answer for instant feedback.

0 of 4 answered
7

Impact Check

Who pays for the bits?

If raw video is 11 GB a minute and streamed video is 50 MB a minute, compression looks like a pure win — and mostly it is. But the streamed number isn’t one number. When a network is busy or a data plan is small, the video quality drops automatically: the bitrate falls, the picture softens, detail disappears. The student watching the same lecture on a capped phone plan gets a blurrier, choppier version than the one on home fiber — same video, different bits delivered.

That is the digital divide showing up in the arithmetic you just did, and it is a preview of Unit 8. Compression made streaming possible for everyone; the tradeoffs inside it still land unevenly on whoever has the least bandwidth. Both things are true at once.

8

Connections

Came from all of Unit 1 — the estimator is the whole unit in one multiplication: pixels and RGB (1.5), bits and bytes (1.1), frame rate as sampling in time (1.6), and compression (1.8–1.9) explaining the gap.
Next is Unit 2 — you stop describing how data is stored and start writing the instructions that make a machine act on it. Bits stay underneath everything.
Returns in Unit 5 — “how big is a minute of video” becomes “how big is all of it,” and this is the first time big data feels big instead of sounding big.
Returns in Unit 6 — those bits have to travel. The photo trip from Day 1 finally gets its network, promised then, delivered there.
← 1.14 Test Day