<video width="320" height="240" autoplay loop>
<source src="movie1.mp4" type="video/mp4">
<source src="movie2.mp4" type="video/mpr">
Your browser does not support the video tag.
</video>
The code above will play movie1.mp4
over and over again. What I want to achieve is to play those two videos one after the other. I mean after playing movie1.mp4
, the movie2.mp4
will play next.
How to achieve this?