UNPKG

theta-client-react-native

Version:

This library provides a way to control RICOH THETA using.

52 lines (43 loc) 1.11 kB
/** File information in Theta. */ /** Data about files in Theta. */ /** File type in Theta. */ export const FileTypeEnum = { /** still image files. */ IMAGE: 'IMAGE', /** video files. */ VIDEO: 'VIDEO', /** all files. */ ALL: 'ALL' }; /** type definition of FileTypeEnum */ /** Specifies the storage. */ export const StorageEnum = { /** internal storage */ INTERNAL: 'INTERNAL', /** external storage (SD card) */ SD: 'SD', /** current storage */ CURRENT: 'CURRENT' }; /** type definition of StorageEnum */ /** Video codec */ export const CodecEnum = { /** Undefined value */ UNKNOWN: 'UNKNOWN', /** codec H.264/MPEG-4 AVC */ H264MP4AVC: 'H264MP4AVC', /** codec H.265/HEVC */ H265HEVC: 'H265HEVC' }; /** type definition of CodecEnum */ /** THETA projection type */ export const ProjectionTypeEnum = { /** Equirectangular type */ EQUIRECTANGULAR: 'EQUIRECTANGULAR', /** Dual Fisheye type */ DUAL_FISHEYE: 'DUAL_FISHEYE', /** Dual Fisheye type */ FISHEYE: 'FISHEYE' }; /** type definition of ProjectionTypeEnum */ //# sourceMappingURL=theta-files.js.map