A Docker Container containing a web application for streaming a video. The HTML5 video player is based on Shaka Player. # Example To spin up a web application on port 3000 for a video stream at `http://www.example.com/example.mpd` run the following command: ``` docker run -e "SOURCE=http://www.example.com/example.mpd" -p 3000:80 eyevinntechnology/html5player:0.0.2 ``` Then point your browser to "http://localhost:3000/" # Eyevinn HTML5 Player The Eyevinn HTML5 player is a Javascript player that provides a skin with player controllers on top of Shaka Player. ## Example code ```
```