Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 458 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 458 Bytes

h264-player

$ npm install

Start the server

$ cd server
$ node ws_server.js

Serve the client page

Create a HTTP server to serve the index page.

Here, python is being used to create the HTTP server.

Python 2:

$ python -m SimpleHTTPServer 8001

Python 3:

$ python3 -m http.server 8001

Browse: http://localhost:8001/

Reference

H264 Converter