Published on September 26, 2019 (over 4 years ago)

A Quick Intro To Video From Somebody Who Knows Nothing About Video

Salar Khan
By Salar Khan4 min readVideo education

I recently joined Mux as somebody who knows nothing about video. I mean, I'm pretty good at finding funny videos on Instagram, but Mux unfortunately wasn't hiring for that. Instead, I was hired as a Distributed Systems Engineer, and my first task was to get a basic understanding of how video streaming over HLS works.

How do video players and servers communicate over HTTP? Is it even HTTP? What's the "language" they speak with each other? How can you represent the structure of a video in plain text? I had questions, and Google was about to help me answer a lot of them.

Since I didn’t know what HLS even stands for, I decided to start poking around the happiest of paths: a POST to /video.

LinkHomework

First, let’s build some context around HLS. Open up howvideo.works and read everything you see there. You should now have some understanding of manifests, renditions, and segments. If you don't, you probably spent too much time looking at those sweet, sweet animations. Go back and read again.

LinkLet’s curl Things

Visit mux.com and scroll down to the Video, in seconds. header. Clicking the Run Request button below will upload a video file to our servers, process it, and populate the response container to its left. Copy the playback_id out of there and curl it like this in your terminal:

text
$ curl https://stream.mux.com/{playback_id}.m3u8

Which will give you this:

text
#EXTM3U #EXT-X-VERSION:5 #EXT-X-INDEPENDENT-SEGMENTS #EXT-X-STREAM-INF:BANDWIDTH=2516370,AVERAGE- BANDWIDTH=2516370,FRAME-RATE=29.970000,CODECS="mp4a.40.2,avc1.64001f",RESOLUTION=1280x720,CLOSED-CAPTIONS=NONE https://{cdn-shenanigans}/{id}/rendition.m3u8?{query-params} #EXT-X-STREAM-INF:BANDWIDTH=1085048,AVERAGE-BANDWIDTH=1085048,FRAME-RATE=29.970000,CODECS="mp4a.40.2,avc1.64001e",RESOLUTION=668x376,CLOSED-CAPTIONS=NONE https://{cdn-shenanigans}/{id}/rendition.m3u8?{query-params} ...

What is returned is a list of rendition manifests, with plenty of other information stuffed in there for good measure. Let’s break down the top level headers:

  • EXTM3U - this file is an Extended M3U rendition file.
  • EXT-X-VERSION - the version number of the playlist file, its associated media, and its server.
  • EXT-X-INDEPENDENT-SEGMENTS - each segment in this manifest is standalone, and can be decoded without information from other segments.

Above the url for each one is another header describing the manifest itself. Use that info to find and copy the 1280x720 resolution manifest url and curl it like so (you'll likely need to surround the url with single quotes '):

text
$ curl 'https://{cdn-shenanigans}/{id}/rendition.m3u8?{query-params}'

You should see the following:

text
#EXTM3U #EXT-X-TARGETDURATION:6 #EXT-X-VERSION:3 #EXT-X-PLAYLIST-TYPE:VOD #EXTINF:5, https://{cdn-shenanigans}/v1/chunk/{id}/0.ts?{query-params} #EXTINF:5, https://{cdn-shenanigans}/v1/chunk/{id}/1.ts?{query-params} ...

Note that this file contains a EXTM3U and EXT-X-VERSION header too! Let's check out the other ones:

  • EXTINF - specifies the duration of this segment in seconds.
  • EXT-X-TARGETDURATION - specifies the maximum segment duration in seconds.
  • EXT-X-PLAYLIST-TYPE:VOD - a value of VOD (Video On Demand) indicates that the playlist file must not change. A value of EVENT allows for segments to be appended to the end of the playlist.

Each url here represents a “chunk”, also known as a "segment". Remember those from howvideo.works? (Me either, click here for a refresher.)

text
curl 'https://{cdn-shenanigans}/v1/chunk/{some-id}/1.ts?{query-params}' | hexdump -C

We pipe the response to hexdump because the response you’d otherwise see in your terminal is a lot less pretty. To see what this hexdump actually represents, open up Quicktime, navigate to File > Open Location, and paste that url in there. You should now be enjoying video and audio content from the chunk that you requested.

By the way, you could have also pasted a manifest url into Quicktime and gotten the full video instead of just a segment/chunk of it. Double neat!

This was one of my first “Aha!” moments at Mux. I had uploaded plenty videos to the internet, but had no idea how the players on my phone/browser/AppleTV requested & parsed any of those videos in a sane manner. Seeing the breakdown from video to manifest to chunk reminded me of when I first saw the relationship between HTML/JS and a website. I was looking at the foundation of something I already had so much familiarity with, yet so much more to learn about.

LinkNow What?

If you want more details on any of the things we've gone over today, take a peek at the IETF’s RFC 8216, a document that “describes a protocol for transferring unbounded streams of multimedia data”, also known as the HLS RFC. It should answer some of your questions, and probably make a lot more new ones.

Thanks for following along! You have now gotten your hands dirty with HLS. If you’re a developer and this sounds neat to you too, then you might be interested in working with me at Mux, or checking out Demuxed, the conference for video engineers coming up in October!

Cover Photo by Kai Brown on Unsplash.

Written By

Salar Khan

Salar Khan – Sr. Software Engineer

Previously fiddled with matching algorithms @ Postmates. Will aggressively show you pictures of his baby nephew.

Leave your wallet where it is

No credit card required to get started.