You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ For a complete implementation of advanced capabilities, see [Turnkey HTML5 Video
20
20
*[x] Simple implementation of signaling broadcast (to connect automatically) and text chat, using plain files
21
21
22
22
### Key Features for HTML5 Videochat / Live Streaming: Broadcast & Playback
23
-
*[x] 1 way to many live video streaming, in public lobby
23
+
*[x]WebRTC 1 way to many live video streaming, in public lobby
24
24
*[x] WebRTC relayed streaming (reliable and scalable to many clients from Wowza SE streaming server, independent of broadcaster upload connection) / P2P using VideoWhisper WebRTC
*[x] screen sharing toggle, with microphone track mixed
@@ -38,9 +38,10 @@ For a complete implementation of advanced capabilities, see [Turnkey HTML5 Video
38
38
Warning: some of these features are not active/implemented in this simplified edition, but can be enabled as in turnkey site edition.
39
39
40
40
## Installation Instructions
41
-
Before installing, make sure your hosting environment meets all [requirements](https://videowhisper.com/?p=Requirements) including the Wowza SE as HTML5 WebRTC streaming relay and/or the [VideoWhisper WebRTC signaling server](https://github.com/videowhisper/videowhisper-webrtc/). Production implementations should also involve Session Control for security and website integration (like list of live channels).
41
+
Before installing, make sure your hosting environment meets all [requirements](https://videowhisper.com/?p=Requirements) including the Wowza SE as HTML5 WebRTC streaming relay and/or the [VideoWhisper WebRTC signaling server](https://github.com/videowhisper/videowhisper-webrtc/). Production implementations should also involve Session Control for security and website integration (like list of live channels).
42
+
For testing, get a free plan from [WebRTC Host: P2P](https://webrtchost.com/hosting-plans/#WebRTC-Only).
42
43
43
-
1. If you don't use a [turnkey webrtc relay streaming host](https://webrtchost.com/hosting-plans/), configure WebRTC and SSL with Wowza SE or the VideoWhisper WebRTC server.
44
+
1. If you don't use a [turnkey webrtc relay streaming host](https://webrtchost.com/hosting-plans/), configure WebRTC + SSL with Wowza SE or the VideoWhisper WebRTC + STUN/TURN server.
44
45
2. Deploy files to your web installation location. (Example: yoursite.domain/html5-videochat/)
45
46
3. Fill your streaming settings in settings.php file
46
47
4. If you don't have SuPHP, enable write permissions (0777) for folder "uploads", required to save session and chat info.
Copy file name to clipboardExpand all lines: index.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,8 @@
69
69
<br> + All Plain PHP Demos: <a href="https://demo.videowhisper.com/p2p-html5-videocall/">P2P Video Call</a> | <a href="https://demo.videowhisper.com/videocall-html5-videochat-php/">Video Call on Wowza SE</a> | <a href="https://demo.videowhisper.com/html5-videochat-php/">Live Streaming on Wowza SE</a> | <a href="https://demo.videowhisper.com/vws-html5-livestreaming/">Live Streaming on VideoWhisper WebRTC</a> | <a href="https://demo.videowhisper.com/cam-recorder-html5-video-audio/">Cam/Mic Recorder</a>
70
70
<br> + Compatible hosting for all features including live streaming servers and video tools: <a href="https://webrtchost.com/hosting-plans/">WebRTC Host on Wowza SE</a> (recommended)
71
71
<br> + Server GitHub: <a href="https://github.com/videowhisper/videowhisper-webrtc">VideoWhisper WebRTC signaling server</a> (NodeJS, supports using STUN/TURN serverlike CoTURN)
<br> + Turnkey Cam Site Solution: <a href="https://paidvideochat.com/html5-videochat/">Turnkey HTML5 Videochat Site</a> - Advanced capabilities (including video conferencing, collaboration, tips, pay per minute, advanced tabbed interface, 2 way videocalls / shows requested from group broadcast), available as WordPress plugin with full php source.
Copy file name to clipboardExpand all lines: settings.php
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
<?php
2
2
3
3
//A server is required for WebRTC: VideoWhisper + a TURN server or Wowza Streaming Engine
4
-
//See https://videowhisper.com/?p=Requirements or get a turnkey streaming plan from https://webrtchost.com/hosting-plans/
4
+
//For P2P get a Free testing plan from https://webrtchost.com/hosting-plans/#WebRTC-Only or install your own server https://github.com/videowhisper/videowhisper-webrtc + STUN/TURN Server
5
+
//For Wowza SE, see https://videowhisper.com/?p=Requirements or get a turnkey streaming plan from https://webrtchost.com/hosting-plans/
0 commit comments