A long time ago when I was looking for a low latency solution for streaming _from_ the Pi (should also have a similar performance in the other direction), gstreamer[1] was the only usable option. [1] https://gstreamer.freedesktop.org/. - Source: Hacker News / 12 days ago
I get errors when esp32-cam (rtsp://url:8554/mjpep/1) streams via wifi to GStreamer on Nvidia jetson nano (my current use case). Has anyone encountered this problem and how did you resolve this? - Source: Reddit / 3 months ago
[gstreamer](https://gstreamer.freedesktop.org/) is also very mature media processing and integration solution with [excellent rust support](https://lib.rs/crates/gstreamer). - Source: Reddit / 4 months ago
I don't know how low level you want to go, but assuming you don't want to re-implement video codecs then GStreamer is probably a good place to start, it allows you to create modular video pipelines and it has Go bindings (although I've not personally used them). - Source: Reddit / 9 months ago
You might take a look at GStreamer. It's designed for streaming video, has support for networking, video encoding/decoding, playback, etc. https://gstreamer.freedesktop.org/. - Source: Reddit / 9 months ago
Https://gstreamer.freedesktop.org/ is kind of the Swiss Army Knife of media stuff. You can use it to grab video & sound data from a bunch of different sources, then bang it around into the format you want, and finally push it into your program. Be warned, it's not a small or quick to learn project. - Source: Reddit / 11 months ago
Are you familiar handling with multimedia programming, I have working on Gstreamer for a while and I am quite sure that it has the functionality you might need. The only problem is that you might need to code a little bit. You can ask me more if you need help with this framework. - Source: Reddit / about 1 year ago
Nice one - following! For starters, I would look at existing command line tools to see how they got about this. I've been using ffmeg (https://ffmpeg.org/) and gstreamer (https://gstreamer.freedesktop.org/) for things like encoding and basic edits. - Source: Reddit / about 1 year ago
GStreamer is available for Android, iOS, macOS, and Linux, Windows. - Source: Reddit / over 1 year ago
Our video streaming core is based on gstreamer- a multiplatform multimedia framework with variety of hardware accelerated video encode and decode plugins (directx and media foundation plugins) and video streaming (webrtcbin). - Source: Reddit / over 1 year ago
To stream live video then you need to push the output from the Web Cam to a Kinesis Video Stream. To do this AWS have a C producer lib/SDK that you need to compile on your PI, configure and then run. This uses the GStreamer Framework and here is link to producer project located on GIT Hub:. - Source: dev.to / over 1 year ago
Fedora ships with Gstreamer, which is covered by the LGPL license, but mentions in the second link above that one should obtain the Fluendo Codec Pack in order to play patent-encumbered media e.g. HEVC (H.265). How is Fluendo able to create a whole business on LGPL-licensed code and patent licenses for media? - Source: Reddit / over 1 year ago
Do you know an article comparing gstreamer to other products?
Suggest a link to a post with product alternatives.