Skip to content

Commit ec1e10d

Browse files
committed
add missing muxer
1 parent 4eeaa4d commit ec1e10d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

guides/useful_concepts/running_membrane_in_elixir_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ defmodule TranscodePipeline do
185185
|> child(:converter, %Converter{output_width: 1080, output_height: 720})
186186
|> child(:encoder, Encoder)
187187
|> child(:out_parser, %Parser{output_stream_structure: :avc1})
188+
|> child(:muxer, Membrane.MP4.Muxer.ISOM)
188189
|> child(:sink, %Sink{location: opts[:output_path]})
189190
]
190191

@@ -208,7 +209,6 @@ To install Oban in your project, you can follow this [installation guide](https:
208209
Assuming that Oban is installed in your project and the `:default` queue is configured we can define the Oban worker:
209210

210211
```elixir
211-
212212
defmodule VideoTranscoderWorker do
213213
use Oban.Worker, queue: :default, unique: [period: 60]
214214

0 commit comments

Comments
 (0)