gstreamer | GStreamer open-source multimedia framework | Plugin library
kandi X-RAY | gstreamer Summary
kandi X-RAY | gstreamer Summary
The core around which all other modules revolve. Base functionality and libraries, some essential elements, documentation, and testing. A well-groomed and well-maintained collection of GStreamer plug-ins and elements, spanning the range of possible types of elements one would want to write for GStreamer. And introducing, for the first time ever, on the development screen ... --- "Such ingratitude. After all the times I've saved your life.". A collection of plug-ins you'd want to have right next to you on the battlefield. Shooting sharp and making no mistakes, these plug-ins have it all: good looks, good code, and good licensing. Documented and dressed up in tests. If you're looking for a role model to base your own plug-in on, here it is. If you find a plot hole or a badly lip-synced line of code in them, let us know - it is a matter of honour for us to ensure Blondie doesn't look like he's been walking 100 miles through the desert without water. --- "When you have to shoot, shoot. Don't talk.". There are times when the world needs a color between black and white. Quality code to match the good's, but two-timing, backstabbing and ready to sell your freedom down the river. These plug-ins might have a patent noose around their neck, or a lock-up license, or any other problem that makes you think twice about shipping them. We don't call them ugly because we like them less. Does a mother love her son less because he's not as pretty as the other ones ? No - she commends him on his great personality. These plug-ins are the life of the party. And we'll still step in and set them straight if you report any unacceptable behaviour - because there are two kinds of people in the world, my friend: those with a rope around their neck and the people who do the cutting. --- "That an accusation?". No perfectly groomed moustache or any amount of fine clothing is going to cover up the truth - these plug-ins are Bad with a capital B. They look fine on the outside, and might even appear to get the job done, but at the end of the day they're a black sheep. Without a golden-haired angel to watch over them, they'll probably land in an unmarked grave at the final showdown. Don't bug us about their quality - exercise your Free Software rights, patch up the offender and send us the patch on the fastest steed you can steal from the Confederates. Because you see, in this world, there's two kinds of people, my friend: those with loaded guns and those who dig. You dig.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of gstreamer
gstreamer Key Features
gstreamer Examples and Code Snippets
Community Discussions
Trending Discussions on gstreamer
QUESTION
I have installed Gstreamer via homebrew on my mac. I want to stream the mac's internal camera's footage, however when I run
gst-device-monitor-1.0
I keep getting Probing devices... Failed to start device monitor!
I also tried running the same command with GST_DEBUG=2
and then I get
ANSWER
Answered 2022-Apr-03 at 20:00I have the same problem on my Mac (M1, macOS Monterey). It is issue of gst-device-monitor-1.0. According to its source code it cannot find any corresponding device providers:
QUESTION
We are trying to compile some c++ code into a shared library with pybind11. This shared library does not call python functions, but is instead called from a python script. Then we want to create an entrypoint C++ executable that uses this shared library to test the c++ code. It does not interface with pybind or the python side in any way.
When we do so, our shared library compiles successfully. However, in the executable target, we get a variety of linker errors specifying 'undefined reference to' our constructors in the shared library.
After reading the pybind documentation, we believe this is because the pybind11_add_module
function forces cmake to compile the shared library with a 'hidden' visibility flag. We subsequently try to expose the relevant functions in our c++ shared library so that our executable can access it (using __attribute__((visibility("default")))
). This resolves the undefined references to our constructors, but results in the errors provided below. Note that these errors occur when compiling our executable. The shared library still compiles succsesfully.
ANSWER
Answered 2022-Apr-02 at 13:51I'm not sure what causes the errors you're getting, but I can suggest a workaround, and maybe a better way of doing this.
You could build two shared libraries: one that contains your C++ code you need to test, and a Pybind11 extension that dynamically links to the first one and only provides the binding definitions.
Then you could link with the first one for the tests, without Python getting in the way.
QUESTION
I'm building a C++ GStreamer project with CMake which depends on GStreamer, GLIB, Libsoup and json-glib. I'm new to CMake and having trouble setting up my project. I've managed to include many of the dependencies but some seem to remain unresolved even though they are part of GStreamer. All GStreamer methods and types are resolved with the exception of SDP and WebRTC. They are, to my understanding, part of GStreamer and are also located inside of the directory which GMake correctly "finds".
These are the errors that are occurring when trying to build the project.
...ANSWER
Answered 2022-Mar-29 at 10:12I've managed to solve it by using a premade find script I found online.
https://chromium.googlesource.com/external/Webkit/+/master/Source/cmake/FindGStreamer.cmake
It creates all necessary defines which I then include and link.
These are the defaults as specified in the FindGStreamer.cmake file
QUESTION
I've been having this same error running any kivy code I type into IntelliJ. I'm using kivy 2.0.0 and Python 3.9. Here's my code:
...ANSWER
Answered 2021-Oct-25 at 23:13The solution for this problem is to uninstall kivy
and reinstall the cutting-edge version from master:
QUESTION
I'm trying to play audio with Gstreamer in C. I'm using Laptop, Ubuntu 16.
To play I use this pipeline and it's working:
gst-launch-1.0 filesrc location=lambo-engine.mp3 ! decodebin ! audioconvert ! autoaudiosink
But when I convert it to C:
...ANSWER
Answered 2022-Mar-14 at 17:13Gstreamer is centered around pipelines that are lists of elements. Elements have pads to exchange data on. In your example, decodebin has an output pad and audioconvert has an input pad. At the start of the pipeline, the pads need to be linked.
This is when pads agree on the format of data, as well as some other information, such as who's in charge of timing and maybe some more format specifics.
Your problem arises from the fact that decodebin
is not actually a real element. At runtime, when filesrc starts up, it tells decodebin what pad it has, and decodebin internally creates elements to handle that file.
For example:
filesrc location=test.mp4 ! decodebin
would run in this order:
- delay linking because types are unknown
- start filesrc
- filesrc says "trying to link, I have a pad of format MP4(h264)
- decodebin sees this request, and in turn, creates on the fly a h264 parse element that can handle the mp4 file
- decodebin now has enough information to describe it's pads, and it links the rest of the pipeline
- video starts playing
Because you are using c to do this, you link the pipeline before filesrc loads the file. This means that decodebin doesn't know the format of it's pads at startup, and therefore fails to link.
To fix this, you have two options:
1.) Swap out decodebin for something that supports only one type. If you know your videos will always be mp4s with h264, for example, you can use h264parse instead of decodebin. Because h264parse only works with one type of format, it knows it's pad formats at the start, and will be able to link without issue.
2.) Reimplement the smart delaying linking. You can read the docs for more info, but you can delay linking of the pipeline, and install callbacks to complete the linking when there's enough information. This is what gst-launch-1.0
is doing under the hood. This has the benefit of being more flexible: anything support by decodebin will work. The downside is that it's much more complex, involves a nontrivial amount of work on your end, and is more fragile. If you can get away with it, try fix 1
QUESTION
I got a sample video application in gtk using gstreamer from their official site (https://gstreamer.freedesktop.org/documentation/tutorials/basic/toolkit-integration.html?gi-language=c). When I maximize the window, video didn't get resized. When I tried the same using d3dvideosink, video get resized but it was transparent.Attached screenshot for both. Any suggestion is really appreciated.
...ANSWER
Answered 2022-Feb-23 at 06:02Finally I resolved issue by upgrading gstreamer plugin in GTK and use configure event Use d3d11videosink for video streaming which allow "gst_video_overlay_set_render_rectangle" api in the latest release(1.20.0). d3dvideosink has transparency issue so do not use that. Add a configure event for video window(Gtk::DrawingArea). video_window->signal_configure_event().connect(sigc::mem_fun(this, &example::example_function),false); In configure event do the following
QUESTION
I'm developing a GStreamer plugin using Rust. I want to send back an array of objects from rust to c++. Each object has two fields. word
and confidence
. I tried this code. but it did not compile. I can send the structure
whenever it just has text
. But when I want to add words
, I couldn't make it compile at all.
ANSWER
Answered 2022-Feb-13 at 07:09Just minor changes were needed. I had to send a vector of SendValue
to gst::Array::from_owned
QUESTION
I use python and opencv-python to capture frames from video, then use ffmpeg command to push rtsp stream with pipe. I can play the rtsp stream via gstreamer and vlc. However, a display device cannot decode and play the rtsp-stream because it cannot receive SPS and PPS frames. Use wireshark to capture stream, found that it doesn't send sps and pps frames, only send IDR frames.
The key codes are as follows.
...ANSWER
Answered 2021-Dec-01 at 14:40Try adding the arguments '-bsf:v', 'dump_extra'
.
According to FFmpeg Bitstream Filters Documentation:
dump_extra
Add extradata to the beginning of the filtered packets except when said packets already exactly begin with the extradata that is intended to be added.
The filter supposed to add SPS and PPS NAL units with every key frame.
Here is a complete code sample:
QUESTION
I am trying to record RTP stream with video and audio to HLS. Using GStreamer and nodejs. I get WARNING: erroneous pipeline: no element "fdkaacenc"
. I am using macOS with M1 CPU and all plugins base, good, bad, and ugly are installed.
The whole command I am trying to execute is this
...ANSWER
Answered 2021-Nov-23 at 16:44I fixed that by avenc_aac
instead of fdkaacenc
. Not to mention that you should use audioconvert
before avenc_aac.
The part of command I was trying to convert to aac:
rtpopusdepay ! opusdec ! audioconvert ! avenc_aac
.
More: avenc_aac
is part of gstreamer ffmpeg plugins which exists in linux, mac and windows. fdkaacenc
is part of gstreamer bad plugins that may not be the same in all systems. That's is why using avenc_aac
is more approperiate. So it can be executed in both mac and linux.
QUESTION
I don't understand why I can't install kivy.
I'm on Windows 10 64 bits with Python 3.10.
I have tried with pip
, pip3
, on administrator command, to install the master.zip
.
Always the same error (and same with Python 3.9)
Here the terminal print:
...ANSWER
Answered 2021-Nov-09 at 14:09After reading the document about kivy https://kivy.org/doc/stable-1.10.1/installation/installation-windows.html
Kivy can be installed with one of the following python versions:
- Python 2.7, 32-bit
- Python 3.4, 32-bit
- Python 3.5, 32-bit
- Python 3.6, 32-bit
- Python 2.7, 64-bit
- Python 3.4, 64-bit
- Python 3.5, 64-bit
- Python 3.6, 64-bit
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install gstreamer
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page