-
Notifications
You must be signed in to change notification settings - Fork 2
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
Replace RTP.SessionBins with RTP.Muxers and RTP.Demuxers #213
Conversation
examples/mix.exs
Outdated
@@ -34,9 +34,10 @@ defmodule Membrane.LiveCompositor.Examples.Mixfile do | |||
# Examples | |||
{:membrane_file_plugin, "~> 0.17.0"}, | |||
{:membrane_realtimer_plugin, "~> 0.9.0"}, | |||
{:membrane_sdl_plugin, "~> 0.18.2"}, | |||
#{:membrane_sdl_plugin, "~> 0.18.2"}, |
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.
?
|> via_out(:output, options: [stream_id: {:payload_type, 97}]) | ||
|> child(%Membrane.RTP.JitterBuffer{latency: 0, clock_rate: 48_000}) | ||
|> child(RTP.Opus.Depayloader) | ||
|> child({:output_processor, pad_id}, Membrane.LiveCompositor.AudioOutputProcessor) | ||
|> bin_output(Pad.ref(:audio_output, pad_id)) |
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.
I think output_processor for video and audio is no longer necessary after this change. But it is not strictly related to this change, so you can leave if if you want.
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.
Aren't they still responsible for requesting keyframes?
closes membraneframework/membrane_core#932