Most voted "html5-video" questions
HTML5 video is an element introduced in the HTML5 specification project for the purpose of creating a standard-compliant way, free from the need to use plugins for video and movie playback, partially replacing the - `Object`.
Learn more…64 questions
Sort by count of
-
0
votes1
answer721
viewsvideo open in javascript
Personal I am layman in this area. I would like to know how I can this playing this url https://ns5001921.ip-192-99-16.net/Uploads/Animes/1/2x2-shinobuden/01.mp4 in this javascript file // SISTEMA…
-
0
votes1
answer232
viewsWEBCAM without Flash
Guys... I’m trying to take a photo with a webcam... I’m relatively new in Javascript and I’m taking a choir! Follows my code: //função para iniciar a camera function startCamera(){…
-
0
votes1
answer808
viewsHTML5 and Javascript - Multiple Play/Pause Videos
Talk personal all right? I have a page where I have 2 videos in HTML5, I’m not even using another player. I would like to know how I can make it so that when I click on a video and others don’t all…
-
0
votes1
answer57
viewsSelect an option with external button
Good afternoon, everyone, I need that when I press a button, the same cause a specific option is selected on select. For example, I own 3 buttons and 3 buttons options:…
-
0
votes1
answer39
viewsError hiding field with Jquery
I have an html code and I would like to hide a field when selecting the "Graph" option (when the field is visible I need it to be configured "required autofocus") and tried with jquery, however,…
-
0
votes1
answer191
viewsBest way to set up the HTTP header content-length
Hello, I have a video player that makes a request via Servlet that already works and I need to include a new video. At first I will return the video according to the logged in user. The problem I…
-
-1
votes2
answers5450
viewsHow to run . mkv files in all browsers?
I’m trying to run a video on .mkv in Firefox, however same error due to file extension. Is there any way to make the video work? <video> <source src="video.mkv" type="video/mp4">…
-
-1
votes1
answer633
viewsChoose the language of the player in HTML5
I have a dual audio video (English and Portuguese) but when my page loads the audio is only in English. <video width="200" height="200" controls> <source src="video/lucifer/T03E01.mkv"…
-
-1
votes1
answer395
viewsChange display according to <select> option
I am mounting a Selection Menu where the user selects a month, when the month is selected, a next selection menu is displayed to choose a day. What I need to do now is: when the user selects the…
-
-1
votes1
answer26
viewsVideo tag controls are not working
I put a tag and the attribute "Controls" in my html. The video screen appears, and the controls also, but nothing happens when pressing the buttons of the controls. I click and they don’t even…
-
-1
votes1
answer768
viewsPlay local video with HTML and Javascript
Hello, I want to make a local player with HTML. I want to play locally, without uploading. I want to select a folder with music or video files and play randomly. Below follows my website with the…
-
-1
votes1
answer262
viewsForce autoplay on video(not mute)
I’m trying to force an autoplay on videos with javascript, but with videos not mute, with mute video is very simple, but with it with volume works 50%, for example, if I access the video page by…
-
-2
votes1
answer128
viewsStart video from where you left off - resume video from where you left off - website
How do I keep the current progress of a video saved, even when updating or leaving the page? The video is on the page with this simple code: < div class="embed-Responsive embed-Responsive-16by9"…
-
-2
votes1
answer32
viewsHow can I insert two videos with HTML next to each other and play them both at the same time?
<html> <body> <video> <source src="teste.mp4" type="video/mp4"> </video> <video> <source src="teste.mp4" type="video/mp4"> </video> </body>…