webrtc-streamer 0.8.10 → 0.8.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,6 +20,8 @@
20
20
 
21
21
  Experimentation to stream WebRTC media sources like capture devices, screen capture, mkv files and RMTP/RTSP sources using simple signaling mechanism (see [api](docs/api.md)). It is also compatible with [WHEP](https://datatracker.ietf.org/doc/html/draft-ietf-wish-whep-01) interface.
22
22
 
23
+ *** Notice *** Live demo are stopped till I migrate to a european web hosting.
24
+
23
25
  ## Artefacts
24
26
 
25
27
  * packages are available from https://github.com/mpromonet/webrtc-streamer/releases/latest
@@ -189,13 +191,13 @@ A short sample HTML page using webrtc-streamer running locally on port 8000:
189
191
  var webRtcServer = null;
190
192
  window.onload = function() {
191
193
  webRtcServer = new WebRtcStreamer("video",location.protocol+"//"+location.hostname+":8000");
192
- webRtcServer.connect("rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov");
194
+ webRtcServer.connect("rtsp://196.21.92.82/axis-media/media.amp","", "rtptransport=tcp&timeout=60");
193
195
  }
194
196
  window.onbeforeunload = function() { webRtcServer.disconnect(); }
195
197
  </script>
196
198
  </head>
197
199
  <body>
198
- <video id="video" />
200
+ <video id="video" muted playsinline />
199
201
  </body>
200
202
  </html>
201
203
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webrtc-streamer",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "description": "",
5
5
  "main": "joinjanusvideoroom.js",
6
6
  "dependencies": {