Mamba is a Swift iOS, tvOS and macOS framework to parse, validate and write HTTP Live Streaming (HLS) data.
This framework is used in Comcast applications to parse, validate, edit and write HLS playlists to deliver video to millions of customers. It was written by the Comcast VIPER Player Platform team.
Mamba Project Goals:
-
Simple-to-use parsing, editing and writing of HLS playlists.
-
Maximum performance. We required our parsing library to parse very large HLS playlists (12 hour Video-On-Demand) on low end phones in a few milliseconds. A internal core C library is used for very fast parsing of large playlists.
- XCode 9+
- Swift 3+ (written in Swift 4)
- iOS 9+ or tvOS 10+ or macOS 10.13+
Create an HLSParser
.
let parser = HLSParser()
Parse your HLS playlist using the parser. Here's the asynchronous version:
let myPlaylistData: Data = ... // source of HLS data
let myPlaylistURL: URL = ... // the URL of this playlist resource
parser.parse(playlistData: myPlaylistData,
url: myPlaylistURL,
success: { playlist in
// do something with the parsed HLSPlaylist object
},
failure: { parserError in
// handle the HLSParserError
})
And here's the synchronous version:
let playlist: HLSPlaylist
do {
// note: could take several milliseconds for large playlists!
playlist = try parser.parse(playlistData: myPlaylistData,
url: myPlaylistURL)
}
catch {
// we received an error in parsing this playlist
}
// do something with the parsed HLSPlaylist
You now have an HLS playlist object.
This struct is a in-memory representation of a HLS playlist.
It includes:
- The
URL
of the playlist. - An array of
HLSTag
s that represent each line in the HLS playlist. This array is editable, so you can make edits to the playlist. - Utility functions to tell if a playlist is a master or variant, and if it is a Live, VOD or Event style playlist.
- Helpful functionality around the structure of a playlist, including calculated references to the "header", "footer" and all the video segments and the metadata around them. This structure is kept up to date behind the scenes as the playlist is edited.
HLSPlaylist
objects are highly editable.
Validate your HLS Playlist using the HLSCompletePlaylistValidator
.
let issues = try HLSCompletePlaylistValidator.validate(hlsPlaylist: playlist)
It returns an array of HLSValidationIssue
s found with the HLS Playlist. They each have a description and a severity associated with them.
We currently implement only a subset of the HLS validation rules as described in the HLS specification. Improving our HLS validation coverage would be a most welcome pull request!
Create a HLSWriter
.
let writer = HLSWriter()
Write your HLS playlist to a stream.
let stream: OutputStream = ... // stream to receive the HLS Playlist
do {
try writer.write(hlsPlaylist: playlist, toStream: stream)
}
catch {
// there was an error severe enough for us to stop writing the data
}
Natively, Mamba only understands HLS tags as defined in the Pantos IETF specification. If you'd like to add support for a custom set of tags, you'll need to create them as a object implementing HLSTagDescriptor
. Please look at PantosTag
or one of the examples in the unit tests for sample code.
If you have any custom HLSTagDescriptor
collections you'd like to parse alongside the standard Pantos tags, pass them in through this HLSParser initializer:
enum MyCustomTagSet: String {
// define your custom tags here
case EXT_MY_CUSTOM_TAG = "EXT-MY-CUSTOM-TAG"
}
extension MyCustomTagSet: HLSTagDescriptor {
... // conform to HLSTagDescriptor here
}
let customParser = HLSParser(tagTypes: [MyCustomTagSet.self])
If there is specfic data inside your custom tag that you'd like to access, e.g.
#EXT-MY-CUSTOM-TAG:CUSTOMDATA1="Data1",CUSTOMDATA2="Data1"
you can define that data in an enum that conforms to HLSTagValueIdentifier
:
enum MyCustomValueIdentifiers: String {
// define your custom value identifiers here
case CUSTOMDATA1 = "CUSTOMDATA1"
case CUSTOMDATA2 = "CUSTOMDATA2"
}
extension MyCustomValueIdentifiers: HLSTagValueIdentifier {
... // conform to HLSTagValueIdentifier here
}
You can now look through HLSTag
objects for your custom tag values just as if it were a valuetype defined in the HLS specification.
In order to achieve our performance goals, the internal C parser for HLS had to minimize the amount of heap memory allocated.
This meant that, for each HLSTag
object that is included in a HLSPlaylist
, instead of using a swift String
to represent data, we use a HLSStringRef
, which is a object that is a reference into the memory of the original data used to parse the playlist. This greatly speeds parsing, but comes at a cost: these HLSTag
objects are unsafe to use beyond the lifetime of their parent HLSPlaylist
.
In general, this is no problem. Normal usage of a HLSPlaylist
would be (1) Parse the playlist, (2) Edit by manipulating HLSTag
s (3) Write the playlist.
If you do, for some reason, need to access HLSTag
data beyond the lifetime of the parent HLSPlaylist
object, you'll need to make a copy of all HLSStringRef
data of interest into a regular swift String
. There's a string conversion function in HLSStringRef
to accomplish this.