0
How can I call video using html?
3 Antworten
+ 10
similar posts available use search bar before posting ur question
hope, it may helps u
https://www.sololearn.com/discuss/92449/?ref=app
https://www.sololearn.com/discuss/18225/?ref=app
https://www.sololearn.com/discuss/186691/?ref=app
https://www.sololearn.com/discuss/1163282/?ref=app
https://www.sololearn.com/discuss/605245/?ref=app
https://www.sololearn.com/discuss/75044/?ref=app
https://www.sololearn.com/discuss/134718/?ref=app
+ 3
Taken from here: https://www.w3schools.com/html/html5_video.asp
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
This embeds a video with dimensions 320 x 240, and attachs controls to it.
It allows loading the video in two formats: "mp4" and "ogg". Whichever one that gets used depends on browser compatibility with either format.
+ 1
<video controls>
<source src="" type="">
</video>