• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

Add 2 Webcam in one page with WebcamJS

javascriptphphtmlcanvaswebcam


PHP Snippet 1:

<div style="width: 100%;text-align:center;">
    <video id="myCamer2" width="150" height="150" autoplay></video>
</div>

PHP Snippet 2:

<script>
// second camera
let video = document.querySelector("#myCamer2");
let stream = await navigator.mediaDevices.getUserMedia({ video: true, audio: false });
video.srcObject = stream;
</script>

Related Snippets

backup files to google drive using PHP

How to keep value of selected value after form submission?

calling server using nusoap with complextype

Message: Set sys_temp_dir in your php.ini after installed composer

Using if(isset($_POST['submit'])) to not display echo when script is open is not working

php 7 php.ini upload_max_filesize not working

Need to display only array value in JSON output

SQL AVG() to 2 decimals

Star and Half Star Rating in Laravel

Add Metadata, headers (Expires, CacheControl) to a file uploaded to Amazon S3 using the Laravel 5.0 Storage facade

php echo remove slashes from url [duplicate]

How to edit Records using CodeIgniter

How to convert the int value to inch in PHP [closed]

How to Install Composer Require doctrine/dbal

"There is no active transaction" when refreshing database in Laravel 8.0 test

About Contact Privacy policy Terms and conditions