Code Monkey home page Code Monkey logo

Comments (3)

weigangd avatar weigangd commented on September 28, 2024 2

Hi,

I had the same problem and stumpled upon this.
A solution that worked for me was:

  1. Make sure your website is called via HTTPS. (else you need to activate the options in the safari developer tools that WebRTC is allowed on 'unsafe' websites)
  2. Set the "playsinline"-attribute of the video object to true:
navigator.mediaDevices.getUserMedia({video: true, audio: false})
     .then(function(stream) {
        video.srcObject = stream;
        video.setAttribute("playsinline", true);  // <-- this is the important line
        video.play();
    })

Hope it helps!

from samples-server.

weigangd avatar weigangd commented on September 28, 2024 2

Glad it helped :)

I don't know the etiquette either but I created a pull request and maybe @a2sheppy will see it.

I think you should leave this Issue open until the fix is merged.

from samples-server.

sehsarah avatar sehsarah commented on September 28, 2024

This worked! Thanks so much @nako11 💯

Should you make a Pull Request for this to be added to the example in this repo? Unsure what the etiquette is to close this Issue or leave it open so others can find it easily.

Thanks so cool!!! 🎉

from samples-server.

Related Issues (20)

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.