|
Hello!
I develop an gtk-application for playing RTSP stream from IP cameras.
pipeline=gst_parse_launch("rtspsrc location=rtsp://192.168.127.100:554/moxa-cgi/udpStreamer latency=0 ! decodebin ! xvimagesink",NULL);
gst_element_set_state (pipeline, GST_STATE_PLAYING);
I paste this code to my program, and it work fine, but another window.
How can I put video on my drawing_area or other widget?
|