Bruce Kim
Bruce Kim
Hi go-gst is a binding for gstramer in go language in which all gstramer functionalities are supported. How does your rtsp configure with? Does it correctly set up to use...
First of all, check the return value from `Set("protocols", "tcp")` in order to verify whether there is no error. Second as alternative way, try to use `SetArg()` instead of `Set()`...
Strange, Does the rtspsrc successfully be created? I suggest you to debug logs with enable DEBUG level into gstreamer.
I am interested in this issue too because I also had similar problem. Do you have any progress for this? Could you provide runnable sample code including main()? I want...
Hi, What do you use the flag CGO_ENABLED=0? go-gst needs cgo because of binding gstreamer written in C. Have you setup gstreamer on your devlopment environment?
In order to install gstreamer from source coude, you can refer the guideline below * https://gitlab.freedesktop.org/gstreamer/gstreamer/#getting-started
If you built gstreamer, you can see numerous libraries generated in dynamic linking form. It is not only hard to make it but also just time consuming stuff. I think,...
Hi, You may need to initialize buffer with proper size, not zero. // Note that when size == 0, the buffer will not have memory associated with it. And, try...
Hello, I'd like to share my opinion for digging further. 1) How about to run the pipeline first with a launch tool given by gstreamer, 'gst-launch-1.0' * `gst-launch-1.0 autovideosrc !...
The call stack indicates `free()` in the following lines. I don't think the following have any defect in itself. https://github.com/tinyzimmer/go-gst/blob/5437f8a654ee228e8959fb52d6cbc6f5c14123a2/gst/gst_object.go#L37-L41 Anyway, exception was happened. And I found that the exception...