skip to Main Content

HTML Video tag isnt showing the video

I have this <video playsinline autoplay loop width="100%" height="100%" id="mainVideo"> <source src="1.mp4"> </video> and its showing the poster but no video. I have tried using controls and pressing play there but it just didnt do anything with my clicks. No,…

VIEW QUESTION

No compatible source was found for this media for type = video/mpeg in HTML5

So I tried to make a video player on my modal using vue-video-player, so below is my template code for the ModalDetailMediaVideo.vue <template> <div @keydown.esc="modalClosed()" @click="modalClosed()" class="modal fade" id="modalMediaVideo" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-lg justify-content-center"> <div class="layout-video">…

VIEW QUESTION

HTML video tag: rounded corners are pixelated

I am trying to show a video with rounded corners, but on the bottom corners, it is pixalated (as showen on the attached screenshot). This is the HTML code I have tried: <div class="container1"> <video src="Videos/Film 1.mp4" poster="Thumbnails/Film 1.jpg" class="video1"…

VIEW QUESTION

HTML video element controls not show

I create a video element, and set controls = true, but controls not showing (even hover) if (!this._player) { this._player = document.createElement('video'); } this._player.controls = true; this._player.src = xxxxx; also set video element width is 100% the container position is…

VIEW QUESTION
Back To Top
Search