Closed szmarczak closed 1 year ago
Also got this crash:
09-12 17:09:08.153 16957 16957 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
09-12 17:09:08.153 16957 16957 F DEBUG : LineageOS Version: '20.0-20230831-NIGHTLY-sagit'
09-12 17:09:08.153 16957 16957 F DEBUG : Build fingerprint: 'Xiaomi/sagit/sagit:8.0.0/OPR1.170623.027/V9.2.3.0.OCAMIEK:user/release-keys'
09-12 17:09:08.153 16957 16957 F DEBUG : Revision: '0'
09-12 17:09:08.153 16957 16957 F DEBUG : ABI: 'arm64'
09-12 17:09:08.153 16957 16957 F DEBUG : Timestamp: 2023-09-12 17:09:05.435281304+0200
09-12 17:09:08.153 16957 16957 F DEBUG : Process uptime: 1026s
09-12 17:09:08.153 16957 16957 F DEBUG : Cmdline: /system/bin/cameraserver
09-12 17:09:08.154 16957 16957 F DEBUG : pid: 13762, tid: 16938, name: CameraServiceWa >>> /system/bin/cameraserver <<<
09-12 17:09:08.154 16957 16957 F DEBUG : uid: 1047
09-12 17:09:08.154 16957 16957 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
09-12 17:09:08.154 16957 16957 F DEBUG : x0 0000000000000000 x1 000000000000422a x2 0000000000000006 x3 000000725812fad0
09-12 17:09:08.154 16957 16957 F DEBUG : x4 666d687164666668 x5 666d687164666668 x6 666d687164666668 x7 7f7f7f7f7f7f7f7f
09-12 17:09:08.154 16957 16957 F DEBUG : x8 00000000000000f0 x9 00000074fde23a00 x10 0000000000000001 x11 00000074fde61dd4
09-12 17:09:08.154 16957 16957 F DEBUG : x12 000000725812f5a0 x13 0000000000000036 x14 000000725812f728 x15 00000000000b20aa
09-12 17:09:08.154 16957 16957 F DEBUG : x16 00000074fdec6d58 x17 00000074fdea3c40 x18 00000072542a4000 x19 00000000000035c2
09-12 17:09:08.154 16957 16957 F DEBUG : x20 000000000000422a x21 00000000ffffffff x22 0000007505b4f0f9 x23 0000007258130000
09-12 17:09:08.154 16957 16957 F DEBUG : x24 000000728ba1ccf0 x25 000000725812fb84 x26 000000725812fff8 x27 00000000000fc000
09-12 17:09:08.154 16957 16957 F DEBUG : x28 00000000000fe000 x29 000000725812fb50
09-12 17:09:08.154 16957 16957 F DEBUG : lr 00000074fde53958 sp 000000725812fab0 pc 00000074fde53984 pst 0000000000000000
09-12 17:09:08.154 16957 16957 F DEBUG : backtrace:
09-12 17:09:08.154 16957 16957 F DEBUG : #00 pc 0000000000051984 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: f73b4091a9c819a21763f5bf11b53c2b)
09-12 17:09:08.154 16957 16957 F DEBUG : #01 pc 0000000000114dcc /system/lib64/libcameraservice.so (android::CameraServiceWatchdog::threadLoop()+348) (BuildId: d559a03a904e30747abfd8a951d6f210)
09-12 17:09:08.154 16957 16957 F DEBUG : #02 pc 0000000000012f18 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+416) (BuildId: a5ca39eaeeeb017be4afa358811e69fb)
09-12 17:09:08.154 16957 16957 F DEBUG : #03 pc 00000000000b6380 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+208) (BuildId: f73b4091a9c819a21763f5bf11b53c2b)
09-12 17:09:08.154 16957 16957 F DEBUG : #04 pc 00000000000530a8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: f73b4091a9c819a21763f5bf11b53c2b)
Stock camera app works fine though.
expo-camera
also works as well, so this is definitely an issue with vision camera.
Can you try removing those 25 lines: https://github.com/mrousavy/react-native-vision-camera/blob/4e96eb77e0755edf5a4351d61fa36d60415f1db6/package/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt#L436-L460
And see what happens?
It still crashes. I tried removing Zoom
and Torch Mode
as well and it still kept crashing.
try to delete zoom as prop from
Hey, thanks for the detailed bug report. Is this related to #1801 ?
The issue you mentioned looks exactly like this one, although I tried commenting out the code you mentioned and - with the code at that time - it still kept crashing. I'll test on the latest commit when I have time.
Hey!
Quick update: I think there could be four problems here:
limited
/legacy
device, and use Preview (always on), photo
and video
/frameProcessor
outputs (3 outputs) which are by default at maximum resolution. LIMITED/LEGACY devices might not support full-resolution streaming, see the Android capture session documentation on supported configuration maps.
We need PRIV PREVIEW
+ YUV/PRIV RECORD
+ JPEG MAXIMUM
. anything lower, needs to be explicitly handled by me, but I can easily add that no problemo. I just need the device to test it on.
What you can do: Try disabling photo
, video
and frameProcessor
and check if that works. If only PREVIEW is attached, everything should work.getPreviewCaptureRequest
and see what happens. I've heard zoom
is often the cause.I think i just fixed this in #2049, and released it to npm (v3.6.0) π
Please try this and let me know if this is still an issue.
If you appreciate my work and dedication to fix your issues and make VisionCamera better, please π consider sponsoring me on GitHub π to say thanks. Thanks!
What's happening?
Black screen after pressing the "switch camera" button in the top right.
Reproduceable Code
Relevant log output
logcat
```shell 09-12 16:43:22.865 12498 12536 I ReactNativeJS: Re-rendering camera page with active camera. Device: "BACK (0)" (4000x2250 photo / 3840x2160 video @ 30fps) 09-12 16:43:22.913 12498 12558 I CameraSession: Camera became available: 0 09-12 16:43:22.913 12498 12558 I CameraSession: Camera became available: 1 09-12 16:43:22.913 12498 12558 I CameraSession: Camera became available: 2 09-12 16:43:22.913 12498 12558 I CameraSession: Camera became available: 3 09-12 16:43:22.916 12498 12498 I CameraView: Props changed: [enableFrameProcessor, audio, cameraId, photo, orientation, video, isActive, fps, format, lowLightBoost, hdr] 09-12 16:43:22.932 12498 12498 I PreviewSize: Phone has a 1080 x 1920 screen. 09-12 16:43:22.935 12498 12498 I PreviewView: Using Preview Size 1920 x 1080. 09-12 16:43:22.936 12498 12498 D PreviewView: onMeasure(0, 0) 09-12 16:43:22.938 12498 12498 D PreviewView: Measured dimensions set: 0 x 0 09-12 16:43:22.938 12498 12498 I CameraView: Configuring Camera Device... 09-12 16:43:22.940 12498 12498 I CameraSession: Setting Format (fps: 30 | videoStabilization: null | hdr: false | lowLightBoost: false)... 09-12 16:43:22.941 12498 12498 I CameraSession: Setting isActive: false (isRunning: false) 09-12 16:43:22.965 12498 12498 D CompatibilityChangeReporter: Compat change id reported: 210923482; UID 10002; state: ENABLED 09-12 16:43:23.012 12498 12498 I CameraSession: Setting isActive: true (isRunning: false) 09-12 16:43:23.017 12498 12498 D PreviewView: onMeasure(1080, 1920) 09-12 16:43:23.018 12498 12498 D PreviewView: Measured dimensions set: 1080 x 1920 09-12 16:43:23.023 1062 1201 I ThermalEngine: handle_thresh_sig: SS Id SS-CLUSTER1-SP0, Read xo_therm 39000mC 09-12 16:43:23.041 12498 12498 I PreviewView: Surface created! Surface(name=null)/@0x14a5a9f 09-12 16:43:23.041 12498 12498 I CameraView: Configuring Camera Device... 09-12 16:43:23.042 12498 12498 I CameraSession: Configuring Session for Camera 0... 09-12 16:43:23.044 12498 12498 I CameraOutputs: Preparing Outputs for Camera 0... 09-12 16:43:23.044 12498 12498 I CameraOutputs: Adding native preview view output. 09-12 16:43:23.049 12498 12498 I PreviewSize: Phone has a 1080 x 1920 screen. 09-12 16:43:23.056 12498 12498 I CameraOutputs: Adding 4000x2250 photo output. (Format: 256) 09-12 16:43:23.062 12498 12498 I CameraOutputs: Adding 3840x2160 video output. (Format: 34) 09-12 16:43:23.062 12498 12498 I CameraOutputs: Prepared 3 Outputs for Camera 0! 09-12 16:43:23.063 12498 12498 I PreviewView: Surface resized! Surface(name=null)/@0x14a5a9f (1920 x 1080 in format #4) 09-12 16:43:23.063 12498 12558 I CameraSession: Starting Camera Session... 09-12 16:43:23.072 12498 12558 I CameraManager: Camera 0: Opening... 09-12 16:43:23.078 6742 6805 I CameraService: CameraService::connect call (PID 12498 "com.mrousavy.camera.example", camera ID 0) and Camera API version 2 09-12 16:43:23.079 6742 6805 I Camera2ClientBase: Camera 0: Opened. Client: com.mrousavy.camera.example (PID 12498, UID 10002) 09-12 16:43:23.079 6742 6805 I CameraDeviceClient: CameraDeviceClient 0: Opened 09-12 16:43:23.079 6742 6805 I CameraService: makeClient: Camera2 API, override to portrait 0 09-12 16:43:23.081 12498 12498 D VisionCameraProxy: Finding view 45... 09-12 16:43:23.082 12498 12498 D VisionCameraProxy: Found view 45! 09-12 16:43:23.083 6742 6805 I CameraService: onTorchStatusChangedLocked: Torch status changed for cameraId=0, newStatus=0 09-12 16:43:23.084 876 6255 I QCamera :Camera Device
json
```shell '{"formats":[{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":2160,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":3840,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizati onModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off "],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200," photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"c ontrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1280,"fieldOfV iew":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHe ight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1512,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":2688,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1458,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFor mats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1296,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minI SO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"]," videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1920,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSyste m":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsV ideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1944,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":2592,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":720,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-dete ction","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":800,"fieldOfView":69.47496985988803,"m axFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeigh t":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false," maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeig 3840 x 2160 Image with format #34. Logging 5 parameters: ht":320,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1536,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":2048,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":480,"fieldOfView":69.47,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":864,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false," photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixe lFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1600,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1080,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1440,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":960,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1280,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detect ion","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":480,"fieldOfView":69.47496985988803,"max Fps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHe ight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"vide oStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":768,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1024,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":600,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":800,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":720,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","suppor tsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":480,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":640,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":360,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":240,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":320,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVide oHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","nat ive","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":288,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":352,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":1200,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":1200,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":144,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":176,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1920,"videoHeight":1080,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1600,"videoHeight":1200,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1440,"videoHeight":1080,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":960,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280," videoHeight":768,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1280,"videoHeight":720,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1200,"videoHeight":1200,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"auto FocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":1024,"videoHeight":768,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":600,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":864,"videoHeight":480,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":800,"videoHeight":480,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":720,"videoHeight":480,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":480,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":640,"videoHeight":360,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":640,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":360,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":480,"videoHeight":320,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":352,"videoHeight":288,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":320,"videoHeight":240,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":640,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":480,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":240,"videoHeight":320,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30},{"pixelFormats":["rgb","native","yuv"],"videoStabilizationModes":["off","off"],"autoFocusSystem":"contrast-detection","supportsPhotoHDR":false,"photoHeight":320,"supportsVideoHDR":false,"maxISO":1600,"minISO":100,"minFps":1,"videoWidth":176,"videoHeight":144,"photoWidth":240,"fieldOfView":69.47496985988803,"maxFps":30}],"hardwareLevel":"level-3","maxZoom":4,"minZoom":1,"supportsLowLightBoost":false,"sensorOrientation":"landscape-left","supportsDepthCapture":false,"neutralZoom":1,"supportsFocus":true,"supportsRawCapture":true,"isMultiCam":false,"hasTorch":false,"devices":["wide-angle-camera"],"hasFlash":false,"name":"FRONT (1)","position":"front","id":"1"}' ```Device
Xiaomi Mi 6
VisionCamera Version
main
Can you reproduce this issue in the VisionCamera Example app?
Additional information