From ac7fd9dba1e9eea3d2365de801d56c59c9ea5b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Marci=C5=84czyk?= Date: Mon, 6 Dec 2021 11:18:52 +0100 Subject: [PATCH] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92c633b..a9ab2ab 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ How does it work? AWS lets us upload 75GB of Lambda functions. Each function can be 50MB in size. We simply split up the video into Lambda functions. There's a few problems with this though, first off Lambda only allows zip files. How do we get around this, we zip up the video. -Now we have another problem, to play the video we'd need to unzip it. That's where we cam do two little tricks, first when we zip up the file with 0% compression. This allows the original file to remain intact, but the zipping process just wraps some headers around the files (like a tarball). But video players aren't going to want to play a zip file, so that's where HLS standards come in to the rescue. +Now we have another problem, to play the video we'd need to unzip it. That's where we can do two little tricks, first when we zip up the file with 0% compression. This allows the original file to remain intact, but the zipping process just wraps some headers around the files (like a tarball). But video players aren't going to want to play a zip file, so that's where HLS standards come in to the rescue. By using HLS we can split the file into multiple chunks and create a playlist of videos to play seamlessly together. A m3u8 HLS file looks something like this ``` @@ -143,4 +143,4 @@ You can probably script this. Inspiration == -Laurent Meyer did a [great write up](https://medium.com/@laurentmeyer/deep-dive-in-the-illegal-streaming-world-cd11fae63497) about Google Drive streamers using PNG to cover their tracks. \ No newline at end of file +Laurent Meyer did a [great write up](https://medium.com/@laurentmeyer/deep-dive-in-the-illegal-streaming-world-cd11fae63497) about Google Drive streamers using PNG to cover their tracks.