skip to Main Content

I believe I have tried almost everything. What I am working with

2

Answers


  1. What is the URL for accessing apply.html?
    such as http://127.0.0.1:8088/applay.html?
    if that you should set <video src="/video.mp4">
    Because your video file is in the same folder as applay.html

    Login or Signup to reply.
  2. I would recommend using YouTube to embed this video. This helps keep the web app lightweight and is also easy to use.
    To do this, first, upload this video on youtube and embed it using the <iframe> tag. This link shows how to use YouTube links: https://www.w3schools.com/html/html_youtube.asp. It’s basically the below code:

    <iframe src="https://www.youtube.com/embed/tgbNymZ7vqY?autoplay=1&mute=1">
    </iframe>
    

    Remember to change the link only after the /embed/ and add the video URL.

    Hope it works 🙂

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search