Reputation: 55
<div style={{ height: "100vh" }} className="clearance">
<video width="100%" height="100%" controls>
<source
src={course?.courseAttachments?.attachmentUrl}
type="video/mp4"
/>
</video>
</div>
I have tried adding different attributes but the video starts again when it finishes running
Upvotes: 0
Views: 588
Reputation: 2508
Try changing your src
to this:
src = {course?.courseAttachments?.attachmentUrl} + "&loop=false"
Upvotes: 0