You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I took some time to check the examples in your repo and I was able to replicate them locally using the scripts available in /dev/pub, /dev/relay and the subscriber available in the moq-js repo.
For my use case, I wanted to stream camera from a raspberry pi and stream it in my local web-browser. As a minimum viable example, I tried to do this in my linux pc following both the ffmpeg route as the gstreamer one. I found problems in both scenarios.
Attempts with ffmpeg
It is not listed which encoders / decoders are supported anywhere in your repo. It seems to me only files that start with a ftyp+moov header?
let _ftyp = mp4_atom::Ftyp::read_from(input).await?;let moov = Moov::read_from(input).await?;
I didn't try with different mp4 files, but different encoding flags of the camera stream without luck. As a user without a lot of knowledge of encodings/decoders, it was difficult for me to add a quick fix/patch for this.
I also tried encoding the output of ffmpeg as flv, but this one fails silently.
I don't know why, but in my local version of gstreamer I didn't have the isofmp4mux plugin. It's listed as part of the good plugins, but I didn't have it and didn't spend much too on it. I might take a closer look later if that helps.
I took some time to update moq-gstAdd support newer transfork api moq-gst#12 to work with latest version of this repo, and maybe after it works it should be easier to get it done via this way? Hopefully yes.
I'd be happy help you with some dev time if you give me some tips about what has to be done, about the classes organizations and if you think it makes sense to stream camera feeds using moq.
PS: thanks a lot for the --tls-disable-verify flag in your scripts 😄
The text was updated successfully, but these errors were encountered:
As for gstreamer, thanks for the attempt to update it. I think I'm going to merge it into the moq-rs repo proper so I'll actually keep it up to date.
I've been working on a plugin that doesn't involve fMP4 but it's stalled. Unfortunately, I can't seem to figure out their plugin architecture to do something more sophisticated.
Check out the contents of dev/pub. It invokes ffmpeg and you should be able to use the same flags.
Yeah, I attempted to use it and it worked alright for the mp4 example file. But with the camera it's not working, I think it's expecting some headers that are available in mp4 files but maybe when loading video from the camera with v4l2 that info is not automatically appended.
Good afternoon!
I took some time to check the examples in your repo and I was able to replicate them locally using the scripts available in
/dev/pub
,/dev/relay
and the subscriber available in themoq-js
repo.For my use case, I wanted to stream camera from a raspberry pi and stream it in my local web-browser. As a minimum viable example, I tried to do this in my linux pc following both the ffmpeg route as the gstreamer one. I found problems in both scenarios.
Attempts with
ffmpeg
I didn't try with different mp4 files, but different encoding flags of the camera stream without luck. As a user without a lot of knowledge of encodings/decoders, it was difficult for me to add a quick fix/patch for this.
My closest attempt (I think?) was using this setup:
Attempts with
gstreamer
I don't know why, but in my local version of gstreamer I didn't have the
isofmp4mux
plugin. It's listed as part of thegood
plugins, but I didn't have it and didn't spend much too on it. I might take a closer look later if that helps.I took some time to update
moq-gst
Add support newer transfork api moq-gst#12 to work with latest version of this repo, and maybe after it works it should be easier to get it done via this way? Hopefully yes.I'd be happy help you with some dev time if you give me some tips about what has to be done, about the classes organizations and if you think it makes sense to stream camera feeds using
moq
.PS: thanks a lot for the
--tls-disable-verify
flag in your scripts 😄The text was updated successfully, but these errors were encountered: