hlcfan
I’m playing around with membrane, trying to stream an MP4(h264/aac) file through HLS to my phone, I think the first thing is to demux the file into video and audio streams. The code look like this
use Membrane.Pipeline
def handle_init(path_to_file) do
children = %{
source_file: %Membrane.File.Source{location: path_to_file},
demuxer: Membrane.MPEG.TS.Demuxer,
video_parser: %Membrane.H264.FFmpeg.Parser{framerate: {24, 1}},
video_decoder: Membrane.H264.FFmpeg.Decoder,
audio_decoder: Membrane.AAC.FDK.Decoder,
audio_converter: %FFmpeg.SWResample.Converter{
output_caps: %Membrane.Caps.Audio.Raw{channels: 2, format: :s16le, sample_rate: 48_000}
},
sink: %Membrane.File.Sink{location: "video_output"},
portaudio: PortAudio.Sink
}
links = [
link(:source_file) |> to(:demuxer),
link(:demuxer) |> via_out(Pad.ref(:output, 256)) |> to(:video_parser),
link(:demuxer) |> via_out(Pad.ref(:output, 257)) |> to(:audio_decoder),
link(:video_parser) |> to(:video_decoder),
link(:video_decoder) |> to(:sink),
link(:audio_decoder) |> to(:audio_converter),
link(:audio_converter) |> to(:portaudio)
]
spec = %ParentSpec{
children: children,
links: links
}
{{:ok, spec: spec}, %{}}
end
However, when I run it, there’s no sound, and also video_output is zero bytes.
iex(3)> Pipeline.play(pid)
:ok
iex(4)>
21:01:41.415 [debug] [pipeline@<0.295.0>] Changing playback state from stopped to prepared
21:01:41.441 [debug] [pipeline@<0.295.0>] Playback state changed from stopped to prepared
21:01:41.441 [debug] [pipeline@<0.295.0>] Changing playback state from prepared to playing
21:01:41.441 [debug] [:video_decoder] Evaluating playback buffer
21:01:41.441 [debug] [:source_file] Evaluating playback buffer
21:01:41.441 [debug] [:video_parser] Evaluating playback buffer
21:01:41.441 [debug] [:audio_converter] Evaluating playback buffer
21:01:41.441 [debug] [:audio_decoder] Evaluating playback buffer
21:01:41.441 [debug] [:sink] Evaluating playback buffer
21:01:41.441 [debug] [:demuxer] Evaluating playback buffer
21:01:41.488 [debug] [:portaudio] Evaluating playback buffer
21:01:41.488 [debug] [pipeline@<0.295.0>] Playback state changed from prepared to playing
21:01:41.499 [debug] [:video_parser] Ignoring event %Membrane.Core.Events.EndOfStream{}
21:01:41.499 [debug] [:audio_decoder] Ignoring event %Membrane.Core.Events.EndOfStream{}
I need a bit help here, am I doing this correctly?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 8 of 8 Posts
mat-hek
Hi @hlcfan, you’re right, the first step would be to demux the MP4, but you’re using
Membrane.MPEG.TS.Demuxer, that is able to demux MPEG-TS stream, not MP4. We don’t have MP4 demuxer in Membrane yet, though it’s in the roadmap.hlcfan
Thanks @mat-hek for the quick reply. Looking forward to the MP4 demuxer!
hlcfan
After converting the file to TS format, it works, thanks!
hlcfan
@mat-hek Do you have an example of how to stream a TS file through HLS? I can’t seem to find one.
mat-hek
I don’t, but once you have H264 and AAC, you should be able to put them into HLS like in this demo
EddTally
Hey, I’m doing something similar to you, did you ever complete this project?
If so are you able to share the code with me/us?
EddTally
I’ve completed the pipeline with the help of @DominikWolek
First take your MP4 file and demux it to acc Audio and H264 Video.
I use ffmpeg command for this, (there might be a ffmpeg elixir wrapper out there to do it safer than this, I feel like calling System.cmd isn’t a nice thing)
For the file name I just take the basename of the original Mp4.
This should split your mp4 into two files, one .aac and it’s corresponding video file .h264
Then in your handle_init function you can create your SkinBin like so:
output_dir is the path you wish to save your HLS files to for streaming them.
Once you have your sink you need to create your source and filters, a lot of this next bit of code can be found here inside the Sink Bin Integration Test on membrane_http_adaptive_stream_plugin’s github.
@audio_video_tracks_sourcesis our sources in this format:But it can be whatever you want as long as it’s in the tuple
{path, codec, type}Once you’ve got all that you can startup your program with
iex -S mixthen start the init
{:ok, pid} = Module.start_linkAnd your program will generate the HLS files to the @output_dir that you specified.
You can test to see if they’re correct by serving them from a simple python server like so:
python3 -m http.server 8000And playing it with ffplay
ffplay http://localhost:8000/FILENAMEwith FILENAME being output_dir/index.m3u8
Feel free to ask any questions or if I’ve left something out!
EddTally
Updated to include -profile:v baseline