-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorporate Funnel, Tee and Fake.Sink #922
base: master
Are you sure you want to change the base?
Conversation
Element that can be used for collecting data from multiple inputs and sending it through one | ||
output. When a new input connects in the `:playing` state, the funnel sends | ||
`#{inspect(__MODULE__)}.NewInputEvent` via output. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Element that can be used for collecting data from multiple inputs and sending it through one | |
output. When a new input connects in the `:playing` state, the funnel sends | |
`#{inspect(__MODULE__)}.NewInputEvent` via output. | |
Element that can be used for collecting data from multiple inputs and sending it through one | |
output. | |
When a new input connects in the `:playing` state, the funnel sends | |
`#{inspect(__MODULE__)}.NewInputEvent` via output. |
|
||
It has one input pad `:input` and 2 output pads: | ||
* `:output` - is a dynamic pad which is always available and works in pull mode | ||
* `:output_copy` - is a dynamic pad that can be linked to any number of elements (including 0) and works |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While copy
made (a bit of) sense along with the master
pad, now it doesn't IMO. Maybe push_output
?
@@ -0,0 +1,12 @@ | |||
defmodule Membrane.Fake.Sink do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about
defmodule Membrane.Fake.Sink do | |
defmodule Membrane.FakeSink do |
Closes #871