summaryrefslogtreecommitdiff
path: root/TESTING
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2014-08-18 14:56:56 (GMT)
committerNirbheek Chauhan <nirbheek@centricular.com>2014-08-18 14:56:56 (GMT)
commitaeb78c6cb31cd638b0a7dd92de3b9817ced53eb5 (patch)
treedea50013d80fc8140ec0f3c75c5a20a3aa3f8e0e /TESTING
parent281222987d800e76049d4667a7bdd6b4a8f20660 (diff)
downloadsoup-transcoding-proxy-aeb78c6cb31cd638b0a7dd92de3b9817ced53eb5.zip
soup-transcoding-proxy-aeb78c6cb31cd638b0a7dd92de3b9817ced53eb5.tar.gz
server: Add /stream/ prefix for streaming URLs
Diffstat (limited to 'TESTING')
-rw-r--r--TESTING5
1 files changed, 3 insertions, 2 deletions
diff --git a/TESTING b/TESTING
index 38f635f..1c9d5ad 100644
--- a/TESTING
+++ b/TESTING
@@ -11,12 +11,13 @@ PUT stream:
-----------
$ gst-launch-1.0 -e videotestsrc is-live=TRUE ! videoscale ! \
video/x-raw, height=120, width=160 ! timeoverlay font-desc="80px" ! tee name=t \
- t. ! queue ! videoconvert ! theoraenc ! oggmux ! souphttpclientsink location="http://localhost:8000/somepath?type=http" \
+ t. ! queue ! videoconvert ! theoraenc ! oggmux ! \
+ souphttpclientsink location="http://localhost:8000/stream/somepath?type=http" \
t. ! queue ! videoconvert ! xvimagesink
GET stream:
-----------
- $ gst-launch-1.0 souphttpsrc location="http://localhost:8000/somepath" ! \
+ $ gst-launch-1.0 souphttpsrc location="http://localhost:8000/stream/somepath" ! \
decodebin ! videoconvert ! videoscale ! autovideosink
Launch as many GET streams as necessary. For multiple PUT streams, just change "somepath" to something else.