JS-OCR-demo icon indicating copy to clipboard operation
JS-OCR-demo copied to clipboard

How to Selecting Front or Back Camera

Open vansgare opened this issue 7 years ago • 5 comments

sorry about my bad english. I am interested in using this js-ocr, but I need to be able to select videosource suppose the user wants to use the front camera or rear camera.

vansgare avatar Jan 11 '18 11:01 vansgare

Refer from

  • https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia
  • https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices
  • https://github.com/bahmutov/ng-simple-webrtc/issues/18
  • https://stackoverflow.com/questions/41724545/select-rear-camera-on-android-device-jsartoolkit5

This is what I changed in searchForRearCamera() function.

    function searchForRearCamera() {
        var deferred = new $.Deferred();

        // MediaStreamTrack.getSources is deprecated https://www.chromestatus.com/feature/4765305641369600
        // https://github.com/kdzwinel/JS-OCR-demo/issues/7
        // use navigator.mediaDevices.enumerateDevices instead. https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices
        if (navigator.mediaDevices.getUserMedia) {
            navigator.mediaDevices.enumerateDevices()
            .then(function (sources) {
                var rearCameraIds = sources.filter(function (source) {
                    return (source.kind === 'videoinput' && source.label.toLowerCase().indexOf('back') !== -1);
                }).map(function (source) {
                    return source.deviceId;
                });

                if (rearCameraIds.length) {
                    deferred.resolve(rearCameraIds[0]);
                } else {
                    deferred.resolve(null);
                }
            });
        } else {
            deferred.resolve(null);
        }

        return deferred.promise();
    }

ve3 avatar Oct 23 '18 08:10 ve3

Small front/back switch could be a nice addition in step one if anyone wants to take a stab at it.

kdzwinel avatar Apr 13 '19 18:04 kdzwinel

Has this been updated? On mobile I still only get the front facing camera when the rear camera is the useful one.

npsantini avatar Oct 22 '19 20:10 npsantini

@npsantini nope, but I agree that it'd be a really nice feature. Add it and I'll be happy to review and merge.

kdzwinel avatar Oct 23 '19 09:10 kdzwinel

I have given a shot and have completed it.

Change the following lines of code.

function setupVideo(rearCameraId) { var deferred = new $.Deferred(); var videoSettings = { video: { optional: [ { width: { min: pictureWidth } }, { height: { min: pictureHeight } } ] } };

to

function setupVideo(rearCameraId) { var deferred = new $.Deferred();

	var front = false;
        var videoSettings = {
            audio: false,
            video: {
                width: 1920,
                height: 1080,
                facingMode: (front ? "user" : "environment")
            }
        };

    //if rear camera is available - use it
    if (rearCameraId) {
        videoSettings.video.optional.push({
            sourceId: rearCameraId
        });
    }

changing the above code will give you an image bug on ios safari(image upside down). so add the below line to fix up the bug but we need to put up a condition to check the environment of the webpage being opened i.e whether the page is opened on ios/android or windows platform.

the code to be added up

ctx.setTransform(1,0,0,-1,0,canvas.height);

tested on ios 11.0.1 iPhone xs max device. I haven't tested out yet on android, if possible please kindly test it out on android and let me know.

File image

Loks2008 avatar Oct 02 '20 06:10 Loks2008