theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
58 lines • 1.76 kB
TypeScript
/**
* File format.
*/
export declare const FileFormatEnum: {
/**
* Reserved value
*/
readonly RESERVED: "RESERVED";
/**
* Still image. 5376x2688
*
* For RICOH THETA V
*/
readonly IMAGE_5K: "IMAGE_5K";
/**
* Movie. 3840x1920. H.264/MPEG-4 AVC
*
* For RICOH THETA V, RICOH THETA Z1 or later
*/
readonly VIDEO_4K: "VIDEO_4K";
/**
* Movie. 1920x960. H.264/MPEG-4 AVC
*
* For RICOH THETA V, RICOH THETA Z1 or later
*/
readonly VIDEO_2K: "VIDEO_2K";
/**
* Still image JPEG format. 6720x3360 (Equirectangular) or 7296x3648 (Dual-Fisheye)
*
* For RICOH THETA Z1 or later
*/
readonly IMAGE_6_7K: "IMAGE_6_7K";
/**
* Still image RAW+ format. 7296x3648
*
* For RICOH THETA Z1 or later
*/
readonly RAW_P_6_7K: "RAW_P_6_7K";
/**
* Movie. 2688x2688. H.264/MPEG-4 AVC
*
* RICOH THETA Z1 firmware v3.01.1 or later. This mode outputs two fisheye video for each lens.
* The MP4 file name ending with _0 is the video file on the front lens,
* and _1 is back lens. This mode does not record audio track to MP4 file.
*/
readonly VIDEO_2_7K: "VIDEO_2_7K";
/**
* Movie. 3648x3648. H.264/MPEG-4 AVC
*
* RICOH THETA Z1 firmware v3.01.1 or later. This mode outputs two fisheye video for each lens.
* The MP4 file name ending with _0 is the video file on the front lens,
* and _1 is back lens. This mode does not record audio track to MP4 file.
*/
readonly VIDEO_3_6K: "VIDEO_3_6K";
};
/** type definition of FileFormatEnum */
export type FileFormatEnum = typeof FileFormatEnum[keyof typeof FileFormatEnum];
//# sourceMappingURL=file-format.d.ts.map