View Source Membrane.HTTPAdaptiveStream.SinkBin (Membrane HTTP Adaptive Stream plugin v0.13.0)
Bin responsible for receiving audio and video streams, performing payloading and CMAF muxing to eventually store them using provided storage configuration.
input-streams
Input streams
Parsed H264 or AAC video or audio streams are expected to be connected via the :input pad.
The type of stream has to be specified via the pad's :encoding option.
output
Output
Specify one of Membrane.HTTPAdaptiveStream.Storages as :storage to configure the sink.
bin-options
Bin options
Passed via struct Membrane.HTTPAdaptiveStream.SinkBin.t/0
manifest_nameString.t()Default value:
"index"
Name of the main manifest filemanifest_modulemoduleRequired
Implementation of theMembrane.HTTPAdaptiveStream.Manifestbehaviour.storageStorage.config_t()Required
Storage configuration. May be one ofMembrane.HTTPAdaptiveStream.Storages.*. SeeMembrane.HTTPAdaptiveStream.Storagebehaviour.target_window_durationTime.t() | :infinityDefault value:
40 |> Membrane.Time.seconds()
Manifest duration is kept above that time, while the oldest segments are removed whenever possible.persist?booleanDefault value:
false
If true, stale segments are removed from the manifest only. Once playback finishes, they are put back into the manifest.mode:live | :vodDefault value:
:vod
Tells if the session is live or a VOD type of broadcast. It can influence type of metadata inserted into the playlist's manifest.hls_mode:muxed_av | :separate_avDefault value:
:separate_av
Option defining how the incoming tracks will be handled and how CMAF will be muxed.- In
:muxed_avaudio will be added to each video rendition, creating CMAF segments that contain both audio and video. - In
:separate_avaudio and video tracks will be separate and synchronization will need to be sorted out by the player.
- In
header_naming_fun(Manifest.Track.t(), counter :: non_neg_integer() -> String.t())Default value:
&Membrane.HTTPAdaptiveStream.Manifest.Track.default_header_naming_fun/2
A function that generates consequent media header names for a given tracksegment_naming_fun(Manifest.Track.t() -> String.t())Default value:
&Membrane.HTTPAdaptiveStream.Manifest.Track.default_segment_naming_fun/1
A function that generates consequent segment names for a given trackmp4_parameters_in_band?boolean()Default value:
false
Determines whether the parameter type nalus will be removed from the stream. Inband parameters seem to be legal with MP4, but some players don't respond kindly to them, so use at your own risk. This parameter should be set to true when discontinuity can occur. For example when resolution can change.cleanup_afternil | Time.t()Default value:
nil
Time after which a fire-and-forget storage cleanup function should run.The function will remove all manifests and segments stored during the stream.
pads
Pads
input
:input
Accepted formats:
Membrane.AAC%Membrane.H264{profile: profile} when profile in @accepted_h264_profiles| Direction: | :input |
| Availability: | :on_request |
| Mode: | :pull |
| Demand unit: | :buffers |
Pad options:
encoding:AAC | :H264Required
Encoding type determining which payloader will be used for the given stream.For H264, the accepted profiles are :constrained_baseline, :baseline, :high.
track_nameString.t() | nilDefault value:
nil
Name that will be used to name the media playlist for the given track, as well as its header and segments files. It must not contain any URI reserved characterssegment_durationManifest.SegmentDuration.t()Required
The segment duration range of the regular segments.partial_segment_durationManifest.SegmentDuration.t() | nilDefault value:
nil
The segment duration range of the partial segments. If not set then the bin won't produce any partial segments.
Link to this section Summary
Link to this section Types
@type input_pad_opts_t() :: [ encoding: :AAC | :H264, track_name: String.t() | nil, segment_duration: Membrane.HTTPAdaptiveStream.Manifest.SegmentDuration.t(), partial_segment_duration: Membrane.HTTPAdaptiveStream.Manifest.SegmentDuration.t() | nil ]
Options for pad :input
@type t() :: %Membrane.HTTPAdaptiveStream.SinkBin{ cleanup_after: nil | Membrane.Time.t(), header_naming_fun: (Membrane.HTTPAdaptiveStream.Manifest.Track.t(), counter :: non_neg_integer() -> String.t()), hls_mode: :muxed_av | :separate_av, manifest_module: module(), manifest_name: String.t(), mode: :live | :vod, mp4_parameters_in_band?: boolean(), persist?: boolean(), segment_naming_fun: (Membrane.HTTPAdaptiveStream.Manifest.Track.t() -> String.t()), storage: Membrane.HTTPAdaptiveStream.Storage.config_t(), target_window_duration: Membrane.Time.t() | :infinity }
Struct containing options for Membrane.HTTPAdaptiveStream.SinkBin
Link to this section Functions
@spec options() :: keyword()
Returns description of options available for this module