class M3U8::Codecs

Overview

Codecs represents the CODECS attribute used in HTTP Live Streaming (HLS).

In HLS (RFC 8216), the CODECS attribute (further detailed in RFC 6381) is a comma-separated list of codec identifiers that describe the media contained in a Media Segment. This attribute is used in the EXT-X-STREAM-INF tag to indicate what codecs (and profiles) are required to play back a stream.

#EXT-X-STREAM-INF:BANDWIDTH=65000,CODECS="mp4a.40.5"
audio-only.m3u8

There are two primary ways to use Codecs:

  1. If the #codecs property is set, that pre-computed string is used directly.

  2. Otherwise, the #codecs string is constructed by deriving the video and audio codec codes from the remaining properties:

    • For audio, the #audio_codec property is mapped as follows:
        "aac-lc"  => "mp4a.40.2"  (AAC low complexity)
        "he-aac"  => "mp4a.40.5"  (HE-AAC)
        "mp3"     => "mp4a.40.34" (MPEG-1 Audio Layer 3)
        Baseline Profile:
          Level 3.0 => "avc1.66.30"
          Level 3.1 => "avc1.42001f"

        Main Profile:
          Level 3.0 => "avc1.77.30"
          Level 3.1 => "avc1.4d001f"
          Level 4.0 => "avc1.4d0028"
          Level 4.1 => "avc1.4d0029"

        High Profile:
          Level 3.1 => "avc1.64001f"
          Level 4.0 => "avc1.640028"
          Level 4.1 => "avc1.640029"

When constructing the codec string:

For more details on these mappings and the overall semantics of HLS, refer to:

Included Modules

Extended Modules

Defined in:

m3u8/codecs.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(params : NamedTuple = NamedTuple.new) #

Creates a new Codecs instance from a NamedTuple.

Examples:

options = {audio_codec: "aac-lc"}
Codecs.new(options)
Codecs.new(audio_codec: "aac-lc")

[View source]
def self.new(codecs : Nil | String = nil, audio_codec : Nil | String = nil, level = nil, profile : Nil | String = nil) #

Initializes a new Codecs instance. Parameters with @ prefix are automatically assigned as instance variables.

Parameters:

  • #codecs: A pre-computed codec string (if provided, it is used directly).
  • #audio_codec: The name of the audio codec (e.g. aac-lc, he-aac, mp3).
  • #level: The numeric level used to determine the video codec.
  • #profile: The video profile (e.g. baseline, main, high).

Example:

Codecs.new

[View source]

Instance Method Detail

def ==(other : Codecs) #

Compares this Codecs instance with another Codecs instance.

Equality is determined by comparing their CODECS strings.

Example:

left = Codecs.new(audio_codec: "aac-lc")
right = Codecs.new(audio_codec: "aac-lc")
left == right # => true

[View source]
def ==(other : String) #

Compares this Codecs instance with a String.

The instance is considered equal to the string if its CODECS string matches.

Example:

left = Codecs.new(audio_codec: "aac-lc")
right = "aac-lc"
left == right # => true

[View source]
def audio_codec : String | Nil #

Audio codec identifier (e.g., aac-lc)


[View source]
def audio_codec=(audio_codec : String | Nil) #

Audio codec identifier (e.g., aac-lc)


[View source]
def codecs : String | Nil #

Predefined codec string


[View source]
def codecs=(codecs : String | Nil) #

Predefined codec string


[View source]
def empty? #

Returns true if the #codecs string is empty.

Examples:

codecs = Codecs.new
codecs.empty? # => true
codecs.audio_codec = "aac-lc"
codecs.empty? # => false

[View source]
def level : Float64 | Nil #

Video level (e.g., 3.0, 3.1, etc.)

The video #codecs string is determined from both the video #profile and #level.

  • baseline Profile:

    • Level 3.0 => avc1.66.30
    • Level 3.1 => avc1.42001f
  • main Profile:

    • Level 3.0 => avc1.77.30
    • Level 3.1 => avc1.4d001f
    • Level 4.0 => avc1.4d0028
    • Level 4.1 => avc1.4d0029
  • high Profile:

    • Level 3.1 => avc1.64001f
    • Level 4.0 => avc1.640028
    • Level 4.1 => avc1.640029

[View source]
def level=(level : Float64 | Nil) #

Video level (e.g., 3.0, 3.1, etc.)

The video #codecs string is determined from both the video #profile and #level.

  • baseline Profile:

    • Level 3.0 => avc1.66.30
    • Level 3.1 => avc1.42001f
  • main Profile:

    • Level 3.0 => avc1.77.30
    • Level 3.1 => avc1.4d001f
    • Level 4.0 => avc1.4d0028
    • Level 4.1 => avc1.4d0029
  • high Profile:

    • Level 3.1 => avc1.64001f
    • Level 4.0 => avc1.640028
    • Level 4.1 => avc1.640029

[View source]
def profile : String | Nil #

Video profile (e.g., baseline, main, high)

The video #codecs string is determined from both the video #profile and #level.

  • baseline Profile:

    • Level 3.0 => avc1.66.30
    • Level 3.1 => avc1.42001f
  • main Profile:

    • Level 3.0 => avc1.77.30
    • Level 3.1 => avc1.4d001f
    • Level 4.0 => avc1.4d0028
    • Level 4.1 => avc1.4d0029
  • high Profile:

    • Level 3.1 => avc1.64001f
    • Level 4.0 => avc1.640028
    • Level 4.1 => avc1.640029

[View source]
def profile=(profile : String | Nil) #

Video profile (e.g., baseline, main, high)

The video #codecs string is determined from both the video #profile and #level.

  • baseline Profile:

    • Level 3.0 => avc1.66.30
    • Level 3.1 => avc1.42001f
  • main Profile:

    • Level 3.0 => avc1.77.30
    • Level 3.1 => avc1.4d001f
    • Level 4.0 => avc1.4d0028
    • Level 4.1 => avc1.4d0029
  • high Profile:

    • Level 3.1 => avc1.64001f
    • Level 4.0 => avc1.640028
    • Level 4.1 => avc1.640029

[View source]
def to_s #

Returns the CODECS string for this instance.

If a pre-computed #codecs string is provided, it is returned directly. Otherwise, the method constructs the #codecs string by computing the video codec (from #profile and #level) and the audio codec (from #audio_codec).

Examples:

Codecs.new(codecs: "test").to_s                                      # => "test"
Codecs.new(audio_codec: "aac-lc").to_s                               # => "mp4a.40.2"
Codecs.new(profile: "baseline", level: 3.0, audio_codec: "mp3").to_s # => "avc1.66.30,mp4a.40.34"

[View source]