├── readme.md ├── receive.html ├── send.html ├── server.php └── socket.js /readme.md: -------------------------------------------------------------------------------- 1 | # Live video stream 2 | Live video stream with `swoole` php extension. 3 | 4 | ## Usage 5 | - clone this repo 6 | - open terminal and type `php server.php` 7 | - open localhost:8000/send.html to start live stream 8 | - open localhost:8000/receive.html to receive live stream 9 | -------------------------------------------------------------------------------- /receive.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |