diff options
Diffstat (limited to '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] + |