summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <jan@centricular.com>2017-02-07 23:39:37 +1100
committerJan Schmidt <jan@centricular.com>2017-02-07 23:42:48 +1100
commit007f48f71154f6d4ec44b41b6050107a9fe35859 (patch)
tree1f46cc18b02f7e8578127a1fc3dd22b87a253d12
parentcd4e675f0cd91619d3acfe85ceeb4ae103762d6d (diff)
examples/test-record: Add extra line to initial printout
Add an example line of how to deliver a stream to the RTSP RECORD example
-rw-r--r--examples/test-record.c3
1 files changed, 3 insertions, 0 deletions
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;