examples/test-record: Add extra line to initial printout

Add an example line of how to deliver a stream to the
RTSP RECORD example
This commit is contained in:
Jan Schmidt 2017-02-07 23:39:37 +11:00
parent cd4e675f0c
commit 007f48f711

View file

@ -92,6 +92,9 @@ main (int argc, char *argv[])
/* start serving */
g_print ("stream ready at rtsp://127.0.0.1:%s/test\n", port);
g_print ("On the sender, send a stream with rtspclientsink:\n"
" gst-launch-1.0 videotestsrc ! x264enc ! rtspclientsink location=rtsp://127.0.0.1:%s/test\n",
port);
g_main_loop_run (loop);
return 0;