<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1455318828112554&amp;ev=PageView&amp;noscript=1">

Broadcasting, BoxCast Features + Updates, Live Streaming Software

Person using iPhone and laptop to access a live stream

What is HLS Streaming and When Should You Use it for Live Video?

Understanding streaming protocols can make a huge difference for your broadcast. Latency, reliability of the stream, and accessibility for your audience are all key factors to consider.

Whether you're a broadcasting and live streaming pro or you’ve just set up your channel today, this blog is meant to explore the benefits, pitfalls, and use cases of HLS streaming to get the most out of every performance.

Table of Contents

What Is HLS Streaming?

HLS, or HTTP Live Streaming, was originally developed by Apple in 2009 in collaboration with the latest iPhone at the time. Nowadays, HLS is overwhelmingly preferred in streaming of all types.

The prominence of HLS videos can be attributed to technical features like encryption and ease-of-access to content, but there are also plenty of quality-of-life improvements for both creators and their audience.

iPhone, MacBook, and iPad playing live streams on-screen

While older, obsolete formats may try to stream the entire video in one session, HLS takes a different approach. With HLS, MP4 videos are chopped up into 10-second chunks, after which they’re organized and indexed as an M3U8 Playlist file, which is then stored on an HTTP server and can be recalled for later viewing.

Read on to discover the strengths and weaknesses of HLS to determine whether or not it's right for your stream.

BoxCast is built to use HLS seamlessly:

  • HD mobile streaming
  • Adaptive bitrate technology built in
  • Reliable broadcasting with less buffering and better quality

Availability

There are a number of factors that have helped HLS in its rise to prominence over other formats. Technical features like the ability to go through firewalls and proxy servers, allowing for easier access to content, as well as encryption and secure key distribution have certainly helped the upward climb. The wide-ranging availability of HLS has also helped make it a staple for streaming.

These are just some of the platforms that support HLS protocol for streaming:

  • All Google Chrome browsers
  • Safari
  • Microsoft Edge
  • iOS devices
  • Android devices
  • Linux devices
  • Microsoft devices
  • macOS platforms

Reliability

Reliability is the biggest advantage of the HLS format over the competition. By breaking up and streaming content in chunks, you’ll lower the strain on servers and streaming devices, and therefore provide a much smoother stream. This is especially important for ultra-high-quality broadcasts, as internet speed for 4K streaming has high system requirements.

In spite of how connected the world is to the internet, many people still find themselves plagued by dead zones, dropped signals, or other inconveniences that would interrupt their stream.

If your connection to the platform is poor, uploading your stream can become a real headache — and your audience can be left with choppy, constantly buffering videos, which they may turn off and never return to.

Adaptive Bitrate Streaming

To prevent these problems and retain your audience, HLS is able to change the bitrate to provide a smoother viewing experience. Uploaders can encode their content at different bitrates (ranging from 320p up to 4K in some cases) to adapt to visual preference and connection availability.

Gif diagram showing bitrate streaming and the cloud

These settings can be accessed manually by the user (usually via an on-screen widget) but many streaming platforms are capable of detecting when the internet connection is poor, or if other issues may be affecting the stream. In this case, software is able to determine the best visual quality for your stream without being subject to irritating lagging every few seconds.

This is crucial in today's streaming market, where so many audience members are tuning in by streaming from mobile devices. These viewers are likely out of the office or home, and may not have access to high-speed internet as they watch their video.

HEVC

Another advantage of HLS is the use of HEVC, or H.265 compression methods. This is a direct upgrade over the previous AVC (H.264) compression. As can be expected of a worthwhile successor, HEVC is capable of compressing data up to 50% more efficiently than its predecessor.

Diagram showing comparison between HEVC and AVC with compression simulation

Living up to its name, the comparison between H.264 vs H.265 is pretty one sided. This extremely efficient compression makes storage of your content more manageable, as well as allowing easier retrieval of the data when you want to stream. As both of these processes are streamlined in this way, your servers will be able to process the data more easily, and in the age of 4K and even 8K videos, the best possible compression is needed if you want to continue to give your audience the best possible stream quality available to them.

For further reading on getting the best-quality stream, check out our blogs on the best video streaming protocol and comparing HDMI vs. SDI.

Multiple Audio Tracks + Closed Captions

HLS technology offers the advantage of incorporating multiple audio tracks into a single video, which is a valuable feature. Even though this capability is not currently available through BoxCast, it does provide an efficient way to stream content in various languages, ensuring that your audience can enjoy your stream in their preferred language. This makes it an excellent choice for catering to a diverse and extensive audience.
 

Live stream playing on an iPad with presenter speaking and closed captions

An additional advantage of HLS is its capability to incorporate closed captions into your video. This feature enhances the accessibility of your stream, especially for viewers who have hearing impairments or are in noisy and crowded locations.
 

To learn more about optimizing your stream's audio, read our post on common live stream audio problems.

DRM Support

HLS is compatible with Digital Rights Management (DRM) technologies, which enables a high level of creator control — even when your broadcast is in your audience's hands.

DRM is used to prevent digital media from being used illegally or beyond the specifications of the creator. This tech can be used to prevent copying and redistribution of content, and can be customized to more granular settings like limiting the number of playbacks available on a video, the window of time to access it, and so on.

This could be done to protect against plagiarists, as well as lend your broadcast the feeling of a limited-time offer to encourage more viewers to tune in so they don’t miss out.

Embedded Ads

Ad revenue has become one of the biggest sources of income for broadcasters of all stripes. No longer can we escape to YouTube to dodge the constant product shilling that was cable TV.

If you’re a smaller broadcaster, it’s wise to include some branding before your stream begins. This way, your audience knows how to look for you later to find more.

Consumers may see ads as little more than an annoyance, but they can be critical to you as a broadcaster. Whether you're making money off the ads themselves or you have a stake in the product being advertised, these marketing opportunities are what keeps the lights on in some broadcasters’ studios.

Luckily, HLS comes ready to handle the demand of a preroll ad while keeping in mind the delicate temperament of most audience members. An easy way to get ads into your stream without encoding them to every single video is to set the ad to play as a separate video preceding the primary stream.

This has some pitfalls, as playing one video right after the other, sometimes live, can be very demanding on your network. Most HLS videos start at a lower bitrate to maintain smoothness and ramp up the quality shortly after they begin. This may not seem like much of an issue, but it can create a rather jarring contrast when your stream transitions from the ad — now rendered fully and beautifully for their enjoyment — to the actual broadcast, which will still be in the low-bitrate format.

This juxtaposition can make your primary broadcast look low budget or poorly made, and that simply won't do. The solution? Tell your platform you'll be playing the ad followed by the main video. This can be accomplished using the EXT-X-DISCONTINUITY to alert your client a change is coming.

For example, if you've got an 18-second ad that plays before your video, it should look like this:

#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-VERSION:4
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:10.0,
ad0.ts
#EXTINF:8.0,
ad1.ts
#EXT-X-DISCONTINUITY
#EXTINF:10.0,
movieA.ts
#EXTINF:10.0,
movieB.ts

HLS Drawbacks

HLS's Achilles’ heel is its latency — roughly 15–30 seconds of delay can be expected when streaming using this method. Half a minute might not seem like much, but depending on the type of broadcast you’re operating, it can make a difference to the stream and your audience's experience.

Live streams with active chat rooms are some of the most heavily affected by this issue. Plenty of streamers create their content with the intention of interacting with fans, keeping a dialogue going, and forming a feeling of community and connectivity between themselves and the viewers.

This can be difficult to maintain if the on-screen talent has to constantly backtrack and re-address old comments. One way to combat this is to have moderators who can be a buffer between the on-screen talent and the online chat.

All this is not to say that HLS is in bad shape when it comes to latency. Given the better compression and easier processing of the data, some latency is a small price to pay when compared to interruptions mid-stream due to buffering — or even worse, complete disconnections. In some cases, the latency of HLS can actually be turned to the advantage of your broadcast.

HLS Use Cases

Athletic Streams

While many types of streaming benefit heavily from real-time, zero-delay footage being delivered right away, athletic streams allow you to turn the latency of HLS into an advantage.

Many sports feature clock stoppages and play reviews, and so many fans are already used to being a little behind on the action. The delay can allow you to ensure that the correct calls are made by commentators or that the proper graphics are displayed during a goal. You can even embed a stream scoreboard overlay, so your audience can keep track of every point.

Football game live stream with scoreboard overlay

Life for athletes can be hectic. Your audience can find themselves just as busy in their own lives. Whether they're watching the game on the bus ride to work because they never miss a game or they're putting their favorite team on as a little extra motivation in the gym, plenty of people who enjoy watching athletics are on the go themselves.

Thanks to HLS's adaptive bitrate streaming, every audience member can catch the action in the highest possible quality. You'll want to make sure you have the ideal shutter speed for sports as well as the right frame rate — otherwise, you could miss critical details which define a play.

As a further advantage, many of these people taking their devices with them to watch their sports are using smartphones and other tech with small screens. The smaller screen makes the drop in quality less noticeable.

Community Streams

HLS has plenty of benefits to offer as a community and business live streaming solution. The superior compression allows for much more video content to be stored more easily. This can be extremely important for archiving purposes and posterity in both corporate and government environments. As a fortunate tagalong, this also means retrieving and streaming the data, in its more streamlined state, is less stressful for community servers to process.

Live stream of a government city council meeting

Government live streaming like town halls or press events can be captured and broadcast to the entire community — whether it’s for celebrating a holiday or amending a local bylaw. This ease of access is great for these purposes, since many people may be too busy to attend even virtually. Using HLS and enjoying the aforementioned benefits, your community can get the info they need reliably from well-managed archives.

Event Streams

Broadcasting an event takes a ton of coordination to do properly. You need to make sure your venue is ready, the talent is prepared to go on, and your hardware is in working condition and well protected from the elements and environment.

For most events, the built-in latency of HLS is a non-factor, as these types of broadcasts typically focus on a presenter or presenters who then perform for the audience. This has little to no interaction with the audience, so they don't need to feel like they're right up to the second.

Concert audience attendees cheering at a live performance

If you're live streaming a concert or other audio-based performance, you need to determine whether you should be using balanced or unbalanced audio cables, to mitigate sound pollution.

More challenging with these kinds of broadcasts is maintaining a smooth stream that displays in the highest possible quality for your audience. HLS handles this problem easily, and the adaptive bitrate and general smoothness and ease on your servers will help to keep your audience hooked up with the best-quality content whenever they tune in.

Game Streams

Video game streaming is one area where the delay of HLS is a clear benefit as opposed to a weakness. Many streamers are very interactive with their chats — consulting them during let's plays, bantering during competitive play, and generally creating a community atmosphere on their stream. So it would seem like they’d want to be as close to real time as possible for their broadcast, right?

Wrong. While quick responses and authentic interactions can be major selling points for many gamers, plenty of others prefer to use the delay as a built-in means of quality control.

Video gamer streaming their PC gameplay

Game streamers tend to interact with their viewers more than most other broadcasters, so they and their editors often have their work cut out for them in sifting through good, interactive content and separating it from the mountains of abuse, toxicity, and terms of service breaking comments that could land the entire stream in hot water.

Another consideration — a major one for competitive gamers — is stream sniping. This is the practice of tuning in to a gamer's stream specifically to gain access to their screen and therefore their in-game location, actions, and all other info that effectively dooms the spied-upon party to lose.

The latency of HLS can help level the playing field against these so-called stream snipers, and prevent a gaming streamer from being embarrassed by a blowout loss. Or, more realistically, ruining their online ranks and scores.

How to use HLS with BoxCast

HLS is already incorporated into the BoxCast infrastructure. Any time you stream to BoxCast and use a BoxCast embed code or m3u8, it’ll be delivered to your viewers in HLS — no matter what device they’re watching on. It also doesn’t matter which type of device you are streaming from. You can use Producer, the Broadcaster app, a BoxCast encoder, or your own RTMP encoder.

Laptop streaming live with Producer by BoxCast

The only destinations that may or may not use HLS are destinations that are sent out RTMP from BoxCast to other services, like YouTube or Facebook. It’s very possible other services are also using HLS, but it’s ultimately up to that platform what protocol they use to deliver the stream.

There are a number of creative ways to stream via the m3u8 link with BoxCast. You can use a third-party app to embed the stream so your viewers can watch from your own mobile app. BoxCast offers our m3u8 on most plans from the embed page. You can use a software development kit (SDK) to integrate broadcasts into your stream. You can also access BoxCast’s API for better navigation of your content.

It’s important to keep your options open as well as know the possible downsides of using an m3u8 code to stream. Because m3u8 links only show as active when you’re streaming, some services like Roku have trouble finding the link when you’re offline — which can cause issues if you don’t have a developer who knows how to work around them.

Another downside to using an m3u8 is that most services (including BoxCast) aren’t able to retrieve analytics unless you’re using their player. When the m3u8 is used to stream to something other than their player and embed code, it’s impossible to track viewer data.

FAQ

Which video platforms support HLS streaming?

  • All Google Chrome browsers
  • Safari
  • Microsoft Edge
  • iOS devices
  • Android devices
  • Linux devices
  • Microsoft devices
  • macOS platforms

Does HLS have a high latency?

The latency on an HLS stream is usually 10–15 seconds. This can be an advantage or disadvantage, depending on the type of streaming you’re doing. Most viewers expect a little delay when watching a stream.

What are the advantages of HLS streaming?

  • Multiple audio tracks
  • Embedded closed captions
  • H.265 encoding
  • DRM support
  • Embedded advertisements
  • Easier to process for servers

Are HLS streams dynamic?

Yes. When you’re watching a stream with HLS, the video player is able to detect your internet strength and choose the highest bitrate your internet is able to handle, giving you the best quality stream for your situation.

Final Thoughts + Further Reading

While the ubiquity of the HLS format has certainly been established in the past several years, it's helpful to know the how and the why behind this streaming protocol. Become a better broadcaster by leveling up your knowledge on these other streaming technologies and components: