Intel® Collaboration Suite for WebRTC
Community support and discussions on the Intel® Collaboration Suite for WebRTC (Intel® CS for WebRTC).
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

How to set resolutions for video camera with the Javascript SDK

Zhen_L_
Beginner
562 Views

Woogeen.LocalStream.create({

    video: {

        device: 'camera',

        resolution: 'vga',

        frameRate: 25

    },

    audio: true

}

This creates a video stream with 640px width and 480px height.

 

I wish to have 480 width and 640px height. Is it possible? I need to do this so that the stream can be easily fitted on a phone screen. But how do I reverse the width and height of VGA?

0 Kudos
1 Reply
Jianjun_Z_Intel
Employee
562 Views

Hi Zhen,

Please try to use an object instead of a string for resolution. The object has two properties: width and height. In your case, it could be something like {width: 480, height: 640}.

This is not mentioned in the API reference guide. So it is not fully tested. But I hope it works for you.

0 Kudos
Reply