Marc Rousavy 0b7b4d50b5
Automatically build API documentation (#11)
* Automatically build API documentation using Typedoc and Docusaurus
* Move MD and move to MDX for Docusaurus Guides
2021-03-03 12:37:43 +01:00

2.0 KiB

id title sidebar_label custom_edit_url hide_title
cameracodec Module: CameraCodec CameraCodec null true

Module: CameraCodec

Type aliases

CameraPhotoCodec

Ƭ CameraPhotoCodec: hevc | jpeg | hevc-alpha

Available Photo Codec types used for taking a photo.

  • "hevc": The HEVC video codec. (iOS 11.0+)
  • "jpeg": The JPEG (jpeg) video codec. (iOS 11.0+)
  • "hevc-alpha": The HEVC (muxa) video codec that supports an alpha channel. This constant is used to select the appropriate encoder, but is NOT used on the encoded content, which is backwards compatible and hence uses "hvc1" as its codec type. (iOS 13.0+)

Defined in: src/CameraCodec.ts:33


CameraVideoCodec

Ƭ CameraVideoCodec: h264 | hevc | hevc-alpha | jpeg | pro-res-4444 | pro-res-422 | pro-res-422-hq | pro-res-422-lt | pro-res-422-proxy

Available Video Codec types used for recording a video.

  • "hevc": The HEVC video codec. (iOS 11.0+)
  • "h264": The H.264 (avc1) video codec. (iOS 11.0+)
  • "jpeg": The JPEG (jpeg) video codec. (iOS 11.0+)
  • "pro-res-4444": The Apple ProRes 4444 (ap4h) video codec. (iOS 11.0+)
  • "pro-res-422": The Apple ProRes 422 (apcn) video codec. (iOS 11.0+)
  • "pro-res-422-hq": The Apple ProRes 422 HQ (apch) video codec. (iOS 13.0+)
  • "pro-res-422-lt": The Apple ProRes 422 LT (apcs) video codec. (iOS 13.0+)
  • "pro-res-422-proxy": The Apple ProRes 422 Proxy (apco) video codec. (iOS 13.0+)
  • "hevc-alpha": The HEVC (muxa) video codec that supports an alpha channel. This constant is used to select the appropriate encoder, but is NOT used on the encoded content, which is backwards compatible and hence uses "hvc1" as its codec type. (iOS 13.0+)

Defined in: src/CameraCodec.ts:14