diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-09 09:09:14 (GMT) |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2014-07-09 09:09:14 (GMT) |
commit | 6d9c343a8453c239633e3638c7b33faa29e4cb91 (patch) | |
tree | 46d33efa25814cc81d1e0763f562de54440adacd | |
parent | 160c3dbb2ce9172ea8cf3ddb559a4efd9fde1683 (diff) | |
download | soup-transcoding-proxy-6d9c343a8453c239633e3638c7b33faa29e4cb91.zip soup-transcoding-proxy-6d9c343a8453c239633e3638c7b33faa29e4cb91.tar.gz |
Add README
-rw-r--r-- | README | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +Usage: + + ./stp-server + +Runs on port 8000. + +Sending a stream: + + curl -v http://localhost:8000/somepath -T - < [some video file] + +Optionally, rate limit the stream to emulate a live stream (--limit-rate) +Trying to create two streams on the same path will return a 409. + +Reading the webm output stream: + + curl -v http://localhost:8000/somepath > [some output file] + |