new Camera()
#CAMERA
Camera class
Methods
-
getFps() → {number}
-
Returns the fps (frame per second) value of the camera display.
- Source:
- See:
Returns:
The fps (frame per second) value of the camera display.- Type
- number
-
getHeight() → {number}
-
Returns the height of the camera display in pixels.
Returns:
The height of the camera display in pixels.- Type
- number
-
getId() → {string}
-
Returns the ID of the camera display.
- Source:
- See:
Returns:
The ID of the camera display.- Type
- string
-
getName() → {string}
-
Returns the name of the camera.
- Source:
- See:
Returns:
The name of the camera.- Type
- string
-
getWidth() → {number}
-
Returns the width of the camera display in pixels.
Returns:
The width of the camera display in pixels.- Type
- number
-
setDisplay(displayId)
-
Set up the camera display to the specified HTML element. If the displayId is empty, the existing camera display will be removed.
Parameters:
Name Type Description displayIdstring | null The ID of the HTML element or null. -
setMode(width, height, fps)
-
Sets the width, height, and fps values of the camera display.
Parameters:
Name Type Description widthnumber The width of the display in pixels. heightnumber The height of the display in pixels. fpsnumber The fps (frame per second) value of the display. - Source:
- See:
-
setQuality(bandwidth, quality)
-
Set the quality of the display.
Parameters:
Name Type Argument Default Description bandwidthnumber The maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second. qualitynumber <optional>
0 An integer that specifies the required level of picture quality (from 1 to 100).