rtspsink: Add rtspclientsink element
Add an rtspclientsink element that accepts streams for which there is a registered payloader and sends them to an RTSP server using RECORD. Sending is synchronised to the pipeline clock. Payload-types are automatically selected. The 'new-payloader' signal is fired for custom configuration of payloaders when they are created. Can now stream a movie like this: receiver: ./test-record "( decodebin name=depay0 ! videoconvert ! autovideosink \ decodebin name=depay1 ! audioconvert ! autoaudiosink )" sender: gst-launch-1.0 filesrc location=file-with-aac-and-h264.mp4 ! qtdemux name=d ! \ queue ! aacparse ! rtspclientsink location=rtsp://127.0.0.1:8554/test name=s \ https://bugzilla.gnome.org/show_bug.cgi?id=758180
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- configure.ac 28 additions, 0 deletionsconfigure.ac
- gst/Makefile.am 1 addition, 1 deletiongst/Makefile.am
- gst/rtsp-sink/Makefile.am 18 additions, 0 deletionsgst/rtsp-sink/Makefile.am
- gst/rtsp-sink/gstrtspclientsink.c 4885 additions, 0 deletionsgst/rtsp-sink/gstrtspclientsink.c
- gst/rtsp-sink/gstrtspclientsink.h 244 additions, 0 deletionsgst/rtsp-sink/gstrtspclientsink.h
- gst/rtsp-sink/plugin.c 26 additions, 0 deletionsgst/rtsp-sink/plugin.c
- tests/check/Makefile.am 4 additions, 3 deletionstests/check/Makefile.am
- tests/check/gst/rtspclientsink.c 221 additions, 0 deletionstests/check/gst/rtspclientsink.c
Loading
Please register or sign in to comment