0
What is the code for playing videos one after another automatically?
I want to upload three videos and play first then second, automatically, and finally third, automatically. (:
1 Respuesta
+ 1
the loop attribute is that one that does that
<video controls loop>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>