View Source Membrane.File.Source (Membrane File plugin v0.15.0)
Element that reads chunks of data from given file and sends them as buffers through the output pad.
Can work in two modes, determined by the seekable?
option.
element-options
Element options
Passed via struct Membrane.File.Source.t/0
location
Path.t()
Required
Path to the filechunk_size
pos_integer()
Default value:
2048
Size of chunks being readseekable?
boolean()
Default value:
false
Withseekable?: false
, the source will start reading data from the file exactly the moment it starts playing and will read it till the end of file, setting theend_of_stream
action on the:output
pad when the reading is done. Withseekable?: true
, the process of reading is driven by receivingMembrane.File.SeekSourceEvent
events. The source working inseekable?: true
mode won't send any data before that event is received. For more information about how to steer reading inseekable?: true
mode, see:Membrane.File.SeekSourceEvent
.
pads
Pads
output
:output
Accepted formats:
%RemoteStream{type: :bytestream}
Direction: | :output |
Availability: | :always |
Flow control: | :manual |
Demand unit: | nil |
Link to this section Summary
Types
Struct containing options for Membrane.File.Source
Link to this section Types
@type t() :: %Membrane.File.Source{ chunk_size: pos_integer(), location: Path.t(), seekable?: boolean() }
Struct containing options for Membrane.File.Source
Link to this section Functions
@spec options() :: keyword()
Returns description of options available for this module