View Source ExM3U8.Tags.Stream (ExM3U8 v0.10.0)

Structure representing a single media stream information.

Tag is present only in multivariant playlists.

Link to this section Summary

Link to this section Types

@type t() :: %ExM3U8.Tags.Stream{
  audio: String.t() | nil,
  average_bandwidth: non_neg_integer() | nil,
  bandwidth: non_neg_integer(),
  codecs: String.t() | nil,
  frame_rate: float() | nil,
  name: String.t() | nil,
  pathway_id: String.t() | nil,
  resolution: {width :: pos_integer(), height :: pos_integer()} | nil,
  subtitles: String.t() | nil,
  uri: String.t() | nil,
  video: String.t() | nil
}