Code Monkey home page Code Monkey logo

Comments (1)

daspinola avatar daspinola commented on September 26, 2024

I guess you might have figured it out in the meantime but I will leave this as a guideline for anyone else that might have similar questions.

If you have two videos, let's say sample_1 and sample_2 you can on the server.js replace the path with something like:

const path = `assets/${req.query.name}.mp4`

And on the index.html add the name of the video you want to load:

<video id="videoPlayer" controls muted="muted" autoplay>
  <source src="/video?name=sample_1" type="video/mp4">
</video>

As for switching videos, if you done the above, let's say you have a button to load the second video and you add a click event:

<video id="videoPlayer" controls muted="muted" autoplay>
  <source src="/video?name=sample_1" type="video/mp4">
</video>

<button class="video2">Second video</button>

<script src="index.js"></script>
document.addEventListener('DOMContentLoaded', init, false)

function init() {
  const video2 = document
    .querySelector('.video2')
  
  video2
    .addEventListener('click', () => {
      const videoPlayer = document
        .getElementById('videoPlayer')
      const videoPlayerSource = document
        .querySelector('#videoPlayer source')

      videoPlayerSource
        .setAttribute('src', '/video?name=sample_2')

      videoPlayer.load()
    })
}

For the size of the video you can either add the width and height with css (preferred) or add it on the index.html

<video id="videoPlayer" width="800" height="450" controls muted="muted" autoplay>
  <source src="/video?name=sample_1" type="video/mp4">
</video>

from video-stream-sample.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.