examples/test-record: Add extra line to initial printout
authorJan Schmidt <jan@centricular.com>
Tue, 7 Feb 2017 12:39:37 +0000 (23:39 +1100)
committerJan Schmidt <jan@centricular.com>
Tue, 7 Feb 2017 12:42:48 +0000 (23:42 +1100)
Add an example line of how to deliver a stream to the
RTSP RECORD example

examples/test-record.c

index 437eaf5..47b8fd9 100644 (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;