I set up the licode platform by referring licode documentation in this platform how can I adjust the resolution of videos (in the basic example). I try to adjust the resolution by ./licode/extras/basic_example/public/script.js file. But I was unable to do it. Any kind of help would be appreciated.
adjust the resolution of licode platform
299 Views Asked by Gayan Charith At
1
There are 1 best solutions below
Related Questions in RESOLUTION
- CSS Different screen resolution
- SpriteKit images out of focus
- When do we use media-queries "resolution" in css?
- How to change dynamic video resolution during a call (in hangout WebRTC)
- What is today's most popular screen resolution?
- LibGDX what resolution should I draw my Images (PoT or can i choose?)
- Iphone app only won't run at the right resolution on ipad
- screen resolution and scrolling bar
- Android. How can I make an ImageView draw itself as a PNG?
- Running iPhone apps on ipad in full resolution
- Android: PrintedPdfDocument Resolution has no effect
- Xamarin Forms Android display pictures throws Exception
- In what Units does QSvgGenerator operate in?
- AVMutableVideoComposition image overlay low quality
- Increasing image scale and maximizing resolution using opencv?
Related Questions in WEBRTC
- Firefox 37 throwing error when trying to add microphone volume control for WebRTC audio context
- One to One screensharing using WEBRTC
- simpleWebRTC with php backend
- TURN server for WebRTC with REST API authentication
- Configure Asterisk as SIP outbound proxy (as a SIP server relay)
- Quickblox Group Video Calls with Javascript SDK
- WebRTC on isolated LAN without ice/stun/turn server
- Is it possible to have two screen-share sections on the same page?
- How set rear camera stream in WebRTC video chat
- How to use different network interface for signaling & media in WebRTC app?
- How to change dynamic video resolution during a call (in hangout WebRTC)
- Why does video resolution change when streaming from Android via WebRTC
- How to modify the content of WebRTC MediaStream video track?
- WebRTC Ice State = "failed" black Video
- WebRTC PeerJS Text Chat - Connect to multiple peerID at the same time
Related Questions in GETUSERMEDIA
- Chrome extension hide screensharing message window
- Chrome WebRTC Screen Sharing Extension requires refresh
- How to Hide Firefox Camera Icon Overlay in Windows
- Webcam MotionDetection hidden Canvas
- getUserMedia not working on local machine
- Enable getUserMedia using Javascript/jQuery
- Difference between window.AudioContext and navigator.getUserMedia
- How to record audio from Audio Element using javascript
- getUserMedia() mutes audio output in Chrome for Mobile
- Detect UserMedia Permission Before Requesting It
- getUserMedia() without SSL for local storage
- Does Kurento-utils WebRtcPeerSendrecv pay attention to all options?
- How to use getUserMedia with geckofx
- Get all media instagram. More than 33 picture
- getUserMedia API suport for Opera Local screen share
Related Questions in LICODE
- XMLHttpRequest cannot load http://domain.com:8080/socket.io/1/?t=1416289828054 No 'Access-Control-Allow-Origin' header is present
- licode publishing licode stream not working
- Rename recordings that are stored on the server - Licode webRTC
- What is the best webrtc sfu server for voice call large group?
- Over release a object in an dictionary that cause EXC_BAD_ACCESS error?
- Publish or initialize audio only stream in licode
- Licode Erizo.Stream Video Frame quality
- Licode Export Frames as JPG
- How should PLI packets be used in WebRTC video recording
- How do I handle packet loss when recording video peer to server via WebRTC
- WebRTC video conferencing app - star topology: how to get started?
- audio(sound) is missing in licode recorded *.mkv files
- How to start / stop Licode?
- Licode: Publishing Stream has failed after successful ICE checks
- adjust the resolution of licode platform
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I'm assuming by resolution that you mean the input video constraints.
To do this you would specify it when instantiating a stream object. The example below defines a minimum of 640 by 480 pixels, and a maximum of 1280 by 720:
var stream = {audio: true, video: true, data: true, videoSize: [640, 480, 1280, 720]};You can find further documentation on it here: http://lynckia.com/licode/client-api.html#stream
extract: You can also specify some constraints about the video size when creating a stream. In order to do this you need to include a videoSize parameter that is an array with the following format: [minWidth, minHeight, maxWidth, maxHeight]