diff --git a/livebooks/audio_mixer/audio_mixer.livemd b/livebooks/audio_mixer/audio_mixer.livemd index 36fc96ec..3737db21 100644 --- a/livebooks/audio_mixer/audio_mixer.livemd +++ b/livebooks/audio_mixer/audio_mixer.livemd @@ -5,13 +5,15 @@ File.cd(__DIR__) Logger.configure(level: :error) Mix.install([ - {:membrane_core, "~> 1.0"}, + {:membrane_core, "~> 1.0.1"}, {:membrane_audio_mix_plugin, "~> 0.16.0"}, - {:membrane_file_plugin, "~> 0.16.0"}, + {:membrane_file_plugin, "~> 0.17.0"}, {:membrane_mp3_mad_plugin, "~> 0.18.2"}, - {:membrane_ffmpeg_swresample_plugin, "~> 0.19.1"}, - {:membrane_aac_fdk_plugin, "~> 0.18.5"}, - {:membrane_kino_plugin, github: "membraneframework-labs/membrane_kino_plugin", tag: "v0.3.1"}, + # needs to be fixed + {:membrane_ffmpeg_swresample_plugin, "~> 0.20.0"}, + {:membrane_aac_fdk_plugin, "~> 0.18.6"}, + {:membrane_kino_plugin, + github: "membraneframework-labs/membrane_kino_plugin", tag: "v0.3.2-rc0"}, {:membrane_tee_plugin, "~> 0.12.0"} ]) ``` diff --git a/livebooks/messages_source_and_sink/messages_source_and_sink.livemd b/livebooks/messages_source_and_sink/messages_source_and_sink.livemd index 9c88f212..432f39b8 100644 --- a/livebooks/messages_source_and_sink/messages_source_and_sink.livemd +++ b/livebooks/messages_source_and_sink/messages_source_and_sink.livemd @@ -5,7 +5,7 @@ File.cd(__DIR__) Logger.configure(level: :error) Mix.install([ - {:membrane_core, "~> 1.0"} + {:membrane_core, "~> 1.0.1"} ]) ``` @@ -17,15 +17,17 @@ defmodule MessageSource do require Membrane.Logger - def_output_pad :output, + def_output_pad(:output, flow_control: :push, accepted_format: _any + ) - def_options register_name: [ - description: "The name under which the element's process will be registered", - spec: atom() - ] - + def_options( + register_name: [ + description: "The name under which the element's process will be registered", + spec: atom() + ] + ) @impl true def handle_init(_ctx, opts) do @@ -73,14 +75,17 @@ end defmodule MessageSink do use Membrane.Sink - def_input_pad :input, + def_input_pad(:input, flow_control: :push, accepted_format: _any + ) - def_options receiver: [ - description: "PID of the process that will receive messages from the sink", - spec: pid() - ] + def_options( + receiver: [ + description: "PID of the process that will receive messages from the sink", + spec: pid() + ] + ) @impl true def handle_init(_ctx, opts) do diff --git a/livebooks/rtmp/rtmp_receiver.livemd b/livebooks/rtmp/rtmp_receiver.livemd index 20034b0b..1f34e9eb 100644 --- a/livebooks/rtmp/rtmp_receiver.livemd +++ b/livebooks/rtmp/rtmp_receiver.livemd @@ -5,10 +5,11 @@ File.cd(__DIR__) Logger.configure(level: :error) Mix.install([ - {:membrane_core, "~> 1.0"}, + {:membrane_core, "~> 1.0.1"}, {:membrane_realtimer_plugin, "~> 0.9.0"}, - {:membrane_rtmp_plugin, "~> 0.21.0"}, - {:membrane_kino_plugin, github: "membraneframework-labs/membrane_kino_plugin", tag: "v0.3.1"} + {:membrane_rtmp_plugin, "~> 0.23.2"}, + {:membrane_kino_plugin, + github: "membraneframework-labs/membrane_kino_plugin", tag: "v0.3.2-rc0"} ]) ``` diff --git a/livebooks/rtmp/rtmp_sender.livemd b/livebooks/rtmp/rtmp_sender.livemd index b75afdaf..c9d69149 100644 --- a/livebooks/rtmp/rtmp_sender.livemd +++ b/livebooks/rtmp/rtmp_sender.livemd @@ -5,10 +5,10 @@ File.cd(__DIR__) Logger.configure(level: :error) Mix.install([ - {:membrane_core, "~> 1.0"}, + {:membrane_core, "~> 1.0.1"}, {:membrane_realtimer_plugin, "~> 0.9.0"}, {:membrane_hackney_plugin, "~> 0.11.0"}, - {:membrane_rtmp_plugin, "~> 0.21.0"} + {:membrane_rtmp_plugin, "~> 0.23.2"} ]) ``` diff --git a/livebooks/soundwave/soundwave.livemd b/livebooks/soundwave/soundwave.livemd index 36a1ecba..33eba77f 100644 --- a/livebooks/soundwave/soundwave.livemd +++ b/livebooks/soundwave/soundwave.livemd @@ -5,10 +5,10 @@ File.cd(__DIR__) Logger.configure(level: :error) Mix.install([ - {:membrane_core, "~> 1.0"}, + {:membrane_core, "~> 1.0.1"}, {:membrane_raw_audio_parser_plugin, "~> 0.4.0"}, - {:membrane_portaudio_plugin, "~> 0.18.3"}, - {:vega_lite, "~> 0.1.8"}, + {:membrane_portaudio_plugin, "~> 0.19.0"}, + {:vega_lite, "~> 0.1.9"}, {:kino_vega_lite, "~> 0.1.11"} ]) ``` diff --git a/livebooks/speech_to_text/speech_to_text.livemd b/livebooks/speech_to_text/speech_to_text.livemd index 846f7621..b5537a51 100644 --- a/livebooks/speech_to_text/speech_to_text.livemd +++ b/livebooks/speech_to_text/speech_to_text.livemd @@ -5,10 +5,10 @@ Logger.configure(level: :info) Mix.install( [ - {:bumblebee, "~> 0.4.2"}, - {:exla, "~> 0.6.4"}, - {:membrane_core, "~> 1.0"}, - {:membrane_portaudio_plugin, "~> 0.18.3"} + {:bumblebee, "~> 0.5.3"}, + {:exla, "~> 0.7.1"}, + {:membrane_core, "~> 1.0.1"}, + {:membrane_portaudio_plugin, "~> 0.19.0"} ], config: [ nx: [default_backend: EXLA.Backend]