We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e57ef06 + fd5410a commit 9d8748eCopy full SHA for 9d8748e
README.md
@@ -26,7 +26,7 @@ const server = new StreamingServer({
26
27
const run = async () => {
28
try {
29
- server.start();
+ await server.start();
30
} catch (e) {
31
console.error(e);
32
}
@@ -61,4 +61,4 @@ Consume that stream from your favourite RTSP Client:
61
* Stability
62
* Authorisation
63
* RTP interleaved in RTSP (RTP over RTSP)
64
-* Hooks for events when streams are published / consumed
+* Hooks for events when streams are published / consumed
test/index.js
@@ -10,10 +10,10 @@ const server = new StreamingServer({
10
11
12
13
14
15
16
17
18
19
-run();
+run();
0 commit comments