Optional
constraintsAllow passing in exact constraints for camera device selection via getUserMedia. If set, will override the FrameSourceConfiguration.resolution property and any other camera-related properties.
In the example below, a camera device is explicitly selected by ID. Audio is explicitly not requested (never used by STRICH) and an HD-like resolution preference is specified by range.
constraints: {
video: {
deviceId: {
exact: '2d122f8e0630b5a6a19c157f066e13e05115f12f7d4dfb29e5560b4acefe7308'
},
width: {min: 800, ideal: 1280, max: 1600},
height: {min: 600, ideal: 720, max: 900}
},
audio: false
}
This is an advanced option, and should only be used if you are familiar with the Media Capture and Streams API and have to build your own camera selection workflow.
undefined
Optional
rememberRemember the camera that was last used to successfully scan a code.
If this is set to true, the frame source will remember the camera used whenever a code was successfully scanned, and attempt to use the same camera again when re-initialized.
false
Optional
resolutionVideo frame resolution.
The default resolution is 720p, which is usually enough for good quality barcodes. You can try higher resolutions if you have very fine or degraded codes, at the expense of higher computational requirements.
hd
Generated using TypeDoc
Configuration for the frame source (camera).