- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Tags:
- HTML5
- JavaScript*
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page