From: Jan Schmidt Date: Tue, 7 Feb 2017 12:39:37 +0000 (+1100) Subject: examples/test-record: Add extra line to initial printout X-Git-Tag: 1.12.2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=007f48f71154f6d4ec44b41b6050107a9fe35859;p=platform%2Fupstream%2Fgst-rtsp-server.git examples/test-record: Add extra line to initial printout Add an example line of how to deliver a stream to the RTSP RECORD example --- diff --git a/examples/test-record.c b/examples/test-record.c index 437eaf5..47b8fd9 100644 --- a/examples/test-record.c +++ b/examples/test-record.c @@ -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;