diff --git a/assets/dist/index.html b/assets/dist/index.html index 925c643727a9f848934f671db751f59b8858518a..89e40e9e86cfe33dfcdeb45432301d6026ddf59d 100644 --- a/assets/dist/index.html +++ b/assets/dist/index.html @@ -16,8 +16,8 @@ <body> <canvas id="canvas"></canvas> <div id="cont"> - <video id="video" controls src="/stream" height="720" width="1280" type="video/ogg; codecs=theora" autoplay="autoplay"> - Your user agent does not support the HTML5 Video element. + <video id="video" controls src="/stream" type="video/ogg; codecs=theora" autoplay="autoplay" playsinline> + Your user agent does not support the HTML5 Video element. </video> </div> </body> diff --git a/assets/dist/style.css b/assets/dist/style.css index c2c28bcbdb9d52f0559c5f9d5ad12bc9f336f67f..a2e97a4f2a605440670ce4a4ccab859f7ad4fd20 100644 --- a/assets/dist/style.css +++ b/assets/dist/style.css @@ -24,3 +24,8 @@ body { justify-content: center; text-align: center; } + +video { + width: 50%; + height: 50%; +}