diff --git a/assets/global_behaviors.png b/assets/images/global_behaviors.png similarity index 100% rename from assets/global_behaviors.png rename to assets/images/global_behaviors.png diff --git a/assets/plantuml_ble_cohn_provision.png b/assets/images/plantuml_ble_cohn_provision.png similarity index 100% rename from assets/plantuml_ble_cohn_provision.png rename to assets/images/plantuml_ble_cohn_provision.png diff --git a/assets/plantuml_ble_connect_ap.png b/assets/images/plantuml_ble_connect_ap.png similarity index 100% rename from assets/plantuml_ble_connect_ap.png rename to assets/images/plantuml_ble_connect_ap.png diff --git a/assets/plantuml_ble_connect_new_ap.png b/assets/images/plantuml_ble_connect_new_ap.png similarity index 100% rename from assets/plantuml_ble_connect_new_ap.png rename to assets/images/plantuml_ble_connect_new_ap.png diff --git a/assets/plantuml_ble_disconnect_ap.png b/assets/images/plantuml_ble_disconnect_ap.png similarity index 100% rename from assets/plantuml_ble_disconnect_ap.png rename to assets/images/plantuml_ble_disconnect_ap.png diff --git a/assets/plantuml_ble_live_streaming.png b/assets/images/plantuml_ble_live_streaming.png similarity index 100% rename from assets/plantuml_ble_live_streaming.png rename to assets/images/plantuml_ble_live_streaming.png diff --git a/assets/plantuml_ble_scan_for_ssids.png b/assets/images/plantuml_ble_scan_for_ssids.png similarity index 100% rename from assets/plantuml_ble_scan_for_ssids.png rename to assets/images/plantuml_ble_scan_for_ssids.png diff --git a/assets/plantuml_ble_tlv_vs_protobuf.png b/assets/images/plantuml_ble_tlv_vs_protobuf.png similarity index 100% rename from assets/plantuml_ble_tlv_vs_protobuf.png rename to assets/images/plantuml_ble_tlv_vs_protobuf.png diff --git a/assets/resumeable_ota.png b/assets/images/resumeable_ota.png similarity index 100% rename from assets/resumeable_ota.png rename to assets/images/resumeable_ota.png diff --git a/assets/simple_ota.png b/assets/images/simple_ota.png similarity index 100% rename from assets/simple_ota.png rename to assets/images/simple_ota.png diff --git a/assets/webcam.png b/assets/images/webcam.png similarity index 100% rename from assets/webcam.png rename to assets/images/webcam.png diff --git a/assets/js/lunr/lunr-store.js b/assets/js/lunr/lunr-store.js index d2fd04e6..78706c21 100644 --- a/assets/js/lunr/lunr-store.js +++ b/assets/js/lunr/lunr-store.js @@ -15,14 +15,14 @@ var store = [ }, { "title": "Tutorials: ", - "excerpt": "This set of tutorials is a series of sample scripts / files and accompanying .html walk-throughs to implement basic functionality to interact with a GoPro device using the following languages: - Python - Kotlin - More to come! The tutorials only support Open GoPro Version 2.0 and must be run on a [supported camera](/ble/index.htmlsupported-cameras). They will provide walk-throughs and sample code to use the relevant language / framework to exercise the Open GoPro Interface using Bluetooth Low Energy (BLE) and HTTP over WiFi. {% warning %} The tutorials are only tested on the latest camera / firmware combination. This is only an issue in cases where capabilities change between cameras such as setting options. {% endwarning %} The tutorials are meant as an introduction to the Open GoPro specification. They are not a substitute for the complete [BLE](/ble/index.html) and [HTTP](/http) specifications which will be your main source of reference after completing the tutorials. {% for tutorial in site.tutorials %} - [{{ tutorial.title }}]({{ tutorial.permalink | prepend: site.baseurl }}) {% endfor %}", + "excerpt": "This set of tutorials is a series of sample scripts / files and accompanying .html walk-throughs to implement basic functionality to interact with a GoPro device using the following languages: - Python - Kotlin - More to come! The tutorials only support Open GoPro Version 2.0 and must be run on a [supported camera](/OpenGoPro/ble/index.htmlsupported-cameras). They will provide walk-throughs and sample code to use the relevant language / framework to exercise the Open GoPro Interface using Bluetooth Low Energy (BLE) and HTTP over WiFi. {% warning %} The tutorials are only tested on the latest camera / firmware combination. This is only an issue in cases where capabilities change between cameras such as setting options. {% endwarning %} The tutorials are meant as an introduction to the Open GoPro specification. They are not a substitute for the complete [BLE](/OpenGoPro/ble/index.html) and [HTTP](/http) specifications which will be your main source of reference after completing the tutorials. {% for tutorial in site.tutorials %} - [{{ tutorial.title }}]({{ tutorial.permalink | prepend: site.baseurl }}) {% endfor %}", "categories": [], "tags": [], "url": "/OpenGoPro/tutorials/#" }, { "title": "Tutorial 1: Connect BLE: ", - "excerpt": "This tutorial will provide a walk-through to connect to the GoPro camera via Bluetooth Low Energy (BLE). Requirements Hardware A GoPro camera that is supported by Open GoPro python kotlin One of the following systems: Windows 10, version 16299 (Fall Creators Update) or greater Linux distribution with BlueZ >= 5.43 OS X/macOS support via Core Bluetooth API, from at least OS X version 10.11 An Android Device supporting SDK >= 33 Software python kotlin Python >= 3.9 and < 3.12 must be installed. See this Python installation guide. Android Studio >= 2022.1.1 (Electric Eel) Overview / Assumptions python kotlin This tutorial will use bleak to control the OS’s Bluetooth Low Energy (BLE). The Bleak BLE controller does not currently support autonomous pairing for the BlueZ backend. So if you are using BlueZ (i.e. Ubuntu, RaspberryPi, etc.), you need to first pair the camera from the command line as shown in the BlueZ tutorial. The bleak module is based on asyncio which means that its awaitable functions need to be called from an async coroutine. In order to do this, all of the code below should be running in an async function. We accomplish this in the tutorial scripts by making main async as such: import asyncio async def main() -> None: Put our code here if __name__ == \"__main__\": asyncio.run(main()) These are stripped down Python tutorials that are only meant to show the basics. For a complete Python SDK that uses bleak as the backend as well as a cross-platform WiFi backend to easily write Python apps that control the GoPro, see the Open GoPro Python SDK This tutorial will provide a set of Kotlin tutorials to demonstrate Open GoPro Functionality. The tutorials are provided as a single Android Studio project targeted to run on an Android device. The tutorials are only concerned with application-level demonstrations of the Open GoPro API and therefore do not prioritize the following: UI: The tutorial project only contains a minimal UI to select, implement, and view logs for each tutorial Android architecture / best practices: the project architecture is designed to encapsulate Kotlin functionality to easily display per-tutorial functionality Android-specific requirements: permission handling, adapter enabling, etc are implemented in the project but not documented in the tutorials BLE / Wifi (HTTP) functionality: A simple BLE API is included in the project and will be touched upon in the tutorials. However, the focus of the tutorials is not on how the BLE API is implemented as a real project would likely use a third-party library for this such as Kable See the Punchthrough tutorials for Android BLE-Specific tutorials These tutorials assume familiarity and a base level of competence with: Android Studio Bluetooth Low Energy JSON HTTP Setup python kotlin This set of tutorials is accompanied by a Python package consisting of scripts separated by tutorial module. These can be found on Github. Once the Github repo has been cloned or downloaded to your local machine, the package can be installed as follows: Enter the python tutorials directory at $INSTALL/demos/python/tutorial/ where $INSTALL is the top level of the Open GoPro repo where it exists on your local machine Use pip to install the package (in editable mode in case you want to test out some changes): pip install -e . While it is out of the scope of this tutorial to describe, it is recommended to install the package in to a virtual environment in order to isolate system dependencies. You can test that installation was successful by viewing the installed package’s information: $ pip show open-gopro-python-tutorials Name: open-gopro-python-tutorials Version: 0.0.3 Summary: Open GoPro Python Tutorials Home-page: https://github.com/gopro/OpenGoPro Author: Tim Camise Author-email: gopro.com License: MIT Location: c:\\users\\tim\\gopro\\opengopro\\demos\\python\\tutorial Requires: bleak, requests Required-by: This set of tutorials is accompanied by an Android Studio project consisting of, among other project infrastructure, Kotlin files separated by tutorial module. The project can be found on Github. Once the Github repo has been cloned or downloaded to your local machine, open the project in Android studio. At this point you should be able to build and load the project to your Android device. The project will not work on an emulated device since BLE can not be emulated. Just Show me the Demo!! python kotlin Each of the scripts for this tutorial can be found in the Tutorial 1 directory. Python >= 3.9 and < 3.12 must be used as specified in the requirements You can test connecting to your camera through BLE using the following script: python ble_connect.py See the help for parameter definitions: $ python ble_connect.py --help usage: ble_connect.py [-h] [-i IDENTIFIER] Connect to a GoPro camera, pair, then enable notifications. optional arguments: -h, --help show this help message and exit -i IDENTIFIER, --identifier IDENTIFIER Last 4 digits of GoPro serial number, which is the last 4 digits of the default camera SSID. If not used, first discovered GoPro will be connected to The Kotlin file for this tutorial can be found on Github. To perform the tutorial, run the Android Studio project, select “Tutorial 1” from the dropdown and click on “Perform.” Perform Tutorial 1 This will start the tutorial and log to the screen as it executes. When the tutorial is complete, click “Exit Tutorial” to return to the Tutorial selection screen. Basic BLE Tutorial This tutorial will walk through the process of connecting to a GoPro via BLE. This same connect functionality will be used as a foundation for all future BLE tutorials. Here is a summary of the sequence that will be described in detail in the following sections: GoProOpen GoPro user deviceGoProOpen GoPro user deviceScanningConnectedalt[If not Previously Paired]PairedReady to CommunicateAdvertisingAdvertisingConnectPair RequestPair ResponseEnable Notifications on Characteristic 1Enable Notifications on Characteristic 2Enable Notifications on Characteristic ..Enable Notifications on Characteristic N Advertise First, we need to ensure the camera is discoverable (i.e. it is advertising). Follow the per-camera steps here. The screen should appear as such: Camera is discoverable. Scan Next, we must scan to discover the advertising GoPro Camera. python kotlin We will do this using bleak. Let’s initialize an empty dict that will store discovered devices, indexed by name: Map of devices indexed by name devices: Dict[str, BleakDevice] = {} We’re then going to scan for all devices. We are passing a scan callback to bleak in order to also find non-connectable scan responses. We are keeping any devices that have a device name. Scan callback to also catch nonconnectable scan responses def _scan_callback(device: BleakDevice, _: Any) -> None: Add to the dict if not unknown if device.name and device.name != \"Unknown\": devices[device.name] = device Now discover and add connectable advertisements for device in await BleakScanner.discover(timeout=5, detection_callback=_scan_callback): if device.name != \"Unknown\" and device.name is not None: devices[device.name] = device Now we can search through the discovered devices to see if we found a GoPro. Any GoPro device name will be structured as GoPro XXXX where XXXX is the last four digits of your camera’s serial number. If you have renamed your GoPro to something other than the default, you will need to update the below steps accordingly. First, we define a regex which is either “GoPro “ followed by any four alphanumeric characters if no identifier was passed, or the identifier if it exists. In the demo ble_connect.py, the identifier is taken from the command-line arguments. token = re.compile(identifier or r\"GoPro [A-Z0-9]{4}\") Now we build a list of matched devices by checking if each device’s name includes the token regex. matched_devices: List[BleakDevice] = [] Now look for our matching device(s) matched_devices = [device for name, device in devices.items() if token.match(name)] Due to potential RF interference and the asynchronous nature of BLE advertising / scanning, it is possible that the advertising GoPro will not be discovered by the scanning PC in one scan. Therefore, you may need to redo the scan (as ble_connect.py does) until a GoPro is found. That is, matched_device must contain at least one device. Similarly, connection establishment can fail for reasons out of our control. Therefore, the connection process is also wrapped in retry logic. Here is an example of the log from ble_connect.py of scanning for devices. Note that this includes several rescans until the devices was found. $ python ble_connect.py INFO:root:Scanning for bluetooth devices... INFO:root: Discovered: INFO:root: Discovered: TR8600 seri INFO:root:Found 0 matching devices. INFO:root: Discovered: INFO:root: Discovered: TR8600 seri INFO:root: Discovered: GoPro Cam INFO:root: Discovered: GoPro 0456 INFO:root:Found 1 matching devices. Among other devices, you should see GoPro XXXX where XXXX is the last four digits of your camera’s serial number. First let’s define a filter that will be used to find GoPro device advertisements. We do this by filtering on the GoPro Service UUID that is included in all GoPro advertisements: private val scanFilters = listOf<ScanFilter>( ScanFilter.Builder().setServiceUuid(ParcelUuid.fromString(GOPRO_UUID)).build() ) We then send this to the BLE API and collect events from the SharedFlow that it returns. We take the first event emitted from this SharedFlow and notify (via a Channel) that a GoPro advertiser has been found, store the GoPro’s BLE address, and stop the scan. ble.startScan(scanFilters).onSuccess { scanResults -> val deviceChannel: Channel<BluetoothDevice> = Channel() // Collect scan results CoroutineScope(Dispatchers.IO).launch { scanResults.collect { scanResult -> // We will take the first discovered gopro deviceChannel.send(scanResult.device) } } // Wait to receive the scan result goproAddress = deviceChannel.receive().address ble.stopScan(scanResults) } At this point, the GoPro’s BLE address is stored (as a string) in goproAddress. Here is an example log output from this process: Scanning for GoPro's Received scan result: GoPro 0992 Found GoPro: GoPro 0992 Connect Now that we have discovered at least one GoPro device to connect to, the next step is to establish a BLE connection to the camera. python kotlin We're just taking the first device if there are multiple. device = matched_devices[0] client = BleakClient(device) await client.connect(timeout=15) An example output of this is shown here where we can see that the connection has successfully been established as well as the GoPro’s BLE MAC address.: INFO:root:Establishing BLE connection to EF:5A:F6:13:E6:5A: GoPro 0456... INFO:bleak.backends.dotnet.client:Services resolved for BleakClientDotNet (EF:5A:F6:13:E6:5A) INFO:root:BLE Connected! ble.connect(goproAddress) At this point, the BLE connection is established but there is more setup to be done before we are ready to communicate. Pair The GoPro has encryption-protected characteristics which require us to pair before writing to them. Therefore now that we are connected, we need to attempt to pair. python kotlin try: await client.pair() except NotImplementedError: This is expected on Mac pass Not all OS’s allow pairing (at this time) but some require it. Rather than checking for the OS, we are just catching the exception when it fails. Rather than explicitly request pairing, we rely on the fact that Android will automatically start the pairing process if you try to read a characteristic that requires encryption. To do this, we read the Wifi AP Password characteristic. First we discover all characteristics (this will also be needed later when enabling notifications): ble.discoverCharacteristics(goproAddress) This API will discover the characteristics over-the-air but not return them here. They are stored to the ble object for later access via the servicesOf method. Then we read the relevant characteristic to trigger pairing: ble.readCharacteristic(goproAddress, GoProUUID.WIFI_AP_PASSWORD.uuid) At this point a pairing popup should occur on the Android Device. Select “Allow Pairing” to continue. Here is an example log output from this process: Discovering characteristics Discovered 9 services for F7:5B:5D:81:64:1B Service 00001801-0000-1000-8000-00805f9b34fb Characteristics: |-- Service 00001800-0000-1000-8000-00805f9b34fb Characteristics: |--00002a00-0000-1000-8000-00805f9b34fb: READABLE |--00002a01-0000-1000-8000-00805f9b34fb: READABLE |--00002a04-0000-1000-8000-00805f9b34fb: READABLE ... |------00002902-0000-1000-8000-00805f9b34fb: EMPTY |--b5f90082-aa8d-11e3-9046-0002a5d5c51b: WRITABLE |--b5f90083-aa8d-11e3-9046-0002a5d5c51b: NOTIFIABLE |------00002902-0000-1000-8000-00805f9b34fb: EMPTY |--b5f90084-aa8d-11e3-9046-0002a5d5c51b: NOTIFIABLE |------00002902-0000-1000-8000-00805f9b34fb: EMPTY Service 00001804-0000-1000-8000-00805f9b34fb Characteristics: |--00002a07-0000-1000-8000-00805f9b34fb: READABLE Pairing Read characteristic b5f90003-aa8d-11e3-9046-0002a5d5c51b : value: 66:3F:54:2D:38:35:72:2D:4E:35:63 Once paired, the camera should beep and display “Connection Successful”. This pairing process only needs to be done once. On subsequent connections, the devices will automatically re-establish encryption using stored keys. That is, they are “bonded.” Enable Notifications As specified in the Open GoPRo BLE Spec, we must enable notifications for a given characteristic to receive responses from it. To enable notifications, we loop over each characteristic in each service and enable the characteristic for notification if it has notify properties: python kotlin It is necessary to define a notification handler to pass to the bleak start_notify method. Since we only care about connecting to the device in this tutorial (and not actually receiving data), we are just passing an empty function. A future tutorial will demonstrate how to use this meaningfully. for service in client.services: for char in service.characteristics: if \"notify\" in char.properties: await client.start_notify(char, notification_handler) In the following example output, we can see that notifications are enabled for each characteristic that is notifiable. INFO:root:Enabling notifications... INFO:root:Enabling notification on char 00002a19-0000-1000-8000-00805f9b34fb INFO:root:Enabling notification on char b5f90073-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90075-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90077-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90079-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90092-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90081-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90083-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90084-aa8d-11e3-9046-0002a5d5c51b INFO:root:Done enabling notifications INFO:root:BLE Connection is ready for communication. ble.servicesOf(goproAddress).onSuccess { services -> services.forEach { service -> service.characteristics.forEach { char -> if (char.isNotifiable()) { ble.enableNotification(goproAddress, char.uuid) } } } } Here is an example log output from this process: Enabling notifications Enabling notifications for 00002a19-0000-1000-8000-00805f9b34fb Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90073-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90075-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90077-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90079-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90092-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90081-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90083-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90084-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Bluetooth is ready for communication! The characteristics that correspond to each UUID listed in the log can be found in the Open GoPro API. These will be used in a future tutorial to send data. Once the notifications are enabled, the GoPro BLE initialization is complete and it is ready to communicate via BLE. Quiz time! 📚 ✏️ How often is it necessary to pair? A: Pairing must occur every time to ensure safe BLE communication. B: We never need to pair as the GoPro does not require it to communicate. C: Pairing only needs to occur once as the keys will be automatically re-used for future connections. Submit Answer Correct!! 😃 Incorrect!! 😭 The correct answer is C. Pairing is only needed once (assuming neither side deletes the keys). If the GoPro deletes the keys (via Connections->Reset Connections), the devices will need to re-pair. Troubleshooting Device not connecting If the connection is not starting, it is likely because the camera is not advertising. This can be due to either: The camera is not in pairing mode. Ensure that this is achieved as done in the advertise section. The devices never disconnected from the previous session so are thus already connected. If this is the case, perform the “Complete System Reset” shown below. Complete System Reset BLE is a fickle beast. If at any point it is impossible to discover or connect to the camera, perform the following. Reset the camera by choosing Connections –> Reset Connections Use your OS’s bluetooth settings GUI to remove / unpair the Gopro Restart the procedure detailed above Logs python kotlin The demo program has enabled bleak logs and is also using the default python logging module to write its own logs. To enable more bleak logs, follow bleak’s troubleshooting section. The demo program is using Timber. It is piping all log messages to the UI but they are also available in the logcat window and can be filtered using: package:mine tag:GP_. Good Job! Congratulations 🤙 You can now successfully connect to the GoPro via BLE and prepare it to receive / send data. To see how to send commands, you should advance to the next tutorial.", + "excerpt": "This tutorial will provide a walk-through to connect to the GoPro camera via Bluetooth Low Energy (BLE). Requirements Hardware A GoPro camera that is supported by Open GoPro python kotlin One of the following systems: Windows 10, version 16299 (Fall Creators Update) or greater Linux distribution with BlueZ >= 5.43 OS X/macOS support via Core Bluetooth API, from at least OS X version 10.11 An Android Device supporting SDK >= 33 Software python kotlin Python >= 3.9 and < 3.12 must be installed. See this Python installation guide. Android Studio >= 2022.1.1 (Electric Eel) Overview / Assumptions python kotlin This tutorial will use bleak to control the OS’s Bluetooth Low Energy (BLE). The Bleak BLE controller does not currently support autonomous pairing for the BlueZ backend. So if you are using BlueZ (i.e. Ubuntu, RaspberryPi, etc.), you need to first pair the camera from the command line. One way to do this is to use bluetoothctl. The bleak module is based on asyncio which means that its awaitable functions need to be called from an async coroutine. In order to do this, all of the code below should be running in an async function. We accomplish this in the tutorial scripts by making main async as such: import asyncio async def main() -> None: Put our code here if __name__ == \"__main__\": asyncio.run(main()) These are stripped down Python tutorials that are only meant to show the basics. For a complete Python SDK that uses bleak as the backend as well as a cross-platform WiFi backend to easily write Python apps that control the GoPro, see the Open GoPro Python SDK This tutorial will provide a set of Kotlin tutorials to demonstrate Open GoPro Functionality. The tutorials are provided as a single Android Studio project targeted to run on an Android device. The tutorials are only concerned with application-level demonstrations of the Open GoPro API and therefore do not prioritize the following: UI: The tutorial project only contains a minimal UI to select, implement, and view logs for each tutorial Android architecture / best practices: the project architecture is designed to encapsulate Kotlin functionality to easily display per-tutorial functionality Android-specific requirements: permission handling, adapter enabling, etc are implemented in the project but not documented in the tutorials BLE / Wifi (HTTP) functionality: A simple BLE API is included in the project and will be touched upon in the tutorials. However, the focus of the tutorials is not on how the BLE API is implemented as a real project would likely use a third-party library for this such as Kable See the Punchthrough tutorials for Android BLE-Specific tutorials These tutorials assume familiarity and a base level of competence with: Android Studio Bluetooth Low Energy JSON HTTP Setup python kotlin This set of tutorials is accompanied by a Python package consisting of scripts separated by tutorial module. These can be found on Github. Once the Github repo has been cloned or downloaded to your local machine, the package can be installed as follows: Enter the python tutorials directory at $INSTALL/demos/python/tutorial/ where $INSTALL is the top level of the Open GoPro repo where it exists on your local machine Use pip to install the package (in editable mode in case you want to test out some changes): pip install -e . While it is out of the scope of this tutorial to describe, it is recommended to install the package in to a virtual environment in order to isolate system dependencies. You can test that installation was successful by viewing the installed package’s information: $ pip show open-gopro-python-tutorials Name: open-gopro-python-tutorials Version: 0.0.3 Summary: Open GoPro Python Tutorials Home-page: https://github.com/gopro/OpenGoPro Author: Tim Camise Author-email: gopro.com License: MIT Location: c:\\users\\tim\\gopro\\opengopro\\demos\\python\\tutorial Requires: bleak, requests Required-by: This set of tutorials is accompanied by an Android Studio project consisting of, among other project infrastructure, Kotlin files separated by tutorial module. The project can be found on Github. Once the Github repo has been cloned or downloaded to your local machine, open the project in Android studio. At this point you should be able to build and load the project to your Android device. The project will not work on an emulated device since BLE can not be emulated. Just Show me the Demo!! python kotlin Each of the scripts for this tutorial can be found in the Tutorial 1 directory. Python >= 3.9 and < 3.12 must be used as specified in the requirements You can test connecting to your camera through BLE using the following script: python ble_connect.py See the help for parameter definitions: $ python ble_connect.py --help usage: ble_connect.py [-h] [-i IDENTIFIER] Connect to a GoPro camera, pair, then enable notifications. optional arguments: -h, --help show this help message and exit -i IDENTIFIER, --identifier IDENTIFIER Last 4 digits of GoPro serial number, which is the last 4 digits of the default camera SSID. If not used, first discovered GoPro will be connected to The Kotlin file for this tutorial can be found on Github. To perform the tutorial, run the Android Studio project, select “Tutorial 1” from the dropdown and click on “Perform.” Perform Tutorial 1 This will start the tutorial and log to the screen as it executes. When the tutorial is complete, click “Exit Tutorial” to return to the Tutorial selection screen. Basic BLE Tutorial This tutorial will walk through the process of connecting to a GoPro via BLE. This same connect functionality will be used as a foundation for all future BLE tutorials. Here is a summary of the sequence that will be described in detail in the following sections: GoProOpen GoPro user deviceGoProOpen GoPro user deviceScanningConnectedalt[If not Previously Paired]PairedReady to CommunicateAdvertisingAdvertisingConnectPair RequestPair ResponseEnable Notifications on Characteristic 1Enable Notifications on Characteristic 2Enable Notifications on Characteristic ..Enable Notifications on Characteristic N Advertise First, we need to ensure the camera is discoverable (i.e. it is advertising). Follow the per-camera steps here. The screen should appear as such: Camera is discoverable. Scan Next, we must scan to discover the advertising GoPro Camera. python kotlin We will do this using bleak. Let’s initialize an empty dict that will store discovered devices, indexed by name: Map of devices indexed by name devices: Dict[str, BleakDevice] = {} We’re then going to scan for all devices. We are passing a scan callback to bleak in order to also find non-connectable scan responses. We are keeping any devices that have a device name. Scan callback to also catch nonconnectable scan responses def _scan_callback(device: BleakDevice, _: Any) -> None: Add to the dict if not unknown if device.name and device.name != \"Unknown\": devices[device.name] = device Now discover and add connectable advertisements for device in await BleakScanner.discover(timeout=5, detection_callback=_scan_callback): if device.name != \"Unknown\" and device.name is not None: devices[device.name] = device Now we can search through the discovered devices to see if we found a GoPro. Any GoPro device name will be structured as GoPro XXXX where XXXX is the last four digits of your camera’s serial number. If you have renamed your GoPro to something other than the default, you will need to update the below steps accordingly. First, we define a regex which is either “GoPro “ followed by any four alphanumeric characters if no identifier was passed, or the identifier if it exists. In the demo ble_connect.py, the identifier is taken from the command-line arguments. token = re.compile(identifier or r\"GoPro [A-Z0-9]{4}\") Now we build a list of matched devices by checking if each device’s name includes the token regex. matched_devices: List[BleakDevice] = [] Now look for our matching device(s) matched_devices = [device for name, device in devices.items() if token.match(name)] Due to potential RF interference and the asynchronous nature of BLE advertising / scanning, it is possible that the advertising GoPro will not be discovered by the scanning PC in one scan. Therefore, you may need to redo the scan (as ble_connect.py does) until a GoPro is found. That is, matched_device must contain at least one device. Similarly, connection establishment can fail for reasons out of our control. Therefore, the connection process is also wrapped in retry logic. Here is an example of the log from ble_connect.py of scanning for devices. Note that this includes several rescans until the devices was found. $ python ble_connect.py INFO:root:Scanning for bluetooth devices... INFO:root: Discovered: INFO:root: Discovered: TR8600 seri INFO:root:Found 0 matching devices. INFO:root: Discovered: INFO:root: Discovered: TR8600 seri INFO:root: Discovered: GoPro Cam INFO:root: Discovered: GoPro 0456 INFO:root:Found 1 matching devices. Among other devices, you should see GoPro XXXX where XXXX is the last four digits of your camera’s serial number. First let’s define a filter that will be used to find GoPro device advertisements. We do this by filtering on the GoPro Service UUID that is included in all GoPro advertisements: private val scanFilters = listOf<ScanFilter>( ScanFilter.Builder().setServiceUuid(ParcelUuid.fromString(GOPRO_UUID)).build() ) We then send this to the BLE API and collect events from the SharedFlow that it returns. We take the first event emitted from this SharedFlow and notify (via a Channel) that a GoPro advertiser has been found, store the GoPro’s BLE address, and stop the scan. ble.startScan(scanFilters).onSuccess { scanResults -> val deviceChannel: Channel<BluetoothDevice> = Channel() // Collect scan results CoroutineScope(Dispatchers.IO).launch { scanResults.collect { scanResult -> // We will take the first discovered gopro deviceChannel.send(scanResult.device) } } // Wait to receive the scan result goproAddress = deviceChannel.receive().address ble.stopScan(scanResults) } At this point, the GoPro’s BLE address is stored (as a string) in goproAddress. Here is an example log output from this process: Scanning for GoPro's Received scan result: GoPro 0992 Found GoPro: GoPro 0992 Connect Now that we have discovered at least one GoPro device to connect to, the next step is to establish a BLE connection to the camera. python kotlin We're just taking the first device if there are multiple. device = matched_devices[0] client = BleakClient(device) await client.connect(timeout=15) An example output of this is shown here where we can see that the connection has successfully been established as well as the GoPro’s BLE MAC address.: INFO:root:Establishing BLE connection to EF:5A:F6:13:E6:5A: GoPro 0456... INFO:bleak.backends.dotnet.client:Services resolved for BleakClientDotNet (EF:5A:F6:13:E6:5A) INFO:root:BLE Connected! ble.connect(goproAddress) At this point, the BLE connection is established but there is more setup to be done before we are ready to communicate. Pair The GoPro has encryption-protected characteristics which require us to pair before writing to them. Therefore now that we are connected, we need to attempt to pair. python kotlin try: await client.pair() except NotImplementedError: This is expected on Mac pass Not all OS’s allow pairing (at this time) but some require it. Rather than checking for the OS, we are just catching the exception when it fails. Rather than explicitly request pairing, we rely on the fact that Android will automatically start the pairing process if you try to read a characteristic that requires encryption. To do this, we read the Wifi AP Password characteristic. First we discover all characteristics (this will also be needed later when enabling notifications): ble.discoverCharacteristics(goproAddress) This API will discover the characteristics over-the-air but not return them here. They are stored to the ble object for later access via the servicesOf method. Then we read the relevant characteristic to trigger pairing: ble.readCharacteristic(goproAddress, GoProUUID.WIFI_AP_PASSWORD.uuid) At this point a pairing popup should occur on the Android Device. Select “Allow Pairing” to continue. Here is an example log output from this process: Discovering characteristics Discovered 9 services for F7:5B:5D:81:64:1B Service 00001801-0000-1000-8000-00805f9b34fb Characteristics: |-- Service 00001800-0000-1000-8000-00805f9b34fb Characteristics: |--00002a00-0000-1000-8000-00805f9b34fb: READABLE |--00002a01-0000-1000-8000-00805f9b34fb: READABLE |--00002a04-0000-1000-8000-00805f9b34fb: READABLE ... |------00002902-0000-1000-8000-00805f9b34fb: EMPTY |--b5f90082-aa8d-11e3-9046-0002a5d5c51b: WRITABLE |--b5f90083-aa8d-11e3-9046-0002a5d5c51b: NOTIFIABLE |------00002902-0000-1000-8000-00805f9b34fb: EMPTY |--b5f90084-aa8d-11e3-9046-0002a5d5c51b: NOTIFIABLE |------00002902-0000-1000-8000-00805f9b34fb: EMPTY Service 00001804-0000-1000-8000-00805f9b34fb Characteristics: |--00002a07-0000-1000-8000-00805f9b34fb: READABLE Pairing Read characteristic b5f90003-aa8d-11e3-9046-0002a5d5c51b : value: 66:3F:54:2D:38:35:72:2D:4E:35:63 Once paired, the camera should beep and display “Connection Successful”. This pairing process only needs to be done once. On subsequent connections, the devices will automatically re-establish encryption using stored keys. That is, they are “bonded.” Enable Notifications As specified in the Open GoPRo BLE Spec, we must enable notifications for a given characteristic to receive responses from it. To enable notifications, we loop over each characteristic in each service and enable the characteristic for notification if it has notify properties: python kotlin It is necessary to define a notification handler to pass to the bleak start_notify method. Since we only care about connecting to the device in this tutorial (and not actually receiving data), we are just passing an empty function. A future tutorial will demonstrate how to use this meaningfully. for service in client.services: for char in service.characteristics: if \"notify\" in char.properties: await client.start_notify(char, notification_handler) In the following example output, we can see that notifications are enabled for each characteristic that is notifiable. INFO:root:Enabling notifications... INFO:root:Enabling notification on char 00002a19-0000-1000-8000-00805f9b34fb INFO:root:Enabling notification on char b5f90073-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90075-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90077-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90079-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90092-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90081-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90083-aa8d-11e3-9046-0002a5d5c51b INFO:root:Enabling notification on char b5f90084-aa8d-11e3-9046-0002a5d5c51b INFO:root:Done enabling notifications INFO:root:BLE Connection is ready for communication. ble.servicesOf(goproAddress).onSuccess { services -> services.forEach { service -> service.characteristics.forEach { char -> if (char.isNotifiable()) { ble.enableNotification(goproAddress, char.uuid) } } } } Here is an example log output from this process: Enabling notifications Enabling notifications for 00002a19-0000-1000-8000-00805f9b34fb Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90073-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90075-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90077-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90079-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90092-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90081-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90083-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Enabling notifications for b5f90084-aa8d-11e3-9046-0002a5d5c51b Wrote to descriptor 00002902-0000-1000-8000-00805f9b34fb Bluetooth is ready for communication! The characteristics that correspond to each UUID listed in the log can be found in the Open GoPro API. These will be used in a future tutorial to send data. Once the notifications are enabled, the GoPro BLE initialization is complete and it is ready to communicate via BLE. Quiz time! 📚 ✏️ How often is it necessary to pair? A: Pairing must occur every time to ensure safe BLE communication. B: We never need to pair as the GoPro does not require it to communicate. C: Pairing only needs to occur once as the keys will be automatically re-used for future connections. Submit Answer Correct!! 😃 Incorrect!! 😭 The correct answer is C. Pairing is only needed once (assuming neither side deletes the keys). If the GoPro deletes the keys (via Connections->Reset Connections), the devices will need to re-pair. Troubleshooting Device not connecting If the connection is not starting, it is likely because the camera is not advertising. This can be due to either: The camera is not in pairing mode. Ensure that this is achieved as done in the advertise section. The devices never disconnected from the previous session so are thus already connected. If this is the case, perform the “Complete System Reset” shown below. Complete System Reset BLE is a fickle beast. If at any point it is impossible to discover or connect to the camera, perform the following. Reset the camera by choosing Connections –> Reset Connections Use your OS’s bluetooth settings GUI to remove / unpair the Gopro Restart the procedure detailed above Logs python kotlin The demo program has enabled bleak logs and is also using the default python logging module to write its own logs. To enable more bleak logs, follow bleak’s troubleshooting section. The demo program is using Timber. It is piping all log messages to the UI but they are also available in the logcat window and can be filtered using: package:mine tag:GP_. Good Job! Congratulations 🤙 You can now successfully connect to the GoPro via BLE and prepare it to receive / send data. To see how to send commands, you should advance to the next tutorial.", "categories": [], "tags": [], "url": "/OpenGoPro/tutorials/connect-ble#" diff --git a/ble/.buildinfo b/ble/.buildinfo deleted file mode 100644 index 8cf4934f..00000000 --- a/ble/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: ca55401b1ba039d0f22292726a740df9 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/ble/.doctrees/environment.pickle b/ble/.doctrees/environment.pickle deleted file mode 100644 index 0c367093..00000000 Binary files a/ble/.doctrees/environment.pickle and /dev/null differ diff --git a/ble/.doctrees/features/access_points.doctree b/ble/.doctrees/features/access_points.doctree deleted file mode 100644 index 40621a3c..00000000 Binary files a/ble/.doctrees/features/access_points.doctree and /dev/null differ diff --git a/ble/.doctrees/features/cohn.doctree b/ble/.doctrees/features/cohn.doctree deleted file mode 100644 index bc11ef70..00000000 Binary files a/ble/.doctrees/features/cohn.doctree and /dev/null differ diff --git a/ble/.doctrees/features/control.doctree b/ble/.doctrees/features/control.doctree deleted file mode 100644 index 9f413117..00000000 Binary files a/ble/.doctrees/features/control.doctree and /dev/null differ diff --git a/ble/.doctrees/features/hilights.doctree b/ble/.doctrees/features/hilights.doctree deleted file mode 100644 index 13d4fcc6..00000000 Binary files a/ble/.doctrees/features/hilights.doctree and /dev/null differ diff --git a/ble/.doctrees/features/live_streaming.doctree b/ble/.doctrees/features/live_streaming.doctree deleted file mode 100644 index 5ca1f8ee..00000000 Binary files a/ble/.doctrees/features/live_streaming.doctree and /dev/null differ diff --git a/ble/.doctrees/features/presets.doctree b/ble/.doctrees/features/presets.doctree deleted file mode 100644 index 8274f723..00000000 Binary files a/ble/.doctrees/features/presets.doctree and /dev/null differ diff --git a/ble/.doctrees/features/query.doctree b/ble/.doctrees/features/query.doctree deleted file mode 100644 index 0627169a..00000000 Binary files a/ble/.doctrees/features/query.doctree and /dev/null differ diff --git a/ble/.doctrees/features/settings.doctree b/ble/.doctrees/features/settings.doctree deleted file mode 100644 index 546efdbc..00000000 Binary files a/ble/.doctrees/features/settings.doctree and /dev/null differ diff --git a/ble/.doctrees/features/statuses.doctree b/ble/.doctrees/features/statuses.doctree deleted file mode 100644 index 7108a1d9..00000000 Binary files a/ble/.doctrees/features/statuses.doctree and /dev/null differ diff --git a/ble/.doctrees/index.doctree b/ble/.doctrees/index.doctree deleted file mode 100644 index 9c7a68f2..00000000 Binary files a/ble/.doctrees/index.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol.doctree b/ble/.doctrees/protocol.doctree deleted file mode 100644 index e74c1d74..00000000 Binary files a/ble/.doctrees/protocol.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol/ble_setup.doctree b/ble/.doctrees/protocol/ble_setup.doctree deleted file mode 100644 index 46d013fd..00000000 Binary files a/ble/.doctrees/protocol/ble_setup.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol/data_protocol.doctree b/ble/.doctrees/protocol/data_protocol.doctree deleted file mode 100644 index aa4c82fe..00000000 Binary files a/ble/.doctrees/protocol/data_protocol.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol/id_tables.doctree b/ble/.doctrees/protocol/id_tables.doctree deleted file mode 100644 index a1ff6f18..00000000 Binary files a/ble/.doctrees/protocol/id_tables.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol/protobuf.doctree b/ble/.doctrees/protocol/protobuf.doctree deleted file mode 100644 index eb42c846..00000000 Binary files a/ble/.doctrees/protocol/protobuf.doctree and /dev/null differ diff --git a/ble/.doctrees/protocol/state_management.doctree b/ble/.doctrees/protocol/state_management.doctree deleted file mode 100644 index 2d3bf0ac..00000000 Binary files a/ble/.doctrees/protocol/state_management.doctree and /dev/null differ diff --git a/ble/_sources/protocol/protobuf.rst.txt b/ble/_sources/protocol/protobuf.rst.txt index 43db68f9..dad5b234 100644 --- a/ble/_sources/protocol/protobuf.rst.txt +++ b/ble/_sources/protocol/protobuf.rst.txt @@ -479,266 +479,6 @@ EnumPresetGroup * - name - value - summary - * - PRESET_GROUP_ID_VIDEO_SINGLE_LENS - - 0 - - - Single video - - * - PRESET_GROUP_ID_PHOTO_SINGLE_LENS - - 1 - - - Single photo - - * - PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENS - - 2 - - - Single timelapse - - * - PRESET_GROUP_ID_VIDEO_HEMI_LENS - - 3 - - - Spherical video hemi lens - - * - PRESET_GROUP_ID_PHOTO_HEMI_LENS - - 4 - - - Spherical photo hemi lens - - * - PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS - - 5 - - - Spherical timelapse hemi lens - - * - PRESET_GROUP_ID_SPECIAL_INTERNAL - - 6 - - - Special - - * - PRESET_GROUP_ID_SPECIAL_HEMI - - 7 - - - Special hemi lens - - * - PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENS - - 8 - - - Video battery endurance - - * - PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENS - - 9 - - - Video longest battery - - * - PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENS - - 10 - - - Easy single video - - * - PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENS - - 11 - - - Easy video battery endurance - - * - PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENS - - 12 - - - Easy single photo - - * - PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENS - - 13 - - - Easy single timelapse - - * - PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENS - - 14 - - - Easy video longest battery - - * - PRESET_GROUP_ID_VIDEO_HEMI_LENS_2 - - 15 - - - Hemi Lens 2 video - - * - PRESET_GROUP_ID_PHOTO_HEMI_LENS_2 - - 16 - - - Hemi Lens 2 photo - - * - PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2 - - 17 - - - Hemi Lens 2 timelapse - - * - PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2 - - 18 - - - Hemi Lens 2 special - - * - PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS - - 19 - - - Hemi Lens easy video - - * - PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS - - 20 - - - Hemi Lens easy photo - - * - PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS - - 21 - - - Hemi Lens easy timelapse - - * - PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2 - - 22 - - - Hemi Lens 2 easy video - - * - PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2 - - 23 - - - Hemi Lens 2 easy photo - - * - PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2 - - 24 - - - Hemi Lens 2 easy timelapse - - * - PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARD - - 25 - - - Single video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDR - - 26 - - - Single video hdr profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOG - - 27 - - - Single video log profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS - - 28 - - - Spherical video mode - - * - PRESET_GROUP_ID_PHOTO_SPHERICAL_LENS - - 29 - - - Spherical photo mode - - * - PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENS - - 30 - - - Spherical timelapse mode - - * - PRESET_GROUP_ID_SPECIAL_SPHERICAL - - 31 - - - Special spherical lens - - * - PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARD - - 32 - - - Spherical video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOG - - 33 - - - Spherical video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARD - - 34 - - - Hemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOG - - 35 - - - Hemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_MACRO_LENS - - 36 - - - Video macro lens - - * - PRESET_GROUP_ID_PHOTO_MACRO_LENS - - 37 - - - Photo macro lens - - * - PRESET_GROUP_ID_TIMELAPSE_MACRO_LENS - - 38 - - - Timelapse macro lens - - * - PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENS - - 39 - - - Easy Video macro lens - - * - PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENS - - 40 - - - Easy Photo macro lens - - * - PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENS - - 41 - - - Easy Timelapse macro lens - - * - PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARD - - 42 - - - Macro lens video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOG - - 43 - - - Macro lens video log profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS - - 44 - - - Video anamorphic lens - - * - PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENS - - 45 - - - Photo anamorphic lens - - * - PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENS - - 46 - - - Timelapse anamorphic lens - - * - PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENS - - 47 - - - Easy Video anamorphic lens - - * - PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENS - - 48 - - - Easy Photo anamorphic lens - - * - PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENS - - 49 - - - Easy Timelapse anamorphic lens - - * - PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARD - - 50 - - - Anamorphic lens video standard profile - for internal preset switch only - - * - PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOG - - 51 - - - Anamorphic lens video log profile - for internal preset switch only - * - PRESET_GROUP_ID_VIDEO - 1000 @@ -898,11 +638,6 @@ EnumPresetIcon - - * - PRESET_ICON_360_VIDEO - - 12 - - - - * - PRESET_ICON_PHOTO_2 - 13 @@ -1053,21 +788,6 @@ EnumPresetIcon - - * - PRESET_ICON_MAX_VIDEO - - 55 - - - - - * - PRESET_ICON_MAX_PHOTO - - 56 - - - - - * - PRESET_ICON_MAX_TIMEWARP - - 57 - - - - * - PRESET_ICON_BASIC - 58 @@ -1163,106 +883,6 @@ EnumPresetIcon - - * - PRESET_ICON_EASY_MAX_VIDEO - - 80 - - - - - * - PRESET_ICON_EASY_MAX_PHOTO - - 81 - - - - - * - PRESET_ICON_EASY_MAX_TIMEWARP - - 82 - - - - - * - PRESET_ICON_EASY_MAX_STAR_TRAIL - - 83 - - - - - * - PRESET_ICON_EASY_MAX_LIGHT_PAINTING - - 84 - - - - - * - PRESET_ICON_EASY_MAX_LIGHT_TRAIL - - 85 - - - - - * - PRESET_ICON_MAX_STAR_TRAIL - - 89 - - - - - * - PRESET_ICON_MAX_LIGHT_PAINTING - - 90 - - - - - * - PRESET_ICON_MAX_LIGHT_TRAIL - - 91 - - - - - * - PRESET_ICON_360_BURST - - 92 - - - - - * - PRESET_ICON_360_PHOTO_NIGHT - - 93 - - - - - * - PRESET_ICON_360_NIGHTLAPSE - - 94 - - - - - * - PRESET_ICON_360_TIMELAPSE_PHOTO - - 95 - - - - - * - PRESET_ICON_360_NIGHTLAPSE_PHOTO - - 96 - - - - - * - PRESET_ICON_360_PHOTO - - 97 - - - - - * - PRESET_ICON_360_TIMELAPSE - - 98 - - - - - * - PRESET_ICON_360_TIMEWARP - - 99 - - - - - * - PRESET_ICON_EASY_STANDARD_PROFILE - - 100 - - - - - * - PRESET_ICON_EASY_HDR_PROFILE - - 101 - - - - - * - PRESET_ICON_BURST_SLOMO - - 102 - - - - * - PRESET_ICON_TIMELAPSE_PHOTO - 1000 @@ -1273,11 +893,6 @@ EnumPresetIcon - - * - PRESET_ICON_MAX - - 1002 - - - - @@ -1360,11 +975,6 @@ EnumPresetTitle - - * - PRESET_TITLE_360_VIDEO - - 12 - - - - * - PRESET_TITLE_PHOTO_2 - 13 @@ -1375,21 +985,11 @@ EnumPresetTitle - - * - PRESET_TITLE_360_PHOTO - - 15 - - - - * - PRESET_TITLE_TIME_WARP_2 - 16 - - * - PRESET_TITLE_360_TIME_WARP - - 17 - - - - * - PRESET_TITLE_CUSTOM - 18 @@ -1515,81 +1115,6 @@ EnumPresetTitle - - * - PRESET_TITLE_CUSTOM_CINEMATIC - - 43 - - - - - * - PRESET_TITLE_DIVE - - 44 - - - - - * - PRESET_TITLE_FPV - - 45 - - - - - * - PRESET_TITLE_HDR - - 46 - - - - - * - PRESET_TITLE_LANDSCAPE - - 47 - - - - - * - PRESET_TITLE_LOG - - 48 - - - - - * - PRESET_TITLE_CUSTOM_SLOMO - - 49 - - - - - * - PRESET_TITLE_TRIPOD - - 50 - - - - - * - PRESET_TITLE_360_TIMELAPSE - - 51 - - - - - * - PRESET_TITLE_360_NIGHT_LAPSE - - 52 - - - - - * - PRESET_TITLE_360_NIGHT_PHOTO - - 53 - - - - - * - PRESET_TITLE_PANO_TIME_LAPSE - - 54 - - - - - * - PRESET_TITLE_MAX_VIDEO - - 55 - - - - - * - PRESET_TITLE_MAX_PHOTO - - 56 - - - - - * - PRESET_TITLE_MAX_TIMEWARP - - 57 - - - - * - PRESET_TITLE_BASIC - 58 @@ -1700,16 +1225,6 @@ EnumPresetTitle - - * - PRESET_TITLE_MAX_LENS_VIDEO - - 80 - - - - - * - PRESET_TITLE_MAX_LENS_TIMEWARP - - 81 - - - - * - PRESET_TITLE_STANDARD_QUALITY_VIDEO - 82 @@ -1720,51 +1235,6 @@ EnumPresetTitle - - * - PRESET_TITLE_EASY_MAX_VIDEO - - 84 - - - - - * - PRESET_TITLE_EASY_MAX_PHOTO - - 85 - - - - - * - PRESET_TITLE_EASY_MAX_TIMEWARP - - 86 - - - - - * - PRESET_TITLE_EASY_MAX_STAR_TRAIL - - 87 - - - - - * - PRESET_TITLE_EASY_MAX_LIGHT_PAINTING - - 88 - - - - - * - PRESET_TITLE_EASY_MAX_LIGHT_TRAIL - - 89 - - - - - * - PRESET_TITLE_MAX_STAR_TRAIL - - 90 - - - - - * - PRESET_TITLE_MAX_LIGHT_PAINTING - - 91 - - - - - * - PRESET_TITLE_MAX_LIGHT_TRAIL - - 92 - - - - * - PRESET_TITLE_HIGHEST_QUALITY_VIDEO - 93 @@ -1775,76 +1245,6 @@ EnumPresetTitle - - * - PRESET_TITLE_360_DEG_BURST - - 95 - - - - FW_PRESET_TITLE_360_BURST - - * - PRESET_TITLE_360_DEG_NIGHT_PHOTO - - 96 - - - - FW_PRESET_TITLE_360_NIGHT - - * - PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO - - 97 - - - - FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO - - * - PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO - - 98 - - - - FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO - - * - PRESET_TITLE_EASY_STANDARD_PROFILE - - 99 - - - - - * - PRESET_TITLE_EASY_HDR_PROFILE - - 100 - - - - - * - PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO - - 101 - - - - FW_PRESET_TITLE_MAX_2_TIME_LAPSE - - * - PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO - - 102 - - - - FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE - - * - PRESET_TITLE_360_DEG_PHOTO - - 103 - - - - FW_PRESET_TITLE_MAX_2_PHOTO - - * - PRESET_TITLE_360_DEG_TIME_WARP - - 104 - - - - FW_PRESET_TITLE_MAX_2_TIME_WARP - - * - PRESET_TITLE_360_DEG_VIDEO - - 105 - - - - FW_PRESET_TITLE_MAX_2_VIDEO - - * - PRESET_TITLE_BURST_SLOMO - - 106 - - - - - * - PRESET_TITLE_VLOG - - 107 - - - - - * - PRESET_TITLE_MAX - - 108 - - - - @@ -2352,12 +1752,6 @@ EnumWindowSize - - - - - - @@ -2701,20 +2095,6 @@ Sent either: - List of currently available Preset Groups - * - custom_icon_ids - - - :ref:`proto-range` - - 2 - - - A list of ranges of icon ID's available for custom presets - - * - custom_title_ids - - - :ref:`proto-range` - - 3 - - - A list of ranges of title ID's available for custom presets - @@ -2907,44 +2287,6 @@ Setting representation that comprises a :ref:`proto-preset` -.. _proto-range: - -Range ------ - - -.. seealso:: - - `Source Protobuf File `__ - - -A model used to represent a contiguous range of integer values. - -.. list-table:: - :widths: 10 10 15 40 - :header-rows: 1 - - * - field - - typespec - - value - - summary - * - start - - int32 - - 1 - - - Start index of the range. - - * - length - - int32 - - 2 - - - Length of the range. - - - - - - .. _proto-requestcohncert: RequestCOHNCert @@ -3205,25 +2547,6 @@ Returns a :ref:`proto-responsegeneric` with the status of the preset update requ -.. _proto-requestgetallpresetstatus: - -RequestGetAllPresetStatus -------------------------- - - -.. seealso:: - - `Source Protobuf File `__ - - -Get the superset of all possible presets, regardless of the current camera state - -Response: :ref:`proto-notifypresetstatus` sent immediately - - - - - .. _proto-requestgetapentries: RequestGetApEntries diff --git a/ble/features/access_points.html b/ble/features/access_points.html index 9e25773d..608af6a6 100644 --- a/ble/features/access_points.html +++ b/ble/features/access_points.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/cohn.html b/ble/features/cohn.html index 1e876ec6..27a04b12 100644 --- a/ble/features/cohn.html +++ b/ble/features/cohn.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/control.html b/ble/features/control.html index c687d9c1..8ac43fe6 100644 --- a/ble/features/control.html +++ b/ble/features/control.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/hilights.html b/ble/features/hilights.html index a95c85b1..6526712c 100644 --- a/ble/features/hilights.html +++ b/ble/features/hilights.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/live_streaming.html b/ble/features/live_streaming.html index 09591fb4..42b85af7 100644 --- a/ble/features/live_streaming.html +++ b/ble/features/live_streaming.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/presets.html b/ble/features/presets.html index 045070cb..64c72d9e 100644 --- a/ble/features/presets.html +++ b/ble/features/presets.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/query.html b/ble/features/query.html index 230bdaa9..1d50e109 100644 --- a/ble/features/query.html +++ b/ble/features/query.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/settings.html b/ble/features/settings.html index f0f78f28..713c26c7 100644 --- a/ble/features/settings.html +++ b/ble/features/settings.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/features/statuses.html b/ble/features/statuses.html index 182cb65c..3595abc4 100644 --- a/ble/features/statuses.html +++ b/ble/features/statuses.html @@ -115,14 +115,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/genindex.html b/ble/genindex.html index efc3732e..dec00517 100644 --- a/ble/genindex.html +++ b/ble/genindex.html @@ -113,14 +113,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/index.html b/ble/index.html index 572cf7bc..0601a38a 100644 --- a/ble/index.html +++ b/ble/index.html @@ -115,14 +115,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/objects.inv b/ble/objects.inv index e89c7f5e..a11ecca8 100644 Binary files a/ble/objects.inv and b/ble/objects.inv differ diff --git a/ble/operation-operation_index.html b/ble/operation-operation_index.html index 06fa3531..002fa0f2 100644 --- a/ble/operation-operation_index.html +++ b/ble/operation-operation_index.html @@ -120,14 +120,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • @@ -734,11 +732,6 @@

    operation index

    RequestGetPresetStatus (protocol/protobuf) Proto - - - - RequestGetAllPresetStatus (protocol/protobuf) - Proto @@ -834,163 +827,158 @@

    operation index

    ResponseGeneric (protocol/protobuf) Proto - - - - Range (protocol/protobuf) - Proto   s - Setting 179 (Trail Length) (features/settings) + Setting 128 (Media Format) (features/settings) Setting - Setting 59 (Auto Power Down) (features/settings) + Setting 176 (Easy Mode Speed) (features/settings) Setting - Setting 193 (Framing) (features/settings) + Setting 183 (Bit Depth) (features/settings) Setting - Setting 189 (Max Lens Mod) (features/settings) + Setting 191 (Photo Mode) (features/settings) Setting - Setting 184 (Profiles) (features/settings) + Setting 173 (Video Performance Mode) (features/settings) Setting - Setting 187 (Lapse Mode) (features/settings) + Setting 172 (Duration) (features/settings) Setting - Setting 191 (Photo Mode) (features/settings) + Setting 187 (Lapse Mode) (features/settings) Setting - Setting 175 (Controls) (features/settings) + Setting 59 (Auto Power Down) (features/settings) Setting - Setting 178 (Wireless Band) (features/settings) + Setting 167 (HindSight) (features/settings) Setting - Setting 134 (Anti-Flicker) (features/settings) + Setting 162 (Max Lens) (features/settings) Setting - Setting 177 (Enable Night Photo) (features/settings) + Setting 108 (Aspect Ratio) (features/settings) Setting - Setting 2 (Resolution) (features/settings) + Setting 3 (Frames Per Second) (features/settings) Setting - Setting 173 (Video Performance Mode) (features/settings) + Setting 83 (GPS) (features/settings) Setting - Setting 183 (Bit Depth) (features/settings) + Setting 177 (Enable Night Photo) (features/settings) Setting - Setting 128 (Media Format) (features/settings) + Setting 193 (Framing) (features/settings) Setting - Setting 190 (Max Lens Mod Enable) (features/settings) + Setting 135 (Hypersmooth) (features/settings) Setting - Setting 167 (HindSight) (features/settings) + Setting 122 (Lens) (features/settings) Setting - Setting 121 (Lens) (features/settings) + Setting 175 (Controls) (features/settings) Setting - Setting 123 (Time Lapse Digital Lenses) (features/settings) + Setting 190 (Max Lens Mod Enable) (features/settings) Setting - Setting 171 (Interval) (features/settings) + Setting 121 (Lens) (features/settings) Setting - Setting 135 (Hypersmooth) (features/settings) + Setting 134 (Anti-Flicker) (features/settings) Setting - Setting 122 (Lens) (features/settings) + Setting 179 (Trail Length) (features/settings) Setting - Setting 43 (Webcam Digital Lenses) (features/settings) + Setting 151 (Horizon Leveling) (features/settings) Setting - Setting 108 (Aspect Ratio) (features/settings) + Setting 150 (Horizon Leveling) (features/settings) Setting - Setting 172 (Duration) (features/settings) + Setting 43 (Webcam Digital Lenses) (features/settings) Setting - Setting 3 (Frames Per Second) (features/settings) + Setting 184 (Profiles) (features/settings) Setting - Setting 180 (Video Mode) (features/settings) + Setting 178 (Wireless Band) (features/settings) Setting - Setting 182 (Bit Rate) (features/settings) + Setting 192 (Aspect Ratio) (features/settings) Setting - Setting 176 (Easy Mode Speed) (features/settings) + Setting 189 (Max Lens Mod) (features/settings) Setting - Setting 151 (Horizon Leveling) (features/settings) + Setting 182 (Bit Rate) (features/settings) Setting @@ -1000,427 +988,427 @@

    operation index

    - Setting 150 (Horizon Leveling) (features/settings) + Setting 123 (Time Lapse Digital Lenses) (features/settings) Setting - Setting 83 (GPS) (features/settings) + Setting 171 (Interval) (features/settings) Setting - Setting 192 (Aspect Ratio) (features/settings) + Setting 2 (Resolution) (features/settings) Setting - Setting 162 (Max Lens) (features/settings) + Setting 180 (Video Mode) (features/settings) Setting - Status 23 (Time since boot (milliseconds) that the WiFi Access Point scan completed) (features/statuses) + Status 33 (Primary Storage Status) (features/statuses) Status - Status 77 (Is Digital Zoom feature available?) (features/statuses) + Status 118 (Photo interval capture count) (features/statuses) Status - Status 27 (Is a wireless remote control connected?) (features/statuses) + Status 114 (Camera control status ID) (features/statuses) Status - Status 69 (Is AP mode enabled?) (features/statuses) + Status 60 (The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this) (features/statuses) Status - Status 59 (Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)) (features/statuses) + Status 54 (Remaining space on the sdcard in Kilobytes) (features/statuses) Status - Status 105 (Camera lens type (reflects changes to lens settings such as 162, 189, 194, ...)) (features/statuses) + Status 117 (Total SD card capacity in Kilobytes) (features/statuses) Status - Status 98 (Preset Modified Status, which contains an event ID and a Preset (Group) ID) (features/statuses) + Status 70 (Internal battery level (percent)) (features/statuses) Status - Status 29 (SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32) (features/statuses) + Status 11 (Is LCD lock active?) (features/statuses) Status - Status 38 (Total number of photos on sdcard) (features/statuses) + Status 59 (Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)) (features/statuses) Status - Status 96 (Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)) (features/statuses) + Status 76 (Wireless Band) (features/statuses) Status - Status 79 (Is the camera currently in First Time Use (FTU) UI flow?) (features/statuses) + Status 38 (Total number of photos on sdcard) (features/statuses) Status - Status 35 (How many minutes of video can be captured with current settings before sdcard is full) (features/statuses) + Status 85 (Is the camera getting too cold to continue recording?) (features/statuses) Status - Status 26 (Wireless remote control version) (features/statuses) + Status 17 (Are Wireless Connections enabled?) (features/statuses) Status - Status 22 (State of current scan for WiFi Access Points) (features/statuses) + Status 81 (Is 5GHz wireless band available?) (features/statuses) Status - Status 106 (Is Video Hindsight Capture Active?) (features/statuses) + Status 96 (Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)) (features/statuses) Status - Status 28 (Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)) (features/statuses) + Status 97 (Current Preset (ID)) (features/statuses) Status - Status 65 (Liveview Exposure Select Mode) (features/statuses) + Status 28 (Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)) (features/statuses) Status - Status 85 (Is the camera getting too cold to continue recording?) (features/statuses) + Status 77 (Is Digital Zoom feature available?) (features/statuses) Status - Status 102 (Media Mod state) (features/statuses) + Status 32 (Is Preview Stream enabled?) (features/statuses) Status - Status 117 (Total SD card capacity in Kilobytes) (features/statuses) + Status 106 (Is Video Hindsight Capture Active?) (features/statuses) Status - Status 54 (Remaining space on the sdcard in Kilobytes) (features/statuses) + Status 68 (Does the camera currently have a GPS lock?) (features/statuses) Status - Status 78 (Are current video settings mobile friendly? (related to video compression and frame rate)) (features/statuses) + Status 105 (Camera lens type (reflects changes to lens settings such as 162, 189, 194, ...)) (features/statuses) Status - Status 89 (Current Flatmode ID) (features/statuses) + Status 115 (Is the camera connected to a PC via USB?) (features/statuses) Status - Status 6 (Is the system currently overheating?) (features/statuses) + Status 19 (The pairing state of the camera) (features/statuses) Status - Status 60 (The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this) (features/statuses) + Status 42 (Is there a pending request to cancel a firmware update download?) (features/statuses) Status - Status 108 (Is Scheduled Capture set?) (features/statuses) + Status 2 (Rough approximation of internal battery level in bars (or charging)) (features/statuses) Status - Status 103 (Time Warp Speed) (features/statuses) + Status 41 (The current status of Over The Air (OTA) update) (features/statuses) Status - Status 107 (Scheduled Capture Preset ID) (features/statuses) + Status 100 (Total number of Live Bursts on sdcard) (features/statuses) Status - Status 82 (Is the system fully booted and ready to accept commands?) (features/statuses) + Status 39 (Total number of videos on sdcard) (features/statuses) Status - Status 111 (Does sdcard meet specified minimum write speed?) (features/statuses) + Status 95 (Current Time Lapse Preset (ID)) (features/statuses) Status - Status 33 (Primary Storage Status) (features/statuses) + Status 21 (Time since boot (milliseconds) of last successful pairing complete action) (features/statuses) Status - Status 30 (The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32) (features/statuses) + Status 113 (Is Turbo Transfer active?) (features/statuses) Status - Status 112 (Number of sdcard write speed errors since device booted) (features/statuses) + Status 35 (How many minutes of video can be captured with current settings before sdcard is full) (features/statuses) Status - Status 88 (Is this camera model capable of zooming while encoding?) (features/statuses) + Status 79 (Is the camera currently in First Time Use (FTU) UI flow?) (features/statuses) Status - Status 67 (Liveview Exposure Select: y-coordinate (percent)) (features/statuses) + Status 88 (Is this camera model capable of zooming while encoding?) (features/statuses) Status - Status 31 (The number of wireless devices connected to the camera) (features/statuses) + Status 34 (How many photos can be taken with current settings before sdcard is full) (features/statuses) Status - Status 58 (The number of hilights in currently-encoding video (value is set to 0 when encoding stops)) (features/statuses) + Status 99 (The number of Live Bursts can be captured with current settings before sdcard is full) (features/statuses) Status - Status 21 (Time since boot (milliseconds) of last successful pairing complete action) (features/statuses) + Status 116 (Camera control over USB state) (features/statuses) Status - Status 41 (The current status of Over The Air (OTA) update) (features/statuses) + Status 98 (Preset Modified Status, which contains an event ID and a Preset (Group) ID) (features/statuses) Status - Status 19 (The pairing state of the camera) (features/statuses) + Status 27 (Is a wireless remote control connected?) (features/statuses) Status - Status 81 (Is 5GHz wireless band available?) (features/statuses) + Status 45 (Is locate camera feature active?) (features/statuses) Status - Status 70 (Internal battery level (percent)) (features/statuses) + Status 86 (Rotational orientation of the camera) (features/statuses) Status - Status 100 (Total number of Live Bursts on sdcard) (features/statuses) + Status 94 (Current Photo Preset (ID)) (features/statuses) Status - Status 97 (Current Preset (ID)) (features/statuses) + Status 101 (Is Capture Delay currently active (i.e. counting down)?) (features/statuses) Status - Status 17 (Are Wireless Connections enabled?) (features/statuses) + Status 78 (Are current video settings mobile friendly? (related to video compression and frame rate)) (features/statuses) Status - Status 93 (Current Video Preset (ID)) (features/statuses) + Status 102 (Media Mod state) (features/statuses) Status - Status 68 (Does the camera currently have a GPS lock?) (features/statuses) + Status 24 (WiFi AP provisioning state) (features/statuses) Status - Status 76 (Wireless Band) (features/statuses) + Status 55 (Is preview stream supported in current recording/mode/secondary-stream?) (features/statuses) Status - Status 118 (Photo interval capture count) (features/statuses) + Status 108 (Is Scheduled Capture set?) (features/statuses) Status - Status 104 (Is the system's Linux core active?) (features/statuses) + Status 103 (Time Warp Speed) (features/statuses) Status - Status 94 (Current Photo Preset (ID)) (features/statuses) + Status 22 (State of current scan for WiFi Access Points) (features/statuses) Status - Status 66 (Liveview Exposure Select: y-coordinate (percent)) (features/statuses) + Status 111 (Does sdcard meet specified minimum write speed?) (features/statuses) Status - Status 74 (Microphone Accessory status) (features/statuses) + Status 75 (Digital Zoom level (percent)) (features/statuses) Status - Status 13 (When encoding video, this is the duration (seconds) of the video so far; 0 otherwise) (features/statuses) + Status 9 (Is Quick Capture feature enabled?) (features/statuses) Status - Status 55 (Is preview stream supported in current recording/mode/secondary-stream?) (features/statuses) + Status 49 (The current timelapse interval countdown value (e.g. 5...4...3...2...1...)) (features/statuses) Status - Status 101 (Is Capture Delay currently active (i.e. counting down)?) (features/statuses) + Status 26 (Wireless remote control version) (features/statuses) Status - Status 86 (Rotational orientation of the camera) (features/statuses) + Status 66 (Liveview Exposure Select: y-coordinate (percent)) (features/statuses) Status - Status 9 (Is Quick Capture feature enabled?) (features/statuses) + Status 13 (When encoding video, this is the duration (seconds) of the video so far; 0 otherwise) (features/statuses) Status - Status 20 (The last type of pairing in which the camera was engaged) (features/statuses) + Status 30 (The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32) (features/statuses) Status - Status 75 (Digital Zoom level (percent)) (features/statuses) + Status 69 (Is AP mode enabled?) (features/statuses) Status - Status 83 (Is the internal battery charged sufficiently to start Over The Air (OTA) update?) (features/statuses) + Status 74 (Microphone Accessory status) (features/statuses) Status - Status 114 (Camera control status ID) (features/statuses) + Status 89 (Current Flatmode ID) (features/statuses) Status - Status 56 (WiFi signal strength in bars) (features/statuses) + Status 10 (Is the system currently encoding?) (features/statuses) Status - Status 34 (How many photos can be taken with current settings before sdcard is full) (features/statuses) + Status 110 (Display Mod Status (bitmasked)) (features/statuses) Status - Status 42 (Is there a pending request to cancel a firmware update download?) (features/statuses) + Status 56 (WiFi signal strength in bars) (features/statuses) Status - Status 1 (Is the system's internal battery present?) (features/statuses) + Status 23 (Time since boot (milliseconds) that the WiFi Access Point scan completed) (features/statuses) Status - Status 10 (Is the system currently encoding?) (features/statuses) + Status 20 (The last type of pairing in which the camera was engaged) (features/statuses) Status - Status 110 (Display Mod Status (bitmasked)) (features/statuses) + Status 104 (Is the system's Linux core active?) (features/statuses) Status - Status 2 (Rough approximation of internal battery level in bars (or charging)) (features/statuses) + Status 112 (Number of sdcard write speed errors since device booted) (features/statuses) Status - Status 45 (Is locate camera feature active?) (features/statuses) + Status 31 (The number of wireless devices connected to the camera) (features/statuses) Status - Status 99 (The number of Live Bursts can be captured with current settings before sdcard is full) (features/statuses) + Status 8 (Is the camera busy?) (features/statuses) Status - Status 116 (Camera control over USB state) (features/statuses) + Status 1 (Is the system's internal battery present?) (features/statuses) Status - Status 24 (WiFi AP provisioning state) (features/statuses) + Status 83 (Is the internal battery charged sufficiently to start Over The Air (OTA) update?) (features/statuses) Status - Status 8 (Is the camera busy?) (features/statuses) + Status 65 (Liveview Exposure Select Mode) (features/statuses) Status - Status 95 (Current Time Lapse Preset (ID)) (features/statuses) + Status 29 (SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32) (features/statuses) Status - Status 49 (The current timelapse interval countdown value (e.g. 5...4...3...2...1...)) (features/statuses) + Status 58 (The number of hilights in currently-encoding video (value is set to 0 when encoding stops)) (features/statuses) Status - Status 39 (Total number of videos on sdcard) (features/statuses) + Status 107 (Scheduled Capture Preset ID) (features/statuses) Status - Status 115 (Is the camera connected to a PC via USB?) (features/statuses) + Status 6 (Is the system currently overheating?) (features/statuses) Status - Status 11 (Is LCD lock active?) (features/statuses) + Status 93 (Current Video Preset (ID)) (features/statuses) Status - Status 32 (Is Preview Stream enabled?) (features/statuses) + Status 82 (Is the system fully booted and ready to accept commands?) (features/statuses) Status - Status 113 (Is Turbo Transfer active?) (features/statuses) + Status 67 (Liveview Exposure Select: y-coordinate (percent)) (features/statuses) Status diff --git a/ble/protocol.html b/ble/protocol.html index 3680fdb9..a6448b3a 100644 --- a/ble/protocol.html +++ b/ble/protocol.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/protocol/ble_setup.html b/ble/protocol/ble_setup.html index 82b1c0a1..9927d2f5 100644 --- a/ble/protocol/ble_setup.html +++ b/ble/protocol/ble_setup.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/protocol/data_protocol.html b/ble/protocol/data_protocol.html index 6b5be8a2..63ac37b0 100644 --- a/ble/protocol/data_protocol.html +++ b/ble/protocol/data_protocol.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/protocol/id_tables.html b/ble/protocol/id_tables.html index c354088b..4f94d34f 100644 --- a/ble/protocol/id_tables.html +++ b/ble/protocol/id_tables.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/protocol/protobuf.html b/ble/protocol/protobuf.html index 125709cb..3e6f7404 100644 --- a/ble/protocol/protobuf.html +++ b/ble/protocol/protobuf.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • @@ -819,214 +817,6 @@

    Enums -

    PRESET_GROUP_ID_VIDEO_SINGLE_LENS

    -

    0

    -

    Single video

    - -

    PRESET_GROUP_ID_PHOTO_SINGLE_LENS

    -

    1

    -

    Single photo

    - -

    PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENS

    -

    2

    -

    Single timelapse

    - -

    PRESET_GROUP_ID_VIDEO_HEMI_LENS

    -

    3

    -

    Spherical video hemi lens

    - -

    PRESET_GROUP_ID_PHOTO_HEMI_LENS

    -

    4

    -

    Spherical photo hemi lens

    - -

    PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS

    -

    5

    -

    Spherical timelapse hemi lens

    - -

    PRESET_GROUP_ID_SPECIAL_INTERNAL

    -

    6

    -

    Special

    - -

    PRESET_GROUP_ID_SPECIAL_HEMI

    -

    7

    -

    Special hemi lens

    - -

    PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENS

    -

    8

    -

    Video battery endurance

    - -

    PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENS

    -

    9

    -

    Video longest battery

    - -

    PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENS

    -

    10

    -

    Easy single video

    - -

    PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENS

    -

    11

    -

    Easy video battery endurance

    - -

    PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENS

    -

    12

    -

    Easy single photo

    - -

    PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENS

    -

    13

    -

    Easy single timelapse

    - -

    PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENS

    -

    14

    -

    Easy video longest battery

    - -

    PRESET_GROUP_ID_VIDEO_HEMI_LENS_2

    -

    15

    -

    Hemi Lens 2 video

    - -

    PRESET_GROUP_ID_PHOTO_HEMI_LENS_2

    -

    16

    -

    Hemi Lens 2 photo

    - -

    PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2

    -

    17

    -

    Hemi Lens 2 timelapse

    - -

    PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2

    -

    18

    -

    Hemi Lens 2 special

    - -

    PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS

    -

    19

    -

    Hemi Lens easy video

    - -

    PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS

    -

    20

    -

    Hemi Lens easy photo

    - -

    PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS

    -

    21

    -

    Hemi Lens easy timelapse

    - -

    PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2

    -

    22

    -

    Hemi Lens 2 easy video

    - -

    PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2

    -

    23

    -

    Hemi Lens 2 easy photo

    - -

    PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2

    -

    24

    -

    Hemi Lens 2 easy timelapse

    - -

    PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARD

    -

    25

    -

    Single video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDR

    -

    26

    -

    Single video hdr profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOG

    -

    27

    -

    Single video log profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS

    -

    28

    -

    Spherical video mode

    - -

    PRESET_GROUP_ID_PHOTO_SPHERICAL_LENS

    -

    29

    -

    Spherical photo mode

    - -

    PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENS

    -

    30

    -

    Spherical timelapse mode

    - -

    PRESET_GROUP_ID_SPECIAL_SPHERICAL

    -

    31

    -

    Special spherical lens

    - -

    PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARD

    -

    32

    -

    Spherical video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOG

    -

    33

    -

    Spherical video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARD

    -

    34

    -

    Hemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOG

    -

    35

    -

    Hemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_MACRO_LENS

    -

    36

    -

    Video macro lens

    - -

    PRESET_GROUP_ID_PHOTO_MACRO_LENS

    -

    37

    -

    Photo macro lens

    - -

    PRESET_GROUP_ID_TIMELAPSE_MACRO_LENS

    -

    38

    -

    Timelapse macro lens

    - -

    PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENS

    -

    39

    -

    Easy Video macro lens

    - -

    PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENS

    -

    40

    -

    Easy Photo macro lens

    - -

    PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENS

    -

    41

    -

    Easy Timelapse macro lens

    - -

    PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARD

    -

    42

    -

    Macro lens video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOG

    -

    43

    -

    Macro lens video log profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS

    -

    44

    -

    Video anamorphic lens

    - -

    PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENS

    -

    45

    -

    Photo anamorphic lens

    - -

    PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENS

    -

    46

    -

    Timelapse anamorphic lens

    - -

    PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENS

    -

    47

    -

    Easy Video anamorphic lens

    - -

    PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENS

    -

    48

    -

    Easy Photo anamorphic lens

    - -

    PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENS

    -

    49

    -

    Easy Timelapse anamorphic lens

    - -

    PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARD

    -

    50

    -

    Anamorphic lens video standard profile - for internal preset switch only

    - -

    PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOG

    -

    51

    -

    Anamorphic lens video log profile - for internal preset switch only

    -

    PRESET_GROUP_ID_VIDEO

    1000

    @@ -1163,142 +953,126 @@

    Enums

    11

    -

    PRESET_ICON_360_VIDEO

    -

    12

    - - -

    PRESET_ICON_PHOTO_2

    +

    PRESET_ICON_PHOTO_2

    13

    -

    PRESET_ICON_PANORAMA

    +

    PRESET_ICON_PANORAMA

    14

    -

    PRESET_ICON_BURST_2

    +

    PRESET_ICON_BURST_2

    15

    -

    PRESET_ICON_TIMEWARP_2

    +

    PRESET_ICON_TIMEWARP_2

    16

    -

    PRESET_ICON_TIMELAPSE_2

    +

    PRESET_ICON_TIMELAPSE_2

    17

    -

    PRESET_ICON_CUSTOM

    +

    PRESET_ICON_CUSTOM

    18

    -

    PRESET_ICON_AIR

    +

    PRESET_ICON_AIR

    19

    -

    PRESET_ICON_BIKE

    +

    PRESET_ICON_BIKE

    20

    -

    PRESET_ICON_EPIC

    +

    PRESET_ICON_EPIC

    21

    -

    PRESET_ICON_INDOOR

    +

    PRESET_ICON_INDOOR

    22

    -

    PRESET_ICON_MOTOR

    +

    PRESET_ICON_MOTOR

    23

    -

    PRESET_ICON_MOUNTED

    +

    PRESET_ICON_MOUNTED

    24

    -

    PRESET_ICON_OUTDOOR

    +

    PRESET_ICON_OUTDOOR

    25

    -

    PRESET_ICON_POV

    +

    PRESET_ICON_POV

    26

    -

    PRESET_ICON_SELFIE

    +

    PRESET_ICON_SELFIE

    27

    -

    PRESET_ICON_SKATE

    +

    PRESET_ICON_SKATE

    28

    -

    PRESET_ICON_SNOW

    +

    PRESET_ICON_SNOW

    29

    -

    PRESET_ICON_TRAIL

    +

    PRESET_ICON_TRAIL

    30

    -

    PRESET_ICON_TRAVEL

    +

    PRESET_ICON_TRAVEL

    31

    -

    PRESET_ICON_WATER

    +

    PRESET_ICON_WATER

    32

    -

    PRESET_ICON_LOOPING

    +

    PRESET_ICON_LOOPING

    33

    -

    PRESET_ICON_STARS

    +

    PRESET_ICON_STARS

    34

    -

    PRESET_ICON_ACTION

    +

    PRESET_ICON_ACTION

    35

    -

    PRESET_ICON_FOLLOW_CAM

    +

    PRESET_ICON_FOLLOW_CAM

    36

    -

    PRESET_ICON_SURF

    +

    PRESET_ICON_SURF

    37

    -

    PRESET_ICON_CITY

    +

    PRESET_ICON_CITY

    38

    -

    PRESET_ICON_SHAKY

    +

    PRESET_ICON_SHAKY

    39

    -

    PRESET_ICON_CHESTY

    +

    PRESET_ICON_CHESTY

    40

    -

    PRESET_ICON_HELMET

    +

    PRESET_ICON_HELMET

    41

    -

    PRESET_ICON_BITE

    +

    PRESET_ICON_BITE

    42

    -

    PRESET_ICON_MAX_VIDEO

    -

    55

    - - -

    PRESET_ICON_MAX_PHOTO

    -

    56

    - - -

    PRESET_ICON_MAX_TIMEWARP

    -

    57

    - -

    PRESET_ICON_BASIC

    58

    @@ -1375,86 +1149,6 @@

    Enums

    79

    -

    PRESET_ICON_EASY_MAX_VIDEO

    -

    80

    - - -

    PRESET_ICON_EASY_MAX_PHOTO

    -

    81

    - - -

    PRESET_ICON_EASY_MAX_TIMEWARP

    -

    82

    - - -

    PRESET_ICON_EASY_MAX_STAR_TRAIL

    -

    83

    - - -

    PRESET_ICON_EASY_MAX_LIGHT_PAINTING

    -

    84

    - - -

    PRESET_ICON_EASY_MAX_LIGHT_TRAIL

    -

    85

    - - -

    PRESET_ICON_MAX_STAR_TRAIL

    -

    89

    - - -

    PRESET_ICON_MAX_LIGHT_PAINTING

    -

    90

    - - -

    PRESET_ICON_MAX_LIGHT_TRAIL

    -

    91

    - - -

    PRESET_ICON_360_BURST

    -

    92

    - - -

    PRESET_ICON_360_PHOTO_NIGHT

    -

    93

    - - -

    PRESET_ICON_360_NIGHTLAPSE

    -

    94

    - - -

    PRESET_ICON_360_TIMELAPSE_PHOTO

    -

    95

    - - -

    PRESET_ICON_360_NIGHTLAPSE_PHOTO

    -

    96

    - - -

    PRESET_ICON_360_PHOTO

    -

    97

    - - -

    PRESET_ICON_360_TIMELAPSE

    -

    98

    - - -

    PRESET_ICON_360_TIMEWARP

    -

    99

    - - -

    PRESET_ICON_EASY_STANDARD_PROFILE

    -

    100

    - - -

    PRESET_ICON_EASY_HDR_PROFILE

    -

    101

    - - -

    PRESET_ICON_BURST_SLOMO

    -

    102

    - -

    PRESET_ICON_TIMELAPSE_PHOTO

    1000

    @@ -1463,10 +1157,6 @@

    Enums

    1001

    -

    PRESET_ICON_MAX

    -

    1002

    - - @@ -1537,190 +1227,118 @@

    Enums

    11

    -

    PRESET_TITLE_360_VIDEO

    -

    12

    - - -

    PRESET_TITLE_PHOTO_2

    +

    PRESET_TITLE_PHOTO_2

    13

    -

    PRESET_TITLE_PANORAMA

    +

    PRESET_TITLE_PANORAMA

    14

    -

    PRESET_TITLE_360_PHOTO

    -

    15

    - -

    PRESET_TITLE_TIME_WARP_2

    16

    -

    PRESET_TITLE_360_TIME_WARP

    -

    17

    - - -

    PRESET_TITLE_CUSTOM

    +

    PRESET_TITLE_CUSTOM

    18

    -

    PRESET_TITLE_AIR

    +

    PRESET_TITLE_AIR

    19

    -

    PRESET_TITLE_BIKE

    +

    PRESET_TITLE_BIKE

    20

    -

    PRESET_TITLE_EPIC

    +

    PRESET_TITLE_EPIC

    21

    -

    PRESET_TITLE_INDOOR

    +

    PRESET_TITLE_INDOOR

    22

    -

    PRESET_TITLE_MOTOR

    +

    PRESET_TITLE_MOTOR

    23

    -

    PRESET_TITLE_MOUNTED

    +

    PRESET_TITLE_MOUNTED

    24

    -

    PRESET_TITLE_OUTDOOR

    +

    PRESET_TITLE_OUTDOOR

    25

    -

    PRESET_TITLE_POV

    +

    PRESET_TITLE_POV

    26

    -

    PRESET_TITLE_SELFIE

    +

    PRESET_TITLE_SELFIE

    27

    -

    PRESET_TITLE_SKATE

    +

    PRESET_TITLE_SKATE

    28

    -

    PRESET_TITLE_SNOW

    +

    PRESET_TITLE_SNOW

    29

    -

    PRESET_TITLE_TRAIL

    +

    PRESET_TITLE_TRAIL

    30

    -

    PRESET_TITLE_TRAVEL

    +

    PRESET_TITLE_TRAVEL

    31

    -

    PRESET_TITLE_WATER

    +

    PRESET_TITLE_WATER

    32

    -

    PRESET_TITLE_LOOPING

    +

    PRESET_TITLE_LOOPING

    33

    -

    PRESET_TITLE_STARS

    +

    PRESET_TITLE_STARS

    34

    -

    PRESET_TITLE_ACTION

    +

    PRESET_TITLE_ACTION

    35

    -

    PRESET_TITLE_FOLLOW_CAM

    +

    PRESET_TITLE_FOLLOW_CAM

    36

    -

    PRESET_TITLE_SURF

    +

    PRESET_TITLE_SURF

    37

    -

    PRESET_TITLE_CITY

    +

    PRESET_TITLE_CITY

    38

    -

    PRESET_TITLE_SHAKY

    +

    PRESET_TITLE_SHAKY

    39

    -

    PRESET_TITLE_CHESTY

    +

    PRESET_TITLE_CHESTY

    40

    -

    PRESET_TITLE_HELMET

    +

    PRESET_TITLE_HELMET

    41

    -

    PRESET_TITLE_BITE

    +

    PRESET_TITLE_BITE

    42

    -

    PRESET_TITLE_CUSTOM_CINEMATIC

    -

    43

    - - -

    PRESET_TITLE_DIVE

    -

    44

    - - -

    PRESET_TITLE_FPV

    -

    45

    - - -

    PRESET_TITLE_HDR

    -

    46

    - - -

    PRESET_TITLE_LANDSCAPE

    -

    47

    - - -

    PRESET_TITLE_LOG

    -

    48

    - - -

    PRESET_TITLE_CUSTOM_SLOMO

    -

    49

    - - -

    PRESET_TITLE_TRIPOD

    -

    50

    - - -

    PRESET_TITLE_360_TIMELAPSE

    -

    51

    - - -

    PRESET_TITLE_360_NIGHT_LAPSE

    -

    52

    - - -

    PRESET_TITLE_360_NIGHT_PHOTO

    -

    53

    - - -

    PRESET_TITLE_PANO_TIME_LAPSE

    -

    54

    - - -

    PRESET_TITLE_MAX_VIDEO

    -

    55

    - - -

    PRESET_TITLE_MAX_PHOTO

    -

    56

    - - -

    PRESET_TITLE_MAX_TIMEWARP

    -

    57

    - -

    PRESET_TITLE_BASIC

    58

    @@ -1809,14 +1427,6 @@

    Enums

    79

    -

    PRESET_TITLE_MAX_LENS_VIDEO

    -

    80

    - - -

    PRESET_TITLE_MAX_LENS_TIMEWARP

    -

    81

    - -

    PRESET_TITLE_STANDARD_QUALITY_VIDEO

    82

    @@ -1825,133 +1435,14 @@

    Enums

    83

    -

    PRESET_TITLE_EASY_MAX_VIDEO

    -

    84

    - - -

    PRESET_TITLE_EASY_MAX_PHOTO

    -

    85

    - - -

    PRESET_TITLE_EASY_MAX_TIMEWARP

    -

    86

    - - -

    PRESET_TITLE_EASY_MAX_STAR_TRAIL

    -

    87

    - - -

    PRESET_TITLE_EASY_MAX_LIGHT_PAINTING

    -

    88

    - - -

    PRESET_TITLE_EASY_MAX_LIGHT_TRAIL

    -

    89

    - - -

    PRESET_TITLE_MAX_STAR_TRAIL

    -

    90

    - - -

    PRESET_TITLE_MAX_LIGHT_PAINTING

    -

    91

    - - -

    PRESET_TITLE_MAX_LIGHT_TRAIL

    -

    92

    - - -

    PRESET_TITLE_HIGHEST_QUALITY_VIDEO

    +

    PRESET_TITLE_HIGHEST_QUALITY_VIDEO

    93

    -

    PRESET_TITLE_USER_DEFINED_CUSTOM_NAME

    +

    PRESET_TITLE_USER_DEFINED_CUSTOM_NAME

    94

    -

    PRESET_TITLE_360_DEG_BURST

    -

    95

    -
      -
    • FW_PRESET_TITLE_360_BURST

    • -
    - - -

    PRESET_TITLE_360_DEG_NIGHT_PHOTO

    -

    96

    -
      -
    • FW_PRESET_TITLE_360_NIGHT

    • -
    - - -

    PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO

    -

    97

    -
      -
    • FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO

    • -
    - - -

    PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO

    -

    98

    -
      -
    • FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO

    • -
    - - -

    PRESET_TITLE_EASY_STANDARD_PROFILE

    -

    99

    - - -

    PRESET_TITLE_EASY_HDR_PROFILE

    -

    100

    - - -

    PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO

    -

    101

    -
      -
    • FW_PRESET_TITLE_MAX_2_TIME_LAPSE

    • -
    - - -

    PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO

    -

    102

    -
      -
    • FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE

    • -
    - - -

    PRESET_TITLE_360_DEG_PHOTO

    -

    103

    -
      -
    • FW_PRESET_TITLE_MAX_2_PHOTO

    • -
    - - -

    PRESET_TITLE_360_DEG_TIME_WARP

    -

    104

    -
      -
    • FW_PRESET_TITLE_MAX_2_TIME_WARP

    • -
    - - -

    PRESET_TITLE_360_DEG_VIDEO

    -

    105

    -
      -
    • FW_PRESET_TITLE_MAX_2_VIDEO

    • -
    - - -

    PRESET_TITLE_BURST_SLOMO

    -

    106

    - - -

    PRESET_TITLE_VLOG

    -

    107

    - - -

    PRESET_TITLE_MAX

    -

    108

    - - @@ -2566,16 +2057,6 @@

    Enums

    1

    List of currently available Preset Groups

    -

    custom_icon_ids

    -

    Range

    -

    2

    -

    A list of ranges of icon ID’s available for custom presets

    - -

    custom_title_ids

    -

    Range

    -

    3

    -

    A list of ranges of title ID’s available for custom presets

    - @@ -2739,41 +2220,6 @@

    Enums -
    -

    Range

    -
    -

    See also

    -

    Source Protobuf File

    -
    -

    A model used to represent a contiguous range of integer values.

    - ------ - - - - - - - - - - - - - - - - - - - -

    field

    typespec

    value

    summary

    start

    int32

    1

    Start index of the range.

    length

    int32

    2

    Length of the range.

    -

    RequestCOHNCert

    @@ -3008,15 +2454,6 @@

    Enums

    -
    -

    RequestGetAllPresetStatus

    -
    -

    See also

    -

    Source Protobuf File

    -
    -

    Get the superset of all possible presets, regardless of the current camera state

    -

    Response: NotifyPresetStatus sent immediately

    -

    RequestGetApEntries

    diff --git a/ble/protocol/state_management.html b/ble/protocol/state_management.html index ba1746a9..9c21edb3 100644 --- a/ble/protocol/state_management.html +++ b/ble/protocol/state_management.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/search.html b/ble/search.html index a13fced0..f33ecb0b 100644 --- a/ble/search.html +++ b/ble/search.html @@ -116,14 +116,12 @@
  • Preset
  • PresetGroup
  • PresetSetting
  • -
  • Range
  • RequestCOHNCert
  • RequestClearCOHNCert
  • RequestConnect
  • RequestConnectNew
  • RequestCreateCOHNCert
  • RequestCustomPresetUpdate
  • -
  • RequestGetAllPresetStatus
  • RequestGetApEntries
  • RequestGetCOHNStatus
  • RequestGetLastCapturedMedia
  • diff --git a/ble/searchindex.js b/ble/searchindex.js index 9ea1d17a..632e2044 100644 --- a/ble/searchindex.js +++ b/ble/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"Access Point": [[0, "access-point"]], "Advertisements": [[11, "advertisements"]], "Anti-Flicker (134)": [[7, "anti-flicker-134"]], "Are Wireless Connections enabled? (17)": [[8, "are-wireless-connections-enabled-17"]], "Are current video settings mobile friendly? (related to video compression and frame rate) (78)": [[8, "are-current-video-settings-mobile-friendly-related-to-video-compression-and-frame-rate-78"]], "Aspect Ratio (108)": [[7, "aspect-ratio-108"]], "Aspect Ratio (192)": [[7, "aspect-ratio-192"]], "Auto Off (59)": [[7, "auto-off-59"]], "BLE Characteristics": [[11, "ble-characteristics"]], "BLE Setup": [[11, "ble-setup"]], "Bit Depth (183)": [[7, "bit-depth-183"]], "Bit Rate (182)": [[7, "bit-rate-182"]], "Camera Capabilities": [[7, "camera-capabilities"]], "Camera Control": [[15, "camera-control"]], "Camera Readiness": [[15, "camera-readiness"]], "Camera control over USB state (116)": [[8, "camera-control-over-usb-state-116"]], "Camera control status ID (114)": [[8, "camera-control-status-id-114"]], "Camera lens type (reflects changes to lens settings such as 162, 189, 194, \u2026) (105)": [[8, "camera-lens-type-reflects-changes-to-lens-settings-such-as-162-189-194-105"]], "Camera on the Home Network": [[1, "camera-on-the-home-network"]], "Certificates": [[1, "certificates"]], "Command IDs": [[13, "command-ids"]], "Commands": [[12, "commands"]], "Configure GATT Characteristics": [[11, "configure-gatt-characteristics"]], "Continuation Packets": [[12, "continuation-packets"]], "Control": [[2, "control"]], "Controls (175)": [[7, "controls-175"]], "Current Flatmode ID (89)": [[8, "current-flatmode-id-89"]], "Current Photo Preset (ID) (94)": [[8, "current-photo-preset-id-94"]], "Current Preset (ID) (97)": [[8, "current-preset-id-97"]], "Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json) (96)": [[8, "current-preset-group-id-corresponds-to-ui-mode-groups-in-settings-json-96"]], "Current Time Lapse Preset (ID) (95)": [[8, "current-time-lapse-preset-id-95"]], "Current Video Preset (ID) (93)": [[8, "current-video-preset-id-93"]], "Data Protocol": [[12, "data-protocol"]], "Decipher Message Payload Type": [[12, "decipher-message-payload-type"]], "Digital Zoom level (percent) (75)": [[8, "digital-zoom-level-percent-75"]], "Disconnect from Access Point": [[0, "disconnect-from-access-point"]], "Display Mod Status (bitmasked) (110)": [[8, "display-mod-status-bitmasked-110"]], "Does sdcard meet specified minimum write speed? (111)": [[8, "does-sdcard-meet-specified-minimum-write-speed-111"]], "Does the camera currently have a GPS lock? (68)": [[8, "does-the-camera-currently-have-a-gps-lock-68"]], "Duration (172)": [[7, "duration-172"]], "EnumCOHNNetworkState": [[14, "enumcohnnetworkstate"]], "EnumCOHNStatus": [[14, "enumcohnstatus"]], "EnumCameraControlStatus": [[14, "enumcameracontrolstatus"]], "EnumFlatMode": [[14, "enumflatmode"]], "EnumLens": [[14, "enumlens"]], "EnumLiveStreamError": [[14, "enumlivestreamerror"]], "EnumLiveStreamStatus": [[14, "enumlivestreamstatus"]], "EnumPresetGroup": [[14, "enumpresetgroup"]], "EnumPresetGroupIcon": [[14, "enumpresetgroupicon"]], "EnumPresetIcon": [[14, "enumpreseticon"]], "EnumPresetTitle": [[14, "enumpresettitle"]], "EnumProvisioning": [[14, "enumprovisioning"]], "EnumRegisterLiveStreamStatus": [[14, "enumregisterlivestreamstatus"]], "EnumRegisterPresetStatus": [[14, "enumregisterpresetstatus"]], "EnumResultGeneric": [[14, "enumresultgeneric"]], "EnumScanEntryFlags": [[14, "enumscanentryflags"]], "EnumScanning": [[14, "enumscanning"]], "EnumWindowSize": [[14, "enumwindowsize"]], "Enums": [[14, "enums"]], "Extended (13-bit) Packets": [[12, "extended-13-bit-packets"]], "Extended (16-bit) Packets": [[12, "extended-16-bit-packets"]], "FOV (43)": [[7, "fov-43"]], "Finish Pairing": [[11, "finish-pairing"]], "Format (128)": [[7, "format-128"]], "Frames Per Second (3)": [[7, "frames-per-second-3"]], "Framing (193)": [[7, "framing-193"]], "GPS (83)": [[7, "gps-83"]], "General": [[9, "general"]], "General (5-bit) Packets": [[12, "general-5-bit-packets"]], "Getting Started": [[9, "getting-started"]], "Hilights": [[3, "hilights"]], "HindSight (167)": [[7, "hindsight-167"]], "Horizon Leveling (150)": [[7, "horizon-leveling-150"]], "Horizon Leveling (151)": [[7, "horizon-leveling-151"]], "How many minutes of video can be captured with current settings before sdcard is full (35)": [[8, "how-many-minutes-of-video-can-be-captured-with-current-settings-before-sdcard-is-full-35"]], "How many photos can be taken with current settings before sdcard is full (34)": [[8, "how-many-photos-can-be-taken-with-current-settings-before-sdcard-is-full-34"]], "Hypersmooth (135)": [[7, "hypersmooth-135"]], "ID Tables": [[13, "id-tables"]], "Internal battery level (percent) (70)": [[8, "internal-battery-level-percent-70"]], "Interval (171)": [[7, "interval-171"]], "Is 5GHz wireless band available? (81)": [[8, "is-5ghz-wireless-band-available-81"]], "Is AP mode enabled? (69)": [[8, "is-ap-mode-enabled-69"]], "Is Capture Delay currently active (i.e. counting down)? (101)": [[8, "is-capture-delay-currently-active-i-e-counting-down-101"]], "Is Digital Zoom feature available? (77)": [[8, "is-digital-zoom-feature-available-77"]], "Is LCD lock active? (11)": [[8, "is-lcd-lock-active-11"]], "Is Preview Stream enabled? (32)": [[8, "is-preview-stream-enabled-32"]], "Is Quick Capture feature enabled? (9)": [[8, "is-quick-capture-feature-enabled-9"]], "Is Scheduled Capture set? (108)": [[8, "is-scheduled-capture-set-108"]], "Is Turbo Transfer active? (113)": [[8, "is-turbo-transfer-active-113"]], "Is Video Hindsight Capture Active? (106)": [[8, "is-video-hindsight-capture-active-106"]], "Is a wireless remote control connected? (27)": [[8, "is-a-wireless-remote-control-connected-27"]], "Is locate camera feature active? (45)": [[8, "is-locate-camera-feature-active-45"]], "Is preview stream supported in current recording/mode/secondary-stream? (55)": [[8, "is-preview-stream-supported-in-current-recording-mode-secondary-stream-55"]], "Is the camera busy? (8)": [[8, "is-the-camera-busy-8"]], "Is the camera connected to a PC via USB? (115)": [[8, "is-the-camera-connected-to-a-pc-via-usb-115"]], "Is the camera currently in First Time Use (FTU) UI flow? (79)": [[8, "is-the-camera-currently-in-first-time-use-ftu-ui-flow-79"]], "Is the camera getting too cold to continue recording? (85)": [[8, "is-the-camera-getting-too-cold-to-continue-recording-85"]], "Is the internal battery charged sufficiently to start Over The Air (OTA) update? (83)": [[8, "is-the-internal-battery-charged-sufficiently-to-start-over-the-air-ota-update-83"]], "Is the system currently encoding? (10)": [[8, "is-the-system-currently-encoding-10"]], "Is the system currently overheating? (6)": [[8, "is-the-system-currently-overheating-6"]], "Is the system fully booted and ready to accept commands? (82)": [[8, "is-the-system-fully-booted-and-ready-to-accept-commands-82"]], "Is the system\u2019s Linux core active? (104)": [[8, "is-the-system-s-linux-core-active-104"]], "Is the system\u2019s internal battery present? (1)": [[8, "is-the-system-s-internal-battery-present-1"]], "Is there a pending request to cancel a firmware update download? (42)": [[8, "is-there-a-pending-request-to-cancel-a-firmware-update-download-42"]], "Is this camera model capable of zooming while encoding? (88)": [[8, "is-this-camera-model-capable-of-zooming-while-encoding-88"]], "JSON": [[7, "json"]], "Keep Alive": [[15, "keep-alive"]], "Lapse Mode (187)": [[7, "lapse-mode-187"]], "Lens (121)": [[7, "lens-121"]], "Lens (122)": [[7, "lens-122"]], "Lens (123)": [[7, "lens-123"]], "Limitations": [[9, "limitations"]], "Live Streaming": [[4, "live-streaming"]], "Liveview Exposure Select Mode (65)": [[8, "liveview-exposure-select-mode-65"]], "Liveview Exposure Select: y-coordinate (percent) (66)": [[8, "liveview-exposure-select-y-coordinate-percent-66"]], "Liveview Exposure Select: y-coordinate (percent) (67)": [[8, "liveview-exposure-select-y-coordinate-percent-67"]], "Max Lens Mod (189)": [[7, "max-lens-mod-189"]], "Max Lens Mod Enable (162)": [[7, "max-lens-mod-enable-162"]], "Max Lens Mod Enable (190)": [[7, "max-lens-mod-enable-190"]], "Media": [[14, "media"]], "Media Mod state (102)": [[8, "media-mod-state-102"]], "Message Payload": [[12, "message-payload"]], "Microphone Accessory status (74)": [[8, "microphone-accessory-status-74"]], "Night Photo (177)": [[7, "night-photo-177"]], "NotifProvisioningState": [[14, "notifprovisioningstate"]], "NotifStartScanning": [[14, "notifstartscanning"]], "NotifyCOHNStatus": [[14, "notifycohnstatus"]], "NotifyLiveStreamStatus": [[14, "notifylivestreamstatus"]], "NotifyPresetStatus": [[14, "notifypresetstatus"]], "Number of sdcard write speed errors since device booted (112)": [[8, "number-of-sdcard-write-speed-errors-since-device-booted-112"]], "Operations": [[0, "operations"], [1, "operations"], [2, "operations"], [3, "operations"], [4, "operations"], [5, "operations"], [6, "operations"], [7, "operations"]], "Packet Headers": [[12, "packet-headers"]], "Packetization": [[12, "packetization"]], "Pairing Mode": [[11, "pairing-mode"]], "Photo Mode (191)": [[7, "photo-mode-191"]], "Photo interval capture count (118)": [[8, "photo-interval-capture-count-118"]], "Preset": [[14, "preset"]], "Preset Groups": [[5, "preset-groups"]], "Preset Modified Status": [[5, "preset-modified-status"]], "Preset Modified Status, which contains an event ID and a Preset (Group) ID (98)": [[8, "preset-modified-status-which-contains-an-event-id-and-a-preset-group-id-98"]], "PresetGroup": [[14, "presetgroup"]], "PresetSetting": [[14, "presetsetting"]], "Presets": [[5, "presets"]], "Primary Storage Status (33)": [[8, "primary-storage-status-33"]], "Profiles (184)": [[7, "profiles-184"]], "Protobuf": [[12, "protobuf"]], "Protobuf Documentation": [[14, "protobuf-documentation"]], "Protobuf IDs": [[13, "protobuf-ids"]], "Protocol": [[10, "protocol"]], "Provisioning Procedure": [[1, "provisioning-procedure"]], "Queries": [[12, "queries"]], "Query": [[6, "query"]], "Query IDs": [[13, "query-ids"]], "Range": [[14, "range"]], "Remaining space on the sdcard in Kilobytes (54)": [[8, "remaining-space-on-the-sdcard-in-kilobytes-54"]], "RequestCOHNCert": [[14, "requestcohncert"]], "RequestClearCOHNCert": [[14, "requestclearcohncert"]], "RequestConnect": [[14, "requestconnect"]], "RequestConnectNew": [[14, "requestconnectnew"]], "RequestCreateCOHNCert": [[14, "requestcreatecohncert"]], "RequestCustomPresetUpdate": [[14, "requestcustompresetupdate"]], "RequestGetAllPresetStatus": [[14, "requestgetallpresetstatus"]], "RequestGetApEntries": [[14, "requestgetapentries"]], "RequestGetCOHNStatus": [[14, "requestgetcohnstatus"]], "RequestGetLastCapturedMedia": [[14, "requestgetlastcapturedmedia"]], "RequestGetLiveStreamStatus": [[14, "requestgetlivestreamstatus"]], "RequestGetPresetStatus": [[14, "requestgetpresetstatus"]], "RequestReleaseNetwork": [[14, "requestreleasenetwork"]], "RequestSetCOHNSetting": [[14, "requestsetcohnsetting"]], "RequestSetCameraControlStatus": [[14, "requestsetcameracontrolstatus"]], "RequestSetLiveStreamMode": [[14, "requestsetlivestreammode"]], "RequestSetTurboActive": [[14, "requestsetturboactive"]], "RequestStartScan": [[14, "requeststartscan"]], "Resolution (2)": [[7, "resolution-2"]], "ResponseCOHNCert": [[14, "responsecohncert"]], "ResponseConnect": [[14, "responseconnect"]], "ResponseConnectNew": [[14, "responseconnectnew"]], "ResponseGeneric": [[14, "responsegeneric"]], "ResponseGetApEntries": [[14, "responsegetapentries"]], "ResponseGetApEntries::ScanEntry": [[14, "responsegetapentries-scanentry"]], "ResponseLastCapturedMedia": [[14, "responselastcapturedmedia"]], "ResponseStartScanning": [[14, "responsestartscanning"]], "Rotational orientation of the camera (86)": [[8, "rotational-orientation-of-the-camera-86"]], "Rough approximation of internal battery level in bars (or charging) (2)": [[8, "rough-approximation-of-internal-battery-level-in-bars-or-charging-2"]], "SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32 (29)": [[8, "ssid-of-the-ap-the-camera-is-currently-connected-to-on-ble-connection-value-is-big-endian-byte-encoded-int32-29"]], "Scheduled Capture Preset ID (107)": [[8, "scheduled-capture-preset-id-107"]], "Send Messages": [[11, "send-messages"]], "Setting IDs": [[7, "setting-ids"], [13, "setting-ids"]], "Settings": [[7, "settings"]], "Speed (176)": [[7, "speed-176"]], "State Management": [[15, "state-management"]], "State of current scan for WiFi Access Points (22)": [[8, "state-of-current-scan-for-wifi-access-points-22"]], "Status IDs": [[8, "status-ids"], [13, "status-ids"]], "Statuses": [[8, "statuses"]], "Supported Cameras": [[9, "supported-cameras"]], "The camera\u2019s WiFi SSID. On BLE connection, value is big-endian byte-encoded int32 (30)": [[8, "the-camera-s-wifi-ssid-on-ble-connection-value-is-big-endian-byte-encoded-int32-30"]], "The current status of Over The Air (OTA) update (41)": [[8, "the-current-status-of-over-the-air-ota-update-41"]], "The current timelapse interval countdown value (e.g. 5\u20264\u20263\u20262\u20261\u2026) (49)": [[8, "the-current-timelapse-interval-countdown-value-e-g-5-4-3-2-1-49"]], "The last type of pairing in which the camera was engaged (20)": [[8, "the-last-type-of-pairing-in-which-the-camera-was-engaged-20"]], "The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this (60)": [[8, "the-minimum-time-between-camera-status-updates-milliseconds-best-practice-is-to-not-poll-for-status-more-often-than-this-60"]], "The number of Live Bursts can be captured with current settings before sdcard is full (99)": [[8, "the-number-of-live-bursts-can-be-captured-with-current-settings-before-sdcard-is-full-99"]], "The number of hilights in currently-encoding video (value is set to 0 when encoding stops) (58)": [[8, "the-number-of-hilights-in-currently-encoding-video-value-is-set-to-0-when-encoding-stops-58"]], "The number of wireless devices connected to the camera (31)": [[8, "the-number-of-wireless-devices-connected-to-the-camera-31"]], "The pairing state of the camera (19)": [[8, "the-pairing-state-of-the-camera-19"]], "Time Warp Speed (103)": [[8, "time-warp-speed-103"]], "Time since boot (milliseconds) of last successful pairing complete action (21)": [[8, "time-since-boot-milliseconds-of-last-successful-pairing-complete-action-21"]], "Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops) (59)": [[8, "time-since-boot-milliseconds-of-most-recent-hilight-in-encoding-video-set-to-0-when-encoding-stops-59"]], "Time since boot (milliseconds) that the WiFi Access Point scan completed (23)": [[8, "time-since-boot-milliseconds-that-the-wifi-access-point-scan-completed-23"]], "Total SD card capacity in Kilobytes (117)": [[8, "total-sd-card-capacity-in-kilobytes-117"]], "Total number of Live Bursts on sdcard (100)": [[8, "total-number-of-live-bursts-on-sdcard-100"]], "Total number of photos on sdcard (38)": [[8, "total-number-of-photos-on-sdcard-38"]], "Total number of videos on sdcard (39)": [[8, "total-number-of-videos-on-sdcard-39"]], "Trail Length (179)": [[7, "trail-length-179"]], "Type Length Value": [[12, "type-length-value"]], "Verifying Certificate": [[1, "verifying-certificate"]], "Video Mode (180)": [[7, "video-mode-180"]], "Video Mode (186)": [[7, "video-mode-186"]], "Video Performance Modes (173)": [[7, "video-performance-modes-173"]], "View Certificate Details": [[1, "view-certificate-details"]], "Welcome to Open GoPro BLE API\u2019s documentation!": [[9, "welcome-to-open-gopro-ble-api-s-documentation"]], "When encoding video, this is the duration (seconds) of the video so far; 0 otherwise (13)": [[8, "when-encoding-video-this-is-the-duration-seconds-of-the-video-so-far-0-otherwise-13"]], "Wi-fi Band (178)": [[7, "wi-fi-band-178"]], "WiFi AP provisioning state (24)": [[8, "wifi-ap-provisioning-state-24"]], "WiFi signal strength in bars (56)": [[8, "wifi-signal-strength-in-bars-56"]], "Wireless Band (76)": [[8, "wireless-band-76"]], "Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags) (28)": [[8, "wireless-pairing-state-each-bit-contains-state-information-see-wirelesspairingstateflags-28"]], "Wireless remote control version (26)": [[8, "wireless-remote-control-version-26"]], "XLSX": [[7, "xlsx"]]}, "docnames": ["features/access_points", "features/cohn", "features/control", "features/hilights", "features/live_streaming", "features/presets", "features/query", "features/settings", "features/statuses", "index", "protocol", "protocol/ble_setup", "protocol/data_protocol", "protocol/id_tables", "protocol/protobuf", "protocol/state_management"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["features/access_points.rst", "features/cohn.rst", "features/control.rst", "features/hilights.rst", "features/live_streaming.rst", "features/presets.rst", "features/query.rst", "features/settings.rst", "features/statuses.rst", "index.rst", "protocol.rst", "protocol/ble_setup.rst", "protocol/data_protocol.rst", "protocol/id_tables.rst", "protocol/protobuf.rst", "protocol/state_management.rst"], "indexentries": {}, "objects": {"": [[14, 0, 0, "enumcohnnetworkstate", "EnumCOHNNetworkState"], [14, 0, 0, "enumcohnstatus", "EnumCOHNStatus"], [14, 0, 0, "enumcameracontrolstatus", "EnumCameraControlStatus"], [14, 0, 0, "enumflatmode", "EnumFlatMode"], [14, 0, 0, "enumlens", "EnumLens"], [14, 0, 0, "enumlivestreamerror", "EnumLiveStreamError"], [14, 0, 0, "enumlivestreamstatus", "EnumLiveStreamStatus"], [14, 0, 0, "enumpresetgroup", "EnumPresetGroup"], [14, 0, 0, "enumpresetgroupicon", "EnumPresetGroupIcon"], [14, 0, 0, "enumpreseticon", "EnumPresetIcon"], [14, 0, 0, "enumpresettitle", "EnumPresetTitle"], [14, 0, 0, "enumprovisioning", "EnumProvisioning"], [14, 0, 0, "enumregisterlivestreamstatus", "EnumRegisterLiveStreamStatus"], [14, 0, 0, "enumregisterpresetstatus", "EnumRegisterPresetStatus"], [14, 0, 0, "enumresultgeneric", "EnumResultGeneric"], [14, 0, 0, "enumscanentryflags", "EnumScanEntryFlags"], [14, 0, 0, "enumscanning", "EnumScanning"], [14, 0, 0, "enumwindowsize", "EnumWindowSize"], [14, 0, 0, "media", "Media"], [14, 0, 0, "notifprovisioningstate", "NotifProvisioningState"], [14, 0, 0, "notifstartscanning", "NotifStartScanning"], [14, 0, 0, "notifycohnstatus", "NotifyCOHNStatus"], [14, 0, 0, "notifylivestreamstatus", "NotifyLiveStreamStatus"], [14, 0, 0, "notifypresetstatus", "NotifyPresetStatus"], [14, 0, 0, "preset", "Preset"], [14, 0, 0, "presetgroup", "PresetGroup"], [14, 0, 0, "presetsetting", "PresetSetting"], [14, 0, 0, "range", "Range"], [14, 0, 0, "requestcohncert", "RequestCOHNCert"], [14, 0, 0, "requestclearcohncert", "RequestClearCOHNCert"], [14, 0, 0, "requestconnect", "RequestConnect"], [14, 0, 0, "requestconnectnew", "RequestConnectNew"], [14, 0, 0, "requestcreatecohncert", "RequestCreateCOHNCert"], [14, 0, 0, "requestcustompresetupdate", "RequestCustomPresetUpdate"], [14, 0, 0, "requestgetallpresetstatus", "RequestGetAllPresetStatus"], [14, 0, 0, "requestgetapentries", "RequestGetApEntries"], [14, 0, 0, "requestgetcohnstatus", "RequestGetCOHNStatus"], [14, 0, 0, "requestgetlastcapturedmedia", "RequestGetLastCapturedMedia"], [14, 0, 0, "requestgetlivestreamstatus", "RequestGetLiveStreamStatus"], [14, 0, 0, "requestgetpresetstatus", "RequestGetPresetStatus"], [14, 0, 0, "requestreleasenetwork", "RequestReleaseNetwork"], [14, 0, 0, "requestsetcohnsetting", "RequestSetCOHNSetting"], [14, 0, 0, "requestsetcameracontrolstatus", "RequestSetCameraControlStatus"], [14, 0, 0, "requestsetlivestreammode", "RequestSetLiveStreamMode"], [14, 0, 0, "requestsetturboactive", "RequestSetTurboActive"], [14, 0, 0, "requeststartscan", "RequestStartScan"], [14, 0, 0, "responsecohncert", "ResponseCOHNCert"], [14, 0, 0, "responseconnect", "ResponseConnect"], [14, 0, 0, "responseconnectnew", "ResponseConnectNew"], [14, 0, 0, "responsegeneric", "ResponseGeneric"], [14, 0, 0, "responsegetapentries", "ResponseGetApEntries"], [14, 0, 0, "responselastcapturedmedia", "ResponseLastCapturedMedia"], [14, 0, 0, "responsestartscanning", "ResponseStartScanning"], [14, 0, 0, "scanentry", "ScanEntry"], [1, 1, 0, "clear-cohn-certificate", "clear cohn certificate"], [0, 1, 0, "connect-to-a-new-access-point", "connect to a new access point"], [0, 1, 0, "connect-to-provisioned-access-point", "connect to provisioned access point"], [1, 1, 0, "create-cohn-certificate", "create cohn certificate"], [0, 1, 0, "get-ap-scan-results", "get ap scan results"], [5, 1, 0, "get-available-presets", "get available presets"], [1, 1, 0, "get-cohn-certificate", "get cohn certificate"], [1, 1, 0, "get-cohn-status", "get cohn status"], [6, 1, 0, "get-date-time", "get date time"], [6, 1, 0, "get-hardware-info", "get hardware info"], [6, 1, 0, "get-last-captured-media", "get last captured media"], [4, 1, 0, "get-livestream-status", "get livestream status"], [6, 1, 0, "get-local-date-time", "get local date time"], [6, 1, 0, "get-open-gopro-version", "get open gopro version"], [6, 1, 0, "get-setting-capabilities", "get setting capabilities"], [6, 1, 0, "get-setting-values", "get setting values"], [6, 1, 0, "get-status-values", "get status values"], [3, 1, 0, "hilight-moment", "hilight moment"], [2, 1, 0, "keep-alive", "keep alive"], [5, 1, 0, "load-preset", "load preset"], [5, 1, 0, "load-preset-group", "load preset group"], [6, 1, 0, "register-for-setting-capability-updates", "register for setting capability updates"], [6, 1, 0, "register-for-setting-value-updates", "register for setting value updates"], [6, 1, 0, "register-for-status-value-updates", "register for status value updates"], [0, 1, 0, "scan-for-access-points", "scan for access points"], [2, 1, 0, "set-analytics", "set analytics"], [2, 1, 0, "set-ap-control", "set ap control"], [2, 1, 0, "set-camera-control", "set camera control"], [1, 1, 0, "set-cohn-setting", "set cohn setting"], [2, 1, 0, "set-date-time", "set date time"], [4, 1, 0, "set-livestream-mode", "set livestream mode"], [2, 1, 0, "set-local-date-time", "set local date time"], [7, 1, 0, "set-setting", "set setting"], [2, 1, 0, "set-shutter", "set shutter"], [2, 1, 0, "set-turbo-transfer", "set turbo transfer"], [2, 1, 0, "sleep", "sleep"], [6, 1, 0, "unregister-for-setting-capability-updates", "unregister for setting capability updates"], [6, 1, 0, "unregister-for-setting-value-updates", "unregister for setting value updates"], [6, 1, 0, "unregister-for-status-value-updates", "unregister for status value updates"], [5, 1, 0, "update-custom-preset", "update custom preset"], [7, 2, 0, "setting-108", "Setting 108 (Aspect Ratio)"], [7, 2, 0, "setting-121", "Setting 121 (Lens)"], [7, 2, 0, "setting-122", "Setting 122 (Lens)"], [7, 2, 0, "setting-123", "Setting 123 (Time Lapse Digital Lenses)"], [7, 2, 0, "setting-128", "Setting 128 (Media Format)"], [7, 2, 0, "setting-134", "Setting 134 (Anti-Flicker)"], [7, 2, 0, "setting-135", "Setting 135 (Hypersmooth)"], [7, 2, 0, "setting-150", "Setting 150 (Horizon Leveling)"], [7, 2, 0, "setting-151", "Setting 151 (Horizon Leveling)"], [7, 2, 0, "setting-162", "Setting 162 (Max Lens)"], [7, 2, 0, "setting-167", "Setting 167 (HindSight)"], [7, 2, 0, "setting-171", "Setting 171 (Interval)"], [7, 2, 0, "setting-172", "Setting 172 (Duration)"], [7, 2, 0, "setting-173", "Setting 173 (Video Performance Mode)"], [7, 2, 0, "setting-175", "Setting 175 (Controls)"], [7, 2, 0, "setting-176", "Setting 176 (Easy Mode Speed)"], [7, 2, 0, "setting-177", "Setting 177 (Enable Night Photo)"], [7, 2, 0, "setting-178", "Setting 178 (Wireless Band)"], [7, 2, 0, "setting-179", "Setting 179 (Trail Length)"], [7, 2, 0, "setting-180", "Setting 180 (Video Mode)"], [7, 2, 0, "setting-182", "Setting 182 (Bit Rate)"], [7, 2, 0, "setting-183", "Setting 183 (Bit Depth)"], [7, 2, 0, "setting-184", "Setting 184 (Profiles)"], [7, 2, 0, "setting-186", "Setting 186 (Video Mode)"], [7, 2, 0, "setting-187", "Setting 187 (Lapse Mode)"], [7, 2, 0, "setting-189", "Setting 189 (Max Lens Mod)"], [7, 2, 0, "setting-190", "Setting 190 (Max Lens Mod Enable)"], [7, 2, 0, "setting-191", "Setting 191 (Photo Mode)"], [7, 2, 0, "setting-192", "Setting 192 (Aspect Ratio)"], [7, 2, 0, "setting-193", "Setting 193 (Framing)"], [7, 2, 0, "setting-2", "Setting 2 (Resolution)"], [7, 2, 0, "setting-3", "Setting 3 (Frames Per Second)"], [7, 2, 0, "setting-43", "Setting 43 (Webcam Digital Lenses)"], [7, 2, 0, "setting-59", "Setting 59 (Auto Power Down)"], [7, 2, 0, "setting-83", "Setting 83 (GPS)"], [8, 3, 0, "status-1", "Status 1 (Is the system's internal battery present?)"], [8, 3, 0, "status-10", "Status 10 (Is the system currently encoding?)"], [8, 3, 0, "status-100", "Status 100 (Total number of Live Bursts on sdcard)"], [8, 3, 0, "status-102", "Status 102 (Media Mod state)"], [8, 3, 0, "status-103", "Status 103 (Time Warp Speed)"], [8, 3, 0, "status-104", "Status 104 (Is the system's Linux core active?)"], [8, 3, 0, "status-106", "Status 106 (Is Video Hindsight Capture Active?)"], [8, 3, 0, "status-107", "Status 107 (Scheduled Capture Preset ID)"], [8, 3, 0, "status-108", "Status 108 (Is Scheduled Capture set?)"], [8, 3, 0, "status-11", "Status 11 (Is LCD lock active?)"], [8, 3, 0, "status-110", "Status 110 (Display Mod Status (bitmasked))"], [8, 3, 0, "status-111", "Status 111 (Does sdcard meet specified minimum write speed?)"], [8, 3, 0, "status-112", "Status 112 (Number of sdcard write speed errors since device booted)"], [8, 3, 0, "status-113", "Status 113 (Is Turbo Transfer active?)"], [8, 3, 0, "status-114", "Status 114 (Camera control status ID)"], [8, 3, 0, "status-115", "Status 115 (Is the camera connected to a PC via USB?)"], [8, 3, 0, "status-116", "Status 116 (Camera control over USB state)"], [8, 3, 0, "status-117", "Status 117 (Total SD card capacity in Kilobytes)"], [8, 3, 0, "status-118", "Status 118 (Photo interval capture count)"], [8, 3, 0, "status-13", "Status 13 (When encoding video, this is the duration (seconds) of the video so far; 0 otherwise)"], [8, 3, 0, "status-17", "Status 17 (Are Wireless Connections enabled?)"], [8, 3, 0, "status-19", "Status 19 (The pairing state of the camera)"], [8, 3, 0, "status-2", "Status 2 (Rough approximation of internal battery level in bars (or charging))"], [8, 3, 0, "status-20", "Status 20 (The last type of pairing in which the camera was engaged)"], [8, 3, 0, "status-21", "Status 21 (Time since boot (milliseconds) of last successful pairing complete action)"], [8, 3, 0, "status-22", "Status 22 (State of current scan for WiFi Access Points)"], [8, 3, 0, "status-23", "Status 23 (Time since boot (milliseconds) that the WiFi Access Point scan completed)"], [8, 3, 0, "status-24", "Status 24 (WiFi AP provisioning state)"], [8, 3, 0, "status-26", "Status 26 (Wireless remote control version)"], [8, 3, 0, "status-27", "Status 27 (Is a wireless remote control connected?)"], [8, 3, 0, "status-31", "Status 31 (The number of wireless devices connected to the camera)"], [8, 3, 0, "status-32", "Status 32 (Is Preview Stream enabled?)"], [8, 3, 0, "status-33", "Status 33 (Primary Storage Status)"], [8, 3, 0, "status-34", "Status 34 (How many photos can be taken with current settings before sdcard is full)"], [8, 3, 0, "status-35", "Status 35 (How many minutes of video can be captured with current settings before sdcard is full)"], [8, 3, 0, "status-38", "Status 38 (Total number of photos on sdcard)"], [8, 3, 0, "status-39", "Status 39 (Total number of videos on sdcard)"], [8, 3, 0, "status-41", "Status 41 (The current status of Over The Air (OTA) update)"], [8, 3, 0, "status-42", "Status 42 (Is there a pending request to cancel a firmware update download?)"], [8, 3, 0, "status-45", "Status 45 (Is locate camera feature active?)"], [8, 3, 0, "status-54", "Status 54 (Remaining space on the sdcard in Kilobytes)"], [8, 3, 0, "status-55", "Status 55 (Is preview stream supported in current recording/mode/secondary-stream?)"], [8, 3, 0, "status-56", "Status 56 (WiFi signal strength in bars)"], [8, 3, 0, "status-58", "Status 58 (The number of hilights in currently-encoding video (value is set to 0 when encoding stops))"], [8, 3, 0, "status-59", "Status 59 (Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops))"], [8, 3, 0, "status-6", "Status 6 (Is the system currently overheating?)"], [8, 3, 0, "status-65", "Status 65 (Liveview Exposure Select Mode)"], [8, 3, 0, "status-66", "Status 66 (Liveview Exposure Select: y-coordinate (percent))"], [8, 3, 0, "status-67", "Status 67 (Liveview Exposure Select: y-coordinate (percent))"], [8, 3, 0, "status-68", "Status 68 (Does the camera currently have a GPS lock?)"], [8, 3, 0, "status-69", "Status 69 (Is AP mode enabled?)"], [8, 3, 0, "status-70", "Status 70 (Internal battery level (percent))"], [8, 3, 0, "status-74", "Status 74 (Microphone Accessory status)"], [8, 3, 0, "status-75", "Status 75 (Digital Zoom level (percent))"], [8, 3, 0, "status-76", "Status 76 (Wireless Band)"], [8, 3, 0, "status-77", "Status 77 (Is Digital Zoom feature available?)"], [8, 3, 0, "status-78", "Status 78 (Are current video settings mobile friendly? (related to video compression and frame rate))"], [8, 3, 0, "status-79", "Status 79 (Is the camera currently in First Time Use (FTU) UI flow?)"], [8, 3, 0, "status-8", "Status 8 (Is the camera busy?)"], [8, 3, 0, "status-81", "Status 81 (Is 5GHz wireless band available?)"], [8, 3, 0, "status-82", "Status 82 (Is the system fully booted and ready to accept commands?)"], [8, 3, 0, "status-83", "Status 83 (Is the internal battery charged sufficiently to start Over The Air (OTA) update?)"], [8, 3, 0, "status-85", "Status 85 (Is the camera getting too cold to continue recording?)"], [8, 3, 0, "status-86", "Status 86 (Rotational orientation of the camera)"], [8, 3, 0, "status-88", "Status 88 (Is this camera model capable of zooming while encoding?)"], [8, 3, 0, "status-89", "Status 89 (Current Flatmode ID)"], [8, 3, 0, "status-9", "Status 9 (Is Quick Capture feature enabled?)"], [8, 3, 0, "status-93", "Status 93 (Current Video Preset (ID))"], [8, 3, 0, "status-94", "Status 94 (Current Photo Preset (ID))"], [8, 3, 0, "status-95", "Status 95 (Current Time Lapse Preset (ID))"], [8, 3, 0, "status-97", "Status 97 (Current Preset (ID))"], [8, 3, 0, "status-98", "Status 98 (Preset Modified Status, which contains an event ID and a Preset (Group) ID)"], [8, 3, 0, "status-99", "Status 99 (The number of Live Bursts can be captured with current settings before sdcard is full)"]], "Status 101 (Is Capture Delay currently active (i.e": [[8, 3, 0, "status-101", " counting down)?)"]], "Status 105 (Camera lens type (reflects changes to lens settings such as 162, 189, 194, ..": [[8, 3, 0, "status-105", "))"]], "Status 28 (Wireless Pairing State": [[8, 3, 0, "status-28", " Each bit contains state information (see WirelessPairingStateFlags))"]], "Status 29 (SSID of the AP the camera is currently connected to": [[8, 3, 0, "status-29", " On BLE connection, value is big-endian byte-encoded int32)"]], "Status 30 (The camera's WiFi SSID": [[8, 3, 0, "status-30", " On BLE connection, value is big-endian byte-encoded int32)"]], "Status 49 (The current timelapse interval countdown value (e.g. 5...4...3...2...1..": [[8, 3, 0, "status-49", "))"]], "Status 60 (The minimum time between camera status updates (milliseconds)": [[8, 3, 0, "status-60", " Best practice is to not poll for status more often than this)"]], "Status 96 (Current Preset Group (ID) (corresponds to ui_mode_groups in settings": [[8, 3, 0, "status-96", "json))"]]}, "objnames": {"0": ["operation", "Proto", "Proto"], "1": ["operation", "Operation", "Operation"], "2": ["operation", "Setting", "Setting"], "3": ["operation", "Status", "Status"]}, "objtypes": {"0": "operation:Proto", "1": "operation:Operation", "2": "operation:Setting", "3": "operation:Status"}, "terms": {"": [1, 2, 4, 5, 6, 7, 11, 12, 13, 14, 15], "0": [2, 6, 7, 12, 13, 14], "00": [2, 9, 12], "000": 8, "0001": 11, "0002": 11, "0002a5d5c51b": 11, "0003": 11, "0004": 11, "0005": 11, "001": 8, "0072": [11, 12], "0073": 11, "0074": [11, 12], "0075": 11, "0076": [11, 12], "0077": 11, "0090": 11, "0091": 11, "0092": 11, "01": [2, 6, 9, 12], "010": 8, "011": 8, "02": 2, "03": [2, 9], "04": 2, "05": 2, "07": 2, "0x0": 12, "0x01": [2, 13], "0x02": [0, 13], "0x03": [0, 13], "0x04": [0, 13], "0x05": [0, 2, 13], "0x0b": [0, 13], "0x0c": [0, 13], "0x0d": [2, 13], "0x0e": [6, 13], "0x0f": [2, 13], "0x10": [6, 13], "0x12": [6, 13], "0x13": [6, 13], "0x17": [2, 13], "0x18": [3, 13], "0x32": [6, 13], "0x3c": [6, 13], "0x3e": [5, 13], "0x40": [5, 13], "0x42": 2, "0x50": [2, 13], "0x51": [6, 13], "0x52": [6, 13], "0x53": [6, 13], "0x5b": [2, 13], "0x62": [6, 13], "0x64": [5, 13], "0x65": [1, 13], "0x66": [1, 13], "0x67": [1, 13], "0x69": [2, 13], "0x6b": [2, 13], "0x6d": [6, 13], "0x6e": [1, 13], "0x6f": [1, 13], "0x72": [5, 6, 13], "0x73": [6, 13], "0x74": [4, 13], "0x79": [4, 13], "0x82": [0, 6, 13], "0x83": [0, 13], "0x84": [0, 13], "0x85": [0, 13], "0x92": [6, 13], "0x93": [6, 13], "0xa2": [6, 13], "0xe4": [5, 13], "0xe5": [1, 13], "0xe6": [1, 13], "0xe7": [1, 13], "0xe9": [2, 13], "0xeb": [2, 13], "0xed": [6, 13], "0xee": [1, 13], "0xef": [1, 13], "0xf": 12, "0xf1": [1, 2, 4, 5, 13], "0xf2": [5, 13], "0xf3": [5, 13], "0xf4": [4, 13], "0xf5": [1, 4, 5, 6, 13], "0xf9": [4, 13], "0xfea6": 11, "1": [1, 2, 6, 7, 12, 13, 14], "10": [2, 7, 9, 12, 13, 14], "100": [7, 13, 14], "1000": 14, "1001": 14, "1002": 14, "101": [7, 13, 14], "102": [7, 13, 14], "103": [7, 13, 14], "104": [7, 13, 14], "105": [7, 13, 14], "106": [7, 13, 14], "107": [7, 13, 14], "108": [13, 14], "1080": 7, "109": 7, "10x": 8, "11": [6, 7, 13, 14], "110": [7, 13], "111": [7, 13], "112": [7, 13], "113": [7, 13], "114": [2, 7, 13, 14], "115": [7, 13], "116": [7, 13], "117": [7, 13], "118": [7, 13], "119": 7, "11e3": 11, "12": [2, 6, 7, 8, 14], "120": 7, "121": 13, "122": 13, "123": 13, "124": 7, "125": 7, "126": 7, "127": 7, "128": [11, 13], "129": 7, "13": [7, 13, 14], "130": 7, "131": 7, "132": 7, "133": 7, "134": 13, "135": 13, "136": 7, "137": 7, "14": [7, 14], "1440": 7, "15": [7, 14], "150": 13, "150x": 8, "151": 13, "15min": 15, "15x": 8, "16": [7, 14], "162": [5, 13], "167": 13, "17": [7, 13, 14], "171": 13, "172": 13, "173": [5, 13], "175": [5, 13], "176": 13, "177": [5, 13], "178": 13, "179": 13, "18": [7, 14], "180": [5, 8, 13], "1800x": 8, "182": 13, "183": 13, "184": 13, "186": [5, 13], "187": [5, 13], "189": [5, 13], "19": [7, 13, 14], "190": [5, 13], "191": [5, 13], "192": 13, "193": 13, "194": 13, "1f": 2, "1x": [7, 8], "2": [12, 13, 14], "20": [7, 12, 13, 14], "200": 7, "2023": 2, "21": [7, 13, 14], "22": [7, 13, 14], "23": [2, 6, 7, 13, 14], "24": [7, 13, 14], "240": 7, "240fp": 7, "25": [7, 14], "255": 12, "26": [7, 13, 14], "2674f7f65f78": 6, "27": [7, 13, 14], "270": 8, "28": [7, 13, 14], "29": [13, 14], "2x": [7, 8], "3": [2, 12, 13, 14], "30": [7, 13, 14], "300x": 8, "30min": 15, "30x": 8, "31": [2, 6, 12, 13, 14], "32": [13, 14], "33": [13, 14], "34": [13, 14], "35": [13, 14], "36": 14, "37": 14, "38": [13, 14], "39": [13, 14], "3k": 7, "4": [7, 12, 13, 14], "40": 14, "41": [13, 14], "42": [13, 14], "43": [13, 14], "44": 14, "45": [13, 14], "46": 14, "47": 14, "48": 14, "49": [13, 14], "4ghz": 7, "4k": 7, "4x": 7, "5": [7, 13, 14], "50": [7, 14], "50hz": 7, "51": 14, "52": 14, "53": 14, "54": [13, 14], "55": [9, 13, 14], "56": [6, 13, 14], "57": [9, 14], "58": [9, 13, 14], "59": [2, 6, 13, 14], "5ghz": [7, 13], "5k": 7, "5min": 15, "5x": 8, "6": [6, 7, 12, 13, 14], "60": [7, 9, 13, 14], "60hz": 7, "60x": 8, "61": 14, "62": [9, 14], "63": [2, 14], "64": 14, "65": [13, 14], "66": [13, 14], "67": [13, 14], "68": [13, 14], "69": [13, 14], "7": [2, 7, 8, 12, 14], "70": [9, 13, 14], "71": 14, "72": 14, "73": 14, "74": [13, 14], "75": [13, 14], "76": [13, 14], "77": [13, 14], "78": [13, 14], "79": [13, 14], "7k": 7, "8": [7, 11, 13, 14], "80": 14, "81": [13, 14], "8191": 12, "8192": 12, "82": [13, 14], "83": [13, 14], "84": 14, "85": [13, 14], "86": [13, 14], "87": 14, "88": [2, 13, 14], "89": [13, 14], "8x": 7, "9": [7, 13, 14], "90": [8, 14], "900x": 8, "9046": 11, "91": 14, "92": 14, "93": [13, 14], "94": [5, 13, 14], "95": [13, 14], "96": [13, 14], "97": [13, 14], "98": [5, 13, 14], "99": [6, 13, 14], "A": [0, 1, 5, 7, 12, 14, 15], "As": [4, 14], "At": 1, "For": [1, 2, 4, 7, 9, 11, 12, 15], "If": [2, 6, 7, 11, 12, 14, 15], "In": [1, 2, 7, 11, 12, 15], "It": 12, "NOT": 14, "No": [8, 14], "Not": [8, 14], "ON": [7, 11], "On": [0, 1, 2, 7, 13, 14], "One": 8, "The": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14], "Then": 9, "There": 12, "These": 7, "To": [0, 5, 8, 12], "aa8d": 11, "abil": 4, "abort": 8, "about": [1, 2, 4, 6, 14], "abov": [2, 6, 7, 9], "accept": [4, 13, 14, 15], "access": [1, 2, 4, 9, 11, 13, 14], "accessori": 13, "accommod": 12, "accomplish": [4, 12], "accordingli": [2, 14], "accumul": 12, "across": [1, 2, 4, 5, 14], "act": 1, "action": [0, 1, 2, 4, 5, 6, 12, 13], "activ": [5, 9, 13, 14, 15], "adapt": 14, "add": [3, 14], "addit": [4, 14], "addition": [1, 9, 14], "address": [1, 14], "adher": 7, "advertis": [2, 10, 14], "affect": 5, "after": [0, 2, 11, 12, 14, 15], "again": 11, "air": 13, "aliv": [2, 10, 13], "all": [1, 2, 6, 11, 12, 14], "allow": [1, 11], "alreadi": 14, "also": [1, 14], "altern": [7, 11, 12], "alwai": [5, 7, 9, 12, 14, 15], "an": [0, 1, 4, 6, 7, 9, 11, 12, 13, 14, 15], "analyt": [2, 13], "anamorph": 14, "ani": [2, 4, 5, 9, 14], "anoth": 7, "anti": 13, "ap": [0, 2, 11, 13, 14], "ap_mac_address": 6, "ap_mac_address_length": 6, "ap_ssid": 6, "ap_ssid_length": 6, "api": [5, 6, 14], "app": [2, 8, 14, 15], "appear": 14, "appropri": 12, "approxim": 13, "ar": [0, 1, 5, 6, 7, 9, 10, 11, 12, 13, 14], "arrai": [6, 12, 14], "arrow": [5, 14], "ascii": 14, "aspect": 13, "associ": [6, 9, 14], "assum": 9, "asynchron": [1, 4, 5, 11, 13, 14], "attain": 7, "attemp": 14, "attempt": [0, 8, 14], "auth": [1, 14], "authent": [0, 14], "author": 1, "auto": [2, 8, 13], "automat": [2, 14, 15], "avail": [0, 5, 9, 13, 14], "avoid": 12, "b5f9xxxx": 11, "back": [5, 14], "bad": 14, "band": 13, "bandwidth": 12, "bar": [13, 14], "base": 9, "basic": [1, 7, 9, 14], "batch": 14, "batteri": [2, 7, 13, 14], "becaus": [7, 14], "been": [0, 12, 14], "befor": [11, 12, 13, 14, 15], "begin": 4, "behavior": [2, 14, 15], "being": 14, "below": [5, 7, 9, 11, 12], "best": [2, 11, 13, 15], "between": [9, 13, 14, 15], "big": [12, 13], "bit": [0, 11, 13], "bitmask": [13, 14], "bitrat": 14, "black": [1, 6, 7, 9], "blacklist": 7, "ble": [2, 10, 12, 13], "bluetooth": [8, 9], "bool": 14, "boost": 7, "boot": [11, 13], "both": 2, "buffer": 12, "build": 11, "burst": 13, "busi": [13, 15], "button": [2, 14], "byte": [0, 2, 6, 12, 13, 14], "c1234567812345": 6, "ca": [1, 14], "cach": 11, "cafil": 1, "camera": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14], "camera_control": 14, "camera_control_statu": 14, "camera_external_control": 14, "camera_idl": 14, "can": [0, 1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14], "can_add_preset": 14, "cancel": [6, 13], "capabl": [1, 6, 9, 13], "capac": 13, "caption": [5, 14], "captur": [6, 13, 14, 15], "card": [13, 14], "case": [1, 5, 9, 14], "caus": [2, 11, 14], "cert": [1, 14], "certif": [13, 14], "chain": 1, "chang": [0, 1, 4, 5, 6, 7, 9, 13, 14, 15], "charact": 14, "characterist": [10, 12], "charg": 13, "claim": [2, 14, 15], "clear": [1, 13, 14], "click": 1, "client": [1, 2, 5, 11, 14, 15], "close": 14, "code": [2, 9], "cohn": [1, 13, 14], "cohn_act": 14, "cohn_provis": 14, "cohn_state_connectingtonetwork": 14, "cohn_state_error": 14, "cohn_state_exit": 14, "cohn_state_idl": 14, "cohn_state_init": 14, "cohn_state_invalid": 14, "cohn_state_networkconnect": 14, "cohn_state_networkdisconnect": 14, "cohn_unprovis": 14, "cold": 13, "collect": 5, "combin": 2, "command": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 14, 15], "common": 14, "commonli": 14, "commun": [1, 9, 10, 11], "complet": [0, 9, 13, 14], "compress": 13, "compris": [7, 12, 14], "configur": [0, 1, 2, 4, 10, 14], "connect": [0, 1, 2, 4, 11, 13, 14, 15], "consid": 12, "construct": 7, "contain": [1, 6, 7, 12, 13, 14], "contextu": [2, 14], "contigu": 14, "continu": 13, "control": [0, 1, 5, 9, 10, 11, 13, 14], "coordin": 13, "core": [9, 13], "correspond": [11, 13, 14], "count": [13, 14], "countdown": 13, "counter": 12, "creat": [1, 5, 13, 14], "creation": [1, 14], "credenti": 1, "crt": 1, "current": [0, 1, 2, 4, 5, 6, 7, 9, 12, 13, 14], "custom": [5, 13, 14], "custom1": 14, "custom2": 14, "custom3": 14, "custom_icon_id": 14, "custom_nam": [5, 14], "custom_title_id": 14, "dai": [2, 6], "data": [2, 6, 9, 10, 11], "date": [2, 6, 13], "date_tim": 2, "daylight": [2, 6], "dbm": 14, "dcim": [6, 14], "deciph": 10, "declar": 14, "default": [5, 8, 14], "defin": [2, 6, 7, 12, 14], "degre": 8, "delai": 13, "delet": [5, 14], "demo": 9, "demonstr": 9, "depacket": 12, "depend": [1, 5, 6, 7, 12, 14, 15], "deprec": 6, "deprecated_length": 6, "depth": 13, "describ": [0, 6, 8, 9, 12, 14], "descript": [11, 12], "deseri": 12, "desir": [9, 14], "detail": [2, 4, 7, 14], "detect": [0, 14], "determin": 12, "devic": [11, 13], "dhcp": 1, "differ": [5, 12], "digit": [9, 13], "directori": [6, 14], "disabl": [0, 2, 8, 14], "disconnect": 14, "discourag": 15, "discov": [11, 14], "discover": 11, "displai": [2, 13, 14], "dn": 14, "dns_primari": 14, "dns_secondari": 14, "do": [0, 11, 12, 14], "doc": [0, 1, 2, 4, 5, 6], "document": [6, 7, 10, 12], "doe": [0, 1, 11, 13, 14], "done": 11, "down": [2, 13], "download": [1, 13], "drop": 14, "dst": 2, "due": 14, "durat": 13, "dure": [0, 3, 11, 14], "dynam": [7, 11], "e": [1, 2, 5, 6, 13, 14, 15], "e7": 2, "each": [7, 11, 12, 13], "easi": [7, 13, 14], "either": [4, 5, 12, 14], "element": [6, 12, 13], "els": 12, "empti": 6, "enabl": [2, 5, 11, 13, 14], "encod": [3, 9, 13, 14, 15], "endian": [12, 13], "endur": 14, "energi": 9, "engag": 13, "english": 14, "enough": 14, "ensur": [0, 11], "entiti": [2, 8, 14], "entri": [0, 14], "enumpresetgroup": 5, "error": [12, 13, 14], "establish": 2, "event": 13, "everi": [2, 7], "exampl": [2, 7, 9, 11, 12, 15], "exit": [2, 5, 12, 14], "expir": 1, "exposur": 13, "extend": 7, "extern": [2, 8, 14], "extract": 12, "f": 12, "facebook": 4, "factori": [5, 11, 14], "fail": [5, 7, 8, 14], "failur": 7, "fals": [8, 14], "far": 13, "fea6": 11, "featur": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14], "fewer": 12, "ff": 2, "field": [6, 14], "file": [1, 7, 14], "filenam": [6, 14], "find": 5, "finish": [10, 14], "firmwar": [6, 7, 9, 13], "firmware_vers": 6, "firmware_version_length": 6, "first": [0, 1, 6, 7, 9, 11, 12, 13, 14], "flag": [11, 15], "flat_mode_broadcast_broadcast": 14, "flat_mode_broadcast_record": 14, "flat_mode_idl": 14, "flat_mode_live_burst": 14, "flat_mode_loop": 14, "flat_mode_night_lapse_photo": 14, "flat_mode_night_lapse_video": 14, "flat_mode_photo": 14, "flat_mode_photo_burst": 14, "flat_mode_photo_night": 14, "flat_mode_photo_singl": 14, "flat_mode_playback": 14, "flat_mode_setup": 14, "flat_mode_slomo": 14, "flat_mode_time_lapse_photo": 14, "flat_mode_time_lapse_video": 14, "flat_mode_time_warp_video": 14, "flat_mode_unknown": 14, "flat_mode_video": 14, "flat_mode_video_burst_slomo": 14, "flat_mode_video_light_paint": 14, "flat_mode_video_light_trail": 14, "flat_mode_video_star_trail": 14, "flatmod": [13, 14], "flicker": 13, "flow": 13, "flowchart": 12, "folder": 14, "follow": [1, 4, 7, 10, 11, 12, 14], "form": 12, "format": [8, 9, 12, 13, 14, 15], "found": [0, 5, 6, 7, 14], "fov": [9, 14], "fp": 7, "frame": 13, "french": 14, "frequenc": 14, "friendli": 13, "from": [2, 5, 6, 7, 8, 11, 12, 14], "ftu": 13, "full": [7, 13, 14], "fulli": 13, "function": [1, 9], "futur": [4, 14], "fw_preset_title_360_burst": 14, "fw_preset_title_360_night": 14, "fw_preset_title_360_night_lapse_photo": 14, "fw_preset_title_360_time_lapse_photo": 14, "fw_preset_title_max_2_night_laps": 14, "fw_preset_title_max_2_photo": 14, "fw_preset_title_max_2_time_laps": 14, "fw_preset_title_max_2_time_warp": 14, "fw_preset_title_max_2_video": 14, "g": [1, 5, 13, 14, 15], "gatewai": 14, "gatt": [10, 12], "gener": [1, 2, 4, 5, 14], "german": 14, "get": [0, 1, 4, 5, 6, 7, 13, 14, 15], "ghz": 8, "given": [7, 14], "global": [2, 14], "go": 2, "googl": 12, "gopro": [1, 2, 6, 8, 10, 11, 12, 13, 15], "goprorootca": 1, "gp": [11, 12, 13], "gp12345678": 6, "group": [6, 13, 14], "guarante": 7, "h21": 9, "h22": 9, "h23": [6, 9], "ha": [0, 1, 8, 12, 14], "had": 12, "handl": 2, "handshak": 14, "hard": 2, "hardwar": [6, 13], "have": [0, 1, 11, 12, 13], "hd9": 9, "hdmi": 8, "hdr": [7, 14], "header": [1, 14], "hemi": 14, "hemispher": 8, "here": [7, 12], "hero": 7, "hero10": [1, 9], "hero11": [1, 9], "hero12": [1, 6, 9], "hero9": [1, 9], "high": [1, 7], "highest": 7, "hilight": [9, 13], "hindsight": [9, 13], "home": [9, 14], "honor": 14, "horizon": 13, "hour": [2, 6, 7, 11], "how": [4, 9, 12, 13], "howev": 15, "http": [0, 1, 14], "hypersmooth": 13, "hyperview": 7, "hz": 7, "i": [0, 1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15], "icon": [5, 14], "icon_id": [5, 14], "id": [0, 1, 2, 3, 4, 5, 6, 9, 10, 12, 14], "identifi": 12, "idl": [2, 8, 14], "immedi": [0, 2, 5, 14], "inadvert": 2, "includ": [12, 14], "inclus": 14, "incom": 15, "incorrect": 14, "index": 14, "indic": [4, 11, 14], "indirectli": 1, "individu": [6, 7, 12, 14], "info": [6, 13, 14], "inform": [2, 6, 7, 11, 13, 14], "initi": [0, 4, 5, 6, 10, 14], "instal": 1, "instruct": 1, "int": 12, "int16": [2, 6], "int32": [13, 14], "integ": 14, "intend": [0, 14], "interact": [2, 14], "intern": [13, 14], "internet": [0, 14], "interv": 13, "interven": 8, "invalid": [12, 14], "ip": [1, 14], "ipaddress": 14, "is_capt": 14, "is_dst": [2, 6], "is_fix": 14, "is_modifi": 14, "iso": 8, "italian": 14, "its": [8, 12], "json": 13, "kbp": 14, "keep": [2, 10, 13], "keep_al": 2, "kilobyt": 13, "lai": 8, "languag": [9, 14], "laps": [5, 13], "larger": 12, "last": [6, 13, 14], "lcd": [2, 13], "leas": 1, "left": 8, "len": [5, 13, 14], "length": [6, 13, 14], "lens": [9, 13, 14], "lens_linear": 14, "lens_superview": 14, "lens_wid": 14, "less": 12, "level": [1, 12, 13, 14], "life": 2, "lifespan": 1, "light": 7, "limit": [11, 12], "linear": 7, "linux": [13, 14], "list": [0, 7, 9, 14], "live": [0, 9, 13, 14], "live_stream_bitr": 14, "live_stream_encod": 14, "live_stream_encode_support": 14, "live_stream_error": 14, "live_stream_error_camera_block": 14, "live_stream_error_createstream": 14, "live_stream_error_inputstream": 14, "live_stream_error_internet": 14, "live_stream_error_network": 14, "live_stream_error_non": 14, "live_stream_error_osnetwork": 14, "live_stream_error_outofmemori": 14, "live_stream_error_sd_card_ful": 14, "live_stream_error_sd_card_remov": 14, "live_stream_error_selectednetworktimeout": 14, "live_stream_error_ssl_handshak": 14, "live_stream_error_unknown": 14, "live_stream_lens_support": 14, "live_stream_lens_supported_arrai": 14, "live_stream_max_lens_unsupport": 14, "live_stream_maximum_stream_bitr": 14, "live_stream_minimum_stream_bitr": 14, "live_stream_state_complete_stay_on": 14, "live_stream_state_config": 14, "live_stream_state_failed_stay_on": 14, "live_stream_state_idl": 14, "live_stream_state_readi": 14, "live_stream_state_reconnect": 14, "live_stream_state_stream": 14, "live_stream_state_unavail": 14, "live_stream_statu": 14, "live_stream_window_size_supported_arrai": 14, "livestream": [4, 13, 14], "liveview": 13, "load": [2, 5, 13, 15], "local": [1, 2, 6, 13, 14], "locat": 13, "lock": [7, 13], "log": [7, 14], "logic": 2, "long": [5, 7, 14], "longer": 12, "longest": [7, 14], "look": 1, "low": [7, 9, 14], "mac": 14, "macaddress": 14, "maco": 1, "macro": 14, "mai": [7, 14, 15], "maintain": 15, "major": 6, "major_length": 6, "manag": [0, 9, 10, 11], "mani": [1, 2, 4, 5, 13, 14], "map": 12, "market": 9, "mask": 14, "match": 12, "max": [5, 8, 13, 14], "max_entri": 14, "maxim": [2, 12], "maximum": [7, 14], "maximum_bitr": 14, "mean": [7, 14], "media": [2, 4, 6, 13, 15], "meet": 13, "memori": 14, "menu": [2, 8, 14], "messag": [0, 1, 2, 4, 5, 6, 9, 10, 13, 14, 15], "meta": 14, "mhz": 14, "microphon": 13, "millisecond": 13, "min": 7, "mini": [1, 9], "minim": 9, "minimum": [9, 13, 14], "minimum_bitr": 14, "minor": 6, "minor_length": 6, "minut": [2, 6, 7, 13], "mo": 7, "mobil": 13, "mod": [5, 13], "mode": [0, 2, 4, 5, 9, 10, 13, 14], "model": [6, 9, 13, 14], "model_nam": 6, "model_name_length": 6, "model_numb": 6, "model_number_length": 6, "modifi": [13, 14], "moment": [3, 13], "month": [2, 6], "more": [1, 6, 7, 11, 12, 13, 14], "most": [1, 2, 9, 13, 14], "motion": 8, "mous": 1, "multipl": 12, "must": [1, 5, 8, 11, 12, 14], "mutabl": 14, "n": 12, "name": [5, 7, 8, 9, 14], "narrow": [7, 11], "nearli": 1, "necessari": [0, 7, 11, 12, 15], "need": [0, 1, 9, 11], "network": [0, 9, 11, 14], "never": [7, 8], "new": [0, 1, 5, 11, 13, 14], "next": 7, "night": [5, 13], "non": [5, 14], "none": 7, "noout": 1, "nope": 12, "note": [6, 12], "notif": [0, 1, 2, 4, 5, 6, 11, 13, 14], "notifi": [5, 11, 14], "notifprovisioningst": [0, 13], "notifstartscan": [0, 13], "notifycohnstatu": [1, 13], "notifylivestreamstatu": [4, 13], "notifypresetstatu": [5, 13], "number": [6, 13, 14], "obei": 14, "object": [0, 7, 12, 14], "occur": 14, "off": [2, 15], "offset": [2, 6], "often": [7, 13], "ok": [1, 8], "onc": [1, 11, 12], "one": [5, 6, 7, 8, 12, 14], "ongo": 6, "onli": [0, 3, 5, 6, 7, 8, 12, 14], "onto": 12, "open": [1, 6, 10, 12, 13], "openssl": 1, "oper": [8, 10, 13, 14], "option": [4, 5, 6, 7, 8, 12, 14], "order": [1, 2, 5, 7, 10, 11, 12, 15], "organ": 5, "orient": 13, "ota": 13, "other": [4, 15], "otherwis": [2, 12, 13], "out": 14, "outlin": 7, "outsid": [8, 14], "over": [1, 13], "overh": 13, "overrid": 14, "overview": 11, "p": 12, "packet": 10, "page": [2, 14], "paint": 7, "pair": [10, 12, 13], "paramet": [2, 5, 6, 7, 12], "pars": [11, 12], "part": [2, 6, 14], "parti": [2, 14, 15], "pass": [5, 14], "password": [1, 11, 14], "path": [1, 6, 14], "payload": [6, 10], "pc": 13, "pem": 14, "pend": 13, "per": [12, 13], "percent": 13, "perform": [1, 5, 9, 13, 14], "period": [0, 5, 14, 15], "peripher": 11, "permiss": 11, "pertain": 9, "photo": [5, 6, 9, 13, 14, 15], "physic": [2, 14], "pill": [5, 14], "platform": 4, "plug": 8, "point": [1, 2, 4, 9, 11, 13, 14], "poll": [4, 13], "portugues": 14, "possibl": [12, 14], "power": [2, 11, 13, 15], "practic": [2, 11, 13, 15], "prepend": 12, "present": [7, 13], "preset": [2, 7, 9, 13, 15], "preset_arrai": 14, "preset_group_arrai": 14, "preset_group_endurance_video_icon_id": 14, "preset_group_id_easy_photo_anamorphic_len": 14, "preset_group_id_easy_photo_hemi_len": 14, "preset_group_id_easy_photo_hemi_lens_2": 14, "preset_group_id_easy_photo_macro_len": 14, "preset_group_id_easy_photo_single_len": 14, "preset_group_id_easy_timelapse_anamorphic_len": 14, "preset_group_id_easy_timelapse_hemi_len": 14, "preset_group_id_easy_timelapse_hemi_lens_2": 14, "preset_group_id_easy_timelapse_macro_len": 14, "preset_group_id_easy_timelapse_single_len": 14, "preset_group_id_easy_video_anamorphic_len": 14, "preset_group_id_easy_video_endurance_single_len": 14, "preset_group_id_easy_video_hemi_len": 14, "preset_group_id_easy_video_hemi_lens_2": 14, "preset_group_id_easy_video_longest_battery_single_len": 14, "preset_group_id_easy_video_macro_len": 14, "preset_group_id_easy_video_single_len": 14, "preset_group_id_photo": 14, "preset_group_id_photo_anamorphic_len": 14, "preset_group_id_photo_hemi_len": 14, "preset_group_id_photo_hemi_lens_2": 14, "preset_group_id_photo_macro_len": 14, "preset_group_id_photo_single_len": 14, "preset_group_id_photo_spherical_len": 14, "preset_group_id_special_hemi": 14, "preset_group_id_special_hemi_lens_2": 14, "preset_group_id_special_intern": 14, "preset_group_id_special_spher": 14, "preset_group_id_timelaps": 14, "preset_group_id_timelapse_anamorphic_len": 14, "preset_group_id_timelapse_hemi_len": 14, "preset_group_id_timelapse_hemi_lens_2": 14, "preset_group_id_timelapse_macro_len": 14, "preset_group_id_timelapse_single_len": 14, "preset_group_id_timelapse_spherical_len": 14, "preset_group_id_video": 14, "preset_group_id_video_anamorphic_len": 14, "preset_group_id_video_anamorphic_lens_log": 14, "preset_group_id_video_anamorphic_lens_standard": 14, "preset_group_id_video_endurance_single_len": 14, "preset_group_id_video_hemi_len": 14, "preset_group_id_video_hemi_lens_2": 14, "preset_group_id_video_hemi_lens_2_log": 14, "preset_group_id_video_hemi_lens_2_standard": 14, "preset_group_id_video_longest_battery_single_len": 14, "preset_group_id_video_macro_len": 14, "preset_group_id_video_macro_lens_log": 14, "preset_group_id_video_macro_lens_standard": 14, "preset_group_id_video_single_len": 14, "preset_group_id_video_single_lens_hdr": 14, "preset_group_id_video_single_lens_log": 14, "preset_group_id_video_single_lens_standard": 14, "preset_group_id_video_spherical_len": 14, "preset_group_id_video_spherical_lens_log": 14, "preset_group_id_video_spherical_lens_standard": 14, "preset_group_long_bat_video_icon_id": 14, "preset_group_max_photo_icon_id": 14, "preset_group_max_timelapse_icon_id": 14, "preset_group_max_video_icon_id": 14, "preset_group_photo_icon_id": 14, "preset_group_timelapse_icon_id": 14, "preset_group_video_icon_id": 14, "preset_icon_360_burst": 14, "preset_icon_360_nightlaps": 14, "preset_icon_360_nightlapse_photo": 14, "preset_icon_360_photo": 14, "preset_icon_360_photo_night": 14, "preset_icon_360_timelaps": 14, "preset_icon_360_timelapse_photo": 14, "preset_icon_360_timewarp": 14, "preset_icon_360_video": 14, "preset_icon_act": 14, "preset_icon_activity_endur": 14, "preset_icon_air": 14, "preset_icon_bas": 14, "preset_icon_basic_quality_video": 14, "preset_icon_bik": 14, "preset_icon_bit": 14, "preset_icon_burst": 14, "preset_icon_burst_2": 14, "preset_icon_burst_slomo": 14, "preset_icon_c": 14, "preset_icon_chesti": 14, "preset_icon_cinemat": 14, "preset_icon_cinematic_endur": 14, "preset_icon_custom": 14, "preset_icon_easy_hdr_profil": 14, "preset_icon_easy_max_light_paint": 14, "preset_icon_easy_max_light_trail": 14, "preset_icon_easy_max_photo": 14, "preset_icon_easy_max_star_trail": 14, "preset_icon_easy_max_timewarp": 14, "preset_icon_easy_max_video": 14, "preset_icon_easy_standard_profil": 14, "preset_icon_ep": 14, "preset_icon_follow_cam": 14, "preset_icon_full_fram": 14, "preset_icon_helmet": 14, "preset_icon_highest_quality_video": 14, "preset_icon_indoor": 14, "preset_icon_light_paint": 14, "preset_icon_light_trail": 14, "preset_icon_live_burst": 14, "preset_icon_loop": 14, "preset_icon_max": 14, "preset_icon_max_light_paint": 14, "preset_icon_max_light_trail": 14, "preset_icon_max_photo": 14, "preset_icon_max_star_trail": 14, "preset_icon_max_timewarp": 14, "preset_icon_max_video": 14, "preset_icon_motor": 14, "preset_icon_mount": 14, "preset_icon_nightlaps": 14, "preset_icon_nightlapse_photo": 14, "preset_icon_outdoor": 14, "preset_icon_panorama": 14, "preset_icon_photo": 14, "preset_icon_photo_2": 14, "preset_icon_photo_night": 14, "preset_icon_pov": 14, "preset_icon_selfi": 14, "preset_icon_shaki": 14, "preset_icon_simple_night_photo": 14, "preset_icon_simple_super_photo": 14, "preset_icon_sk": 14, "preset_icon_slomo_endur": 14, "preset_icon_snail": 14, "preset_icon_snow": 14, "preset_icon_standard_endur": 14, "preset_icon_standard_quality_video": 14, "preset_icon_star": 14, "preset_icon_star_trail": 14, "preset_icon_stationary_1": 14, "preset_icon_stationary_2": 14, "preset_icon_stationary_3": 14, "preset_icon_stationary_4": 14, "preset_icon_surf": 14, "preset_icon_timelaps": 14, "preset_icon_timelapse_2": 14, "preset_icon_timelapse_photo": 14, "preset_icon_timewarp": 14, "preset_icon_timewarp_2": 14, "preset_icon_trail": 14, "preset_icon_travel": 14, "preset_icon_ultra_slo_mo": 14, "preset_icon_video": 14, "preset_icon_video_2": 14, "preset_icon_wat": 14, "preset_title_360_deg_burst": 14, "preset_title_360_deg_night_lapse_photo": 14, "preset_title_360_deg_night_lapse_video": 14, "preset_title_360_deg_night_photo": 14, "preset_title_360_deg_photo": 14, "preset_title_360_deg_time_lapse_photo": 14, "preset_title_360_deg_time_lapse_video": 14, "preset_title_360_deg_time_warp": 14, "preset_title_360_deg_video": 14, "preset_title_360_night_laps": 14, "preset_title_360_night_photo": 14, "preset_title_360_photo": 14, "preset_title_360_time_warp": 14, "preset_title_360_timelaps": 14, "preset_title_360_video": 14, "preset_title_act": 14, "preset_title_activity_endur": 14, "preset_title_air": 14, "preset_title_bas": 14, "preset_title_basic_quality_video": 14, "preset_title_bik": 14, "preset_title_bit": 14, "preset_title_burst": 14, "preset_title_burst_slomo": 14, "preset_title_c": 14, "preset_title_chesti": 14, "preset_title_cinemat": 14, "preset_title_cinematic_endur": 14, "preset_title_custom": 14, "preset_title_custom_cinemat": 14, "preset_title_custom_slomo": 14, "preset_title_d": 14, "preset_title_easy_hdr_profil": 14, "preset_title_easy_max_light_paint": 14, "preset_title_easy_max_light_trail": 14, "preset_title_easy_max_photo": 14, "preset_title_easy_max_star_trail": 14, "preset_title_easy_max_timewarp": 14, "preset_title_easy_max_video": 14, "preset_title_easy_standard_profil": 14, "preset_title_ep": 14, "preset_title_extended_batteri": 14, "preset_title_follow_cam": 14, "preset_title_fpv": 14, "preset_title_full_fram": 14, "preset_title_hdr": 14, "preset_title_helmet": 14, "preset_title_highest_qu": 14, "preset_title_highest_quality_video": 14, "preset_title_indoor": 14, "preset_title_landscap": 14, "preset_title_light_paint": 14, "preset_title_light_trail": 14, "preset_title_live_burst": 14, "preset_title_log": 14, "preset_title_longest_batteri": 14, "preset_title_loop": 14, "preset_title_max": 14, "preset_title_max_lens_timewarp": 14, "preset_title_max_lens_video": 14, "preset_title_max_light_paint": 14, "preset_title_max_light_trail": 14, "preset_title_max_photo": 14, "preset_title_max_star_trail": 14, "preset_title_max_timewarp": 14, "preset_title_max_video": 14, "preset_title_motor": 14, "preset_title_mount": 14, "preset_title_night": 14, "preset_title_night_laps": 14, "preset_title_outdoor": 14, "preset_title_pano_time_laps": 14, "preset_title_panorama": 14, "preset_title_photo": 14, "preset_title_photo_2": 14, "preset_title_pov": 14, "preset_title_selfi": 14, "preset_title_shaki": 14, "preset_title_simple_night_photo": 14, "preset_title_simple_super_photo": 14, "preset_title_simple_time_warp": 14, "preset_title_simple_video": 14, "preset_title_simple_video_endur": 14, "preset_title_sk": 14, "preset_title_slomo": 14, "preset_title_slomo_endur": 14, "preset_title_snow": 14, "preset_title_standard": 14, "preset_title_standard_endur": 14, "preset_title_standard_quality_video": 14, "preset_title_star": 14, "preset_title_star_trail": 14, "preset_title_stationary_1": 14, "preset_title_stationary_2": 14, "preset_title_stationary_3": 14, "preset_title_stationary_4": 14, "preset_title_surf": 14, "preset_title_time_laps": 14, "preset_title_time_warp": 14, "preset_title_time_warp_2": 14, "preset_title_trail": 14, "preset_title_travel": 14, "preset_title_tripod": 14, "preset_title_ultra_slo_mo": 14, "preset_title_user_defined_custom_nam": [5, 14], "preset_title_video": 14, "preset_title_vlog": 14, "preset_title_wat": 14, "press": [2, 5, 14], "prevent": [2, 15], "preview": 13, "previous": [0, 7, 14], "primari": [13, 14], "pro": 7, "procedur": [11, 12], "process": [1, 11], "profil": [13, 14], "program": 9, "programmat": 2, "properti": [1, 14], "protobuf": [0, 1, 2, 4, 5, 6, 9, 10], "protocol": [9, 11], "provid": 1, "provis": [0, 13, 14], "provisioning_aborted_by_system": 14, "provisioning_cancelled_by_us": 14, "provisioning_error_eula_block": 14, "provisioning_error_failed_to_associ": 14, "provisioning_error_no_internet": 14, "provisioning_error_password_auth": 14, "provisioning_error_unsupported_typ": 14, "provisioning_never_start": 14, "provisioning_st": 14, "provisioning_start": 14, "provisioning_success_new_ap": 14, "provisioning_success_old_ap": 14, "provisioning_unknown": 14, "pseudocod": 12, "public": 9, "purpos": 1, "put": [2, 4, 11], "qualiti": 7, "queri": [1, 4, 5, 7, 8, 9, 10, 11, 15], "quick": [1, 13], "rate": 13, "ratio": 13, "re": [7, 11, 14], "reach": 2, "read": [9, 10, 11], "readi": [4, 10, 13, 14], "realtim": 8, "receiv": [0, 6, 9, 11, 12, 14], "recent": [9, 13], "reclaim": [2, 14], "reconnect": 14, "record": [3, 13], "refer": 10, "reflect": 13, "regardless": 14, "regist": [1, 4, 5, 6, 13, 14], "register_cohn_statu": 14, "register_live_stream_statu": 14, "register_live_stream_status_bitr": 14, "register_live_stream_status_error": 14, "register_live_stream_status_mod": 14, "register_live_stream_status_statu": 14, "register_preset_statu": 14, "register_preset_status_preset": 14, "register_preset_status_preset_group_arrai": 14, "regularli": 2, "reject": [7, 9, 14, 15], "rel": [6, 14], "relat": 13, "releas": 7, "relev": [0, 9, 11, 12], "remain": 13, "remot": 13, "remov": [8, 14], "reorder": [5, 14], "replac": 1, "report": 6, "repres": [7, 14], "represent": 14, "request": [0, 1, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14], "requestclearcohncert": [1, 13], "requestcohncert": [1, 13], "requestconnect": [0, 13], "requestconnectnew": [0, 13], "requestcreatecohncert": [1, 13], "requestcustompresetupd": [5, 13], "requestgetapentri": [0, 13], "requestgetcohnstatu": [1, 13], "requestgetlastcapturedmedia": [6, 13], "requestgetlivestreamstatu": [4, 13], "requestgetpresetstatu": [5, 13], "requestsetcameracontrolstatu": [2, 13], "requestsetcohnset": [1, 13], "requestsetlivestreammod": [4, 13], "requestsetturboact": [2, 13], "requeststartscan": [0, 13], "requir": [1, 11, 14], "reserv": [6, 12], "reset": [1, 2, 5, 11, 12], "resolut": [13, 14], "respect": 12, "respond": 12, "respons": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14], "response_length": 6, "responsecohncert": [1, 13], "responseconnect": [0, 13], "responseconnectnew": [0, 13], "responsegener": [1, 2, 4, 5, 13], "responsegetapentri": [0, 13], "responselastcapturedmedia": [6, 13], "responsestartscan": [0, 13], "result": [0, 6, 7, 9, 12, 13, 14], "result_argument_invalid": 14, "result_argument_out_of_bound": 14, "result_ill_form": 14, "result_not_support": 14, "result_resource_not_avail": 14, "result_resource_not_availbl": 14, "result_success": 14, "result_unknown": 14, "return": [0, 1, 2, 5, 6, 14], "right": [1, 8], "room": 14, "root": [1, 14], "rotat": 13, "rough": 13, "router": 1, "row": [7, 12], "rtmp": [4, 14], "rule": 7, "russian": 14, "saturdai": 6, "save": [2, 6, 14], "scan": [0, 11, 13, 14], "scan_entry_flag": 14, "scan_flag_associ": 14, "scan_flag_authent": 14, "scan_flag_best_ssid": 14, "scan_flag_configur": [0, 14], "scan_flag_open": 14, "scan_flag_unsupported_typ": 14, "scan_id": 14, "scanning_aborted_by_system": 14, "scanning_cancelled_by_us": 14, "scanning_never_start": 14, "scanning_st": 14, "scanning_start": 14, "scanning_success": 14, "scanning_unknown": 14, "schedul": 13, "schema": 7, "scheme": 12, "screen": [2, 14], "sd": [13, 14], "sdcard": [6, 13, 14, 15], "second": [2, 6, 13, 14], "secondari": [13, 14], "section": [6, 8, 9, 10, 11, 12], "secur": 1, "see": [1, 4, 6, 7, 9, 11, 12, 13], "select": 13, "send": [2, 5, 9, 12, 14, 15], "sent": [0, 4, 5, 6, 11, 12, 14], "serial": [0, 2, 12, 14], "serial_numb": 6, "serial_number_length": 6, "server": 14, "servic": 11, "set": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 14, 15], "setting_arrai": 14, "settingid": [7, 13], "setup": [9, 10, 14], "short": 7, "shorthand": 11, "should": [9, 11, 15], "shutter": [2, 4, 13], "side": 8, "sign": 1, "signal": [13, 14, 15], "signal_frequency_mhz": 14, "signal_strength_bar": 14, "simultan": 15, "sinc": 13, "singl": [6, 12, 14], "site": 4, "size": 12, "sleep": [2, 11, 13], "slo": 7, "slow": 8, "so": [11, 13], "social": 4, "some": [0, 1, 2, 12, 15], "sourc": [0, 1, 2, 4, 5, 6, 14], "space": 13, "spanish": 14, "special": 14, "specif": [1, 15], "specifi": [5, 12, 13, 14], "speed": 13, "spheric": 14, "split": 12, "spreadsheet": 7, "ssid": [11, 13, 14], "ssl": [1, 14], "sta": [0, 14], "stack": 14, "standard": [7, 14], "star": 7, "start": [0, 2, 4, 6, 12, 13, 14], "start_index": 14, "starting_bitr": 14, "startup": 14, "state": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14], "static": 14, "static_ip": 14, "station": [0, 4, 14], "stationari": 7, "statu": [0, 1, 2, 4, 6, 10, 12, 14, 15], "status": [6, 9, 12, 14], "step": [1, 11], "still": 2, "stop": [4, 13, 14], "storag": 13, "store": 11, "stream": [0, 9, 13, 14], "streamer": 14, "strength": [13, 14], "string": [6, 8, 12, 14], "structur": 12, "submenu": 5, "subnet": 14, "subscrib": 11, "subscript": 11, "subsequ": [9, 11, 12], "success": [12, 13, 14], "suffici": 13, "summar": 12, "summari": 14, "sundai": 6, "super": 7, "superset": [7, 14], "superview": 7, "support": [0, 1, 2, 4, 6, 7, 11, 13, 14], "suppos": 7, "swap": 8, "swedish": 14, "switch": 14, "synchron": [4, 5, 14], "system": [1, 13, 14, 15], "tabl": [5, 9, 10, 11, 12], "take": 14, "taken": 13, "tap": 2, "task": 14, "tell": [2, 14, 15], "terminologi": 12, "text": [1, 14], "than": [12, 13, 15], "thei": 12, "therebi": 5, "therefor": [0, 15], "thi": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15], "thing": 1, "third": [2, 14, 15], "those": 6, "three": 8, "through": [1, 9, 10], "throughout": 12, "time": [2, 6, 11, 13, 14, 15], "timelaps": [13, 14], "timeout": 14, "timeout_second": 14, "timer": 2, "timewarp": 7, "timezon": [2, 6], "titl": [5, 14], "title_id": [5, 14], "title_numb": 14, "tl": [1, 14], "tlv": [2, 3, 5, 6, 7, 12], "too": 13, "top": 12, "total": [13, 14], "total_configured_ssid": 14, "total_entri": 14, "track": 2, "trail": 13, "transfer": [2, 13, 14], "tri": 7, "trigger": [0, 1, 14], "triplet": 12, "tripod": 7, "true": 8, "trust": 1, "try": 9, "turbo": [2, 13, 14], "tutori": [9, 12], "twitch": 4, "two": [1, 8, 11, 12], "type": [0, 1, 2, 3, 4, 5, 6, 7, 10, 13, 14], "typespec": 14, "u": 12, "ubuntu": 1, "ui": [2, 5, 11, 13, 14], "ui_mode_group": 13, "uint16": [2, 6], "uint32": 5, "uint8": [2, 6, 7], "ultra": 7, "un": 2, "unavail": 14, "undefin": [9, 15], "under": 6, "understand": 9, "unknown": [8, 14], "unless": [12, 15], "unregist": [6, 13, 14], "unregister_live_stream_statu": 14, "unregister_preset_statu": 14, "unset": [4, 15], "unsign": 6, "until": 4, "up": 11, "updat": [1, 2, 5, 6, 9, 13, 14], "upon": 11, "upright": 8, "upsid": 8, "url": [4, 14], "us": [0, 1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 15], "usb": 13, "user": [2, 5, 7, 9, 14, 15], "user_defin": 14, "usernam": [1, 14], "usual": [7, 14], "utc": [2, 6], "utf": 14, "util": 1, "uuid": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12], "v01": 9, "v4": 12, "valid": [1, 7, 11, 14], "valu": [1, 2, 5, 6, 7, 9, 13, 14], "value_length": 7, "variabl": [7, 12], "variou": [6, 9, 10], "vehicl": 7, "verifi": 8, "version": [6, 7, 9, 12, 13], "vertic": 7, "via": [0, 1, 2, 4, 5, 6, 7, 9, 11, 13, 14], "video": [5, 6, 9, 13, 14, 15], "wa": [7, 11, 13, 14], "wai": 11, "wait": [11, 14, 15], "wake": 11, "walk": 9, "warp": 13, "webcam": 13, "weekdai": 6, "well": 9, "were": 5, "when": [1, 2, 5, 6, 12, 13, 14], "whenev": 6, "where": [0, 9, 12], "whether": [2, 5, 11, 12, 14], "which": [0, 1, 2, 5, 11, 13, 14], "while": [0, 3, 9, 11, 13, 14, 15], "whitelist": 7, "who": 14, "wide": 7, "widescreen": 7, "wifi": [2, 11, 13, 14], "window": 1, "window_s": 14, "window_size_1080": 14, "window_size_480": 14, "window_size_720": 14, "wireless": 13, "wirelesspairingstateflag": 13, "wish": [2, 14, 15], "within": [5, 14], "without": [1, 2, 6], "work": [7, 12], "worksheet": 7, "write": [11, 13], "x509": 1, "xxxx": 11, "y": 13, "ye": 6, "year": [1, 2, 6], "yet": 14, "youtub": 4, "zero": [0, 2, 5, 8, 14], "zone": 14, "zoom": 13}, "titles": ["Access Point", "Camera on the Home Network", "Control", "Hilights", "Live Streaming", "Presets", "Query", "Settings", "Statuses", "Welcome to Open GoPro BLE API\u2019s documentation!", "Protocol", "BLE Setup", "Data Protocol", "ID Tables", "Protobuf Documentation", "State Management"], "titleterms": {"": [8, 9], "0": 8, "1": 8, "10": 8, "100": 8, "101": 8, "102": 8, "103": 8, "104": 8, "105": 8, "106": 8, "107": 8, "108": [7, 8], "11": 8, "110": 8, "111": 8, "112": 8, "113": 8, "114": 8, "115": 8, "116": 8, "117": 8, "118": 8, "121": 7, "122": 7, "123": 7, "128": 7, "13": [8, 12], "134": 7, "135": 7, "150": 7, "151": 7, "16": 12, "162": [7, 8], "167": 7, "17": 8, "171": 7, "172": 7, "173": 7, "175": 7, "176": 7, "177": 7, "178": 7, "179": 7, "180": 7, "182": 7, "183": 7, "184": 7, "186": 7, "187": 7, "189": [7, 8], "19": 8, "190": 7, "191": 7, "192": 7, "193": 7, "194": 8, "2": [7, 8], "20": 8, "21": 8, "22": 8, "23": 8, "24": 8, "26": 8, "27": 8, "28": 8, "29": 8, "3": [7, 8], "30": 8, "31": 8, "32": 8, "33": 8, "34": 8, "35": 8, "38": 8, "39": 8, "4": 8, "41": 8, "42": 8, "43": 7, "45": 8, "49": 8, "5": [8, 12], "54": 8, "55": 8, "56": 8, "58": 8, "59": [7, 8], "5ghz": 8, "6": 8, "60": 8, "65": 8, "66": 8, "67": 8, "68": 8, "69": 8, "70": 8, "74": 8, "75": 8, "76": 8, "77": 8, "78": 8, "79": 8, "8": 8, "81": 8, "82": 8, "83": [7, 8], "85": 8, "86": 8, "88": 8, "89": 8, "9": 8, "93": 8, "94": 8, "95": 8, "96": 8, "97": 8, "98": 8, "99": 8, "On": 8, "The": 8, "accept": 8, "access": [0, 8], "accessori": 8, "action": 8, "activ": 8, "advertis": 11, "air": 8, "aliv": 15, "an": 8, "anti": 7, "ap": 8, "api": 9, "approxim": 8, "ar": 8, "aspect": 7, "auto": 7, "avail": 8, "band": [7, 8], "bar": 8, "batteri": 8, "befor": 8, "best": 8, "between": 8, "big": 8, "bit": [7, 8, 12], "bitmask": 8, "ble": [8, 9, 11], "boot": 8, "burst": 8, "busi": 8, "byte": 8, "camera": [1, 7, 8, 9, 15], "can": 8, "cancel": 8, "capabl": [7, 8], "capac": 8, "captur": 8, "card": 8, "certif": 1, "chang": 8, "characterist": 11, "charg": 8, "cold": 8, "command": [8, 12, 13], "complet": 8, "compress": 8, "configur": 11, "connect": 8, "contain": 8, "continu": [8, 12], "control": [2, 7, 8, 15], "coordin": 8, "core": 8, "correspond": 8, "count": 8, "countdown": 8, "current": 8, "data": 12, "deciph": 12, "delai": 8, "depth": 7, "detail": 1, "devic": 8, "digit": 8, "disconnect": 0, "displai": 8, "document": [9, 14], "doe": 8, "down": 8, "download": 8, "durat": [7, 8], "e": 8, "each": 8, "enabl": [7, 8], "encod": 8, "endian": 8, "engag": 8, "enum": 14, "enumcameracontrolstatu": 14, "enumcohnnetworkst": 14, "enumcohnstatu": 14, "enumflatmod": 14, "enumlen": 14, "enumlivestreamerror": 14, "enumlivestreamstatu": 14, "enumpresetgroup": 14, "enumpresetgroupicon": 14, "enumpreseticon": 14, "enumpresettitl": 14, "enumprovis": 14, "enumregisterlivestreamstatu": 14, "enumregisterpresetstatu": 14, "enumresultgener": 14, "enumscan": 14, "enumscanentryflag": 14, "enumwindows": 14, "error": 8, "event": 8, "exposur": 8, "extend": 12, "far": 8, "featur": 8, "fi": 7, "finish": 11, "firmwar": 8, "first": 8, "flatmod": 8, "flicker": 7, "flow": 8, "format": 7, "fov": 7, "frame": [7, 8], "friendli": 8, "from": 0, "ftu": 8, "full": 8, "fulli": 8, "g": 8, "gatt": 11, "gener": [9, 12], "get": [8, 9], "gopro": 9, "gp": [7, 8], "group": [5, 8], "have": 8, "header": 12, "hilight": [3, 8], "hindsight": [7, 8], "home": 1, "horizon": 7, "how": 8, "hypersmooth": 7, "i": 8, "id": [7, 8, 13], "inform": 8, "int32": 8, "intern": 8, "interv": [7, 8], "json": [7, 8], "keep": 15, "kilobyt": 8, "laps": [7, 8], "last": 8, "lcd": 8, "len": [7, 8], "length": [7, 12], "level": [7, 8], "limit": 9, "linux": 8, "live": [4, 8], "liveview": 8, "locat": 8, "lock": 8, "manag": 15, "mani": 8, "max": 7, "media": [8, 14], "meet": 8, "messag": [11, 12], "microphon": 8, "millisecond": 8, "minimum": 8, "minut": 8, "mobil": 8, "mod": [7, 8], "mode": [7, 8, 11], "model": 8, "modifi": [5, 8], "more": 8, "most": 8, "network": 1, "night": 7, "notifprovisioningst": 14, "notifstartscan": 14, "notifycohnstatu": 14, "notifylivestreamstatu": 14, "notifypresetstatu": 14, "number": 8, "off": 7, "often": 8, "open": 9, "oper": [0, 1, 2, 3, 4, 5, 6, 7], "orient": 8, "ota": 8, "otherwis": 8, "over": 8, "overh": 8, "packet": 12, "pair": [8, 11], "payload": 12, "pc": 8, "pend": 8, "per": 7, "percent": 8, "perform": 7, "photo": [7, 8], "point": [0, 8], "poll": 8, "practic": 8, "present": 8, "preset": [5, 8, 14], "presetgroup": 14, "presetset": 14, "preview": 8, "primari": 8, "procedur": 1, "profil": 7, "protobuf": [12, 13, 14], "protocol": [10, 12], "provis": [1, 8], "queri": [6, 12, 13], "quick": 8, "rang": 14, "rate": [7, 8], "ratio": 7, "readi": [8, 15], "recent": 8, "record": 8, "reflect": 8, "relat": 8, "remain": 8, "remot": 8, "request": 8, "requestclearcohncert": 14, "requestcohncert": 14, "requestconnect": 14, "requestconnectnew": 14, "requestcreatecohncert": 14, "requestcustompresetupd": 14, "requestgetallpresetstatu": 14, "requestgetapentri": 14, "requestgetcohnstatu": 14, "requestgetlastcapturedmedia": 14, "requestgetlivestreamstatu": 14, "requestgetpresetstatu": 14, "requestreleasenetwork": 14, "requestsetcameracontrolstatu": 14, "requestsetcohnset": 14, "requestsetlivestreammod": 14, "requestsetturboact": 14, "requeststartscan": 14, "resolut": 7, "responsecohncert": 14, "responseconnect": 14, "responseconnectnew": 14, "responsegener": 14, "responsegetapentri": 14, "responselastcapturedmedia": 14, "responsestartscan": 14, "rotat": 8, "rough": 8, "scan": 8, "scanentri": 14, "schedul": 8, "sd": 8, "sdcard": 8, "second": [7, 8], "secondari": 8, "see": 8, "select": 8, "send": 11, "set": [7, 8, 13], "setup": 11, "signal": 8, "sinc": 8, "so": 8, "space": 8, "specifi": 8, "speed": [7, 8], "ssid": 8, "start": [8, 9], "state": [8, 15], "statu": [5, 8, 13], "status": 8, "stop": 8, "storag": 8, "stream": [4, 8], "strength": 8, "success": 8, "suffici": 8, "support": [8, 9], "system": 8, "tabl": 13, "taken": 8, "than": 8, "thi": 8, "time": 8, "timelaps": 8, "too": 8, "total": 8, "trail": 7, "transfer": 8, "turbo": 8, "type": [8, 12], "ui": 8, "ui_mode_group": 8, "updat": 8, "us": 8, "usb": 8, "valu": [8, 12], "verifi": 1, "version": 8, "via": 8, "video": [7, 8], "view": 1, "wa": 8, "warp": 8, "welcom": 9, "when": 8, "which": 8, "while": 8, "wi": 7, "wifi": 8, "wireless": 8, "wirelesspairingstateflag": 8, "write": 8, "xlsx": 7, "y": 8, "zoom": 8}}) \ No newline at end of file +Search.setIndex({"alltitles": {"Access Point": [[0, "access-point"]], "Advertisements": [[11, "advertisements"]], "Anti-Flicker (134)": [[7, "anti-flicker-134"]], "Are Wireless Connections enabled? (17)": [[8, "are-wireless-connections-enabled-17"]], "Are current video settings mobile friendly? (related to video compression and frame rate) (78)": [[8, "are-current-video-settings-mobile-friendly-related-to-video-compression-and-frame-rate-78"]], "Aspect Ratio (108)": [[7, "aspect-ratio-108"]], "Aspect Ratio (192)": [[7, "aspect-ratio-192"]], "Auto Off (59)": [[7, "auto-off-59"]], "BLE Characteristics": [[11, "ble-characteristics"]], "BLE Setup": [[11, "ble-setup"]], "Bit Depth (183)": [[7, "bit-depth-183"]], "Bit Rate (182)": [[7, "bit-rate-182"]], "Camera Capabilities": [[7, "camera-capabilities"]], "Camera Control": [[15, "camera-control"]], "Camera Readiness": [[15, "camera-readiness"]], "Camera control over USB state (116)": [[8, "camera-control-over-usb-state-116"]], "Camera control status ID (114)": [[8, "camera-control-status-id-114"]], "Camera lens type (reflects changes to lens settings such as 162, 189, 194, \u2026) (105)": [[8, "camera-lens-type-reflects-changes-to-lens-settings-such-as-162-189-194-105"]], "Camera on the Home Network": [[1, "camera-on-the-home-network"]], "Certificates": [[1, "certificates"]], "Command IDs": [[13, "command-ids"]], "Commands": [[12, "commands"]], "Configure GATT Characteristics": [[11, "configure-gatt-characteristics"]], "Continuation Packets": [[12, "continuation-packets"]], "Control": [[2, "control"]], "Controls (175)": [[7, "controls-175"]], "Current Flatmode ID (89)": [[8, "current-flatmode-id-89"]], "Current Photo Preset (ID) (94)": [[8, "current-photo-preset-id-94"]], "Current Preset (ID) (97)": [[8, "current-preset-id-97"]], "Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json) (96)": [[8, "current-preset-group-id-corresponds-to-ui-mode-groups-in-settings-json-96"]], "Current Time Lapse Preset (ID) (95)": [[8, "current-time-lapse-preset-id-95"]], "Current Video Preset (ID) (93)": [[8, "current-video-preset-id-93"]], "Data Protocol": [[12, "data-protocol"]], "Decipher Message Payload Type": [[12, "decipher-message-payload-type"]], "Digital Zoom level (percent) (75)": [[8, "digital-zoom-level-percent-75"]], "Disconnect from Access Point": [[0, "disconnect-from-access-point"]], "Display Mod Status (bitmasked) (110)": [[8, "display-mod-status-bitmasked-110"]], "Does sdcard meet specified minimum write speed? (111)": [[8, "does-sdcard-meet-specified-minimum-write-speed-111"]], "Does the camera currently have a GPS lock? (68)": [[8, "does-the-camera-currently-have-a-gps-lock-68"]], "Duration (172)": [[7, "duration-172"]], "EnumCOHNNetworkState": [[14, "enumcohnnetworkstate"]], "EnumCOHNStatus": [[14, "enumcohnstatus"]], "EnumCameraControlStatus": [[14, "enumcameracontrolstatus"]], "EnumFlatMode": [[14, "enumflatmode"]], "EnumLens": [[14, "enumlens"]], "EnumLiveStreamError": [[14, "enumlivestreamerror"]], "EnumLiveStreamStatus": [[14, "enumlivestreamstatus"]], "EnumPresetGroup": [[14, "enumpresetgroup"]], "EnumPresetGroupIcon": [[14, "enumpresetgroupicon"]], "EnumPresetIcon": [[14, "enumpreseticon"]], "EnumPresetTitle": [[14, "enumpresettitle"]], "EnumProvisioning": [[14, "enumprovisioning"]], "EnumRegisterLiveStreamStatus": [[14, "enumregisterlivestreamstatus"]], "EnumRegisterPresetStatus": [[14, "enumregisterpresetstatus"]], "EnumResultGeneric": [[14, "enumresultgeneric"]], "EnumScanEntryFlags": [[14, "enumscanentryflags"]], "EnumScanning": [[14, "enumscanning"]], "EnumWindowSize": [[14, "enumwindowsize"]], "Enums": [[14, "enums"]], "Extended (13-bit) Packets": [[12, "extended-13-bit-packets"]], "Extended (16-bit) Packets": [[12, "extended-16-bit-packets"]], "FOV (43)": [[7, "fov-43"]], "Finish Pairing": [[11, "finish-pairing"]], "Format (128)": [[7, "format-128"]], "Frames Per Second (3)": [[7, "frames-per-second-3"]], "Framing (193)": [[7, "framing-193"]], "GPS (83)": [[7, "gps-83"]], "General": [[9, "general"]], "General (5-bit) Packets": [[12, "general-5-bit-packets"]], "Getting Started": [[9, "getting-started"]], "Hilights": [[3, "hilights"]], "HindSight (167)": [[7, "hindsight-167"]], "Horizon Leveling (150)": [[7, "horizon-leveling-150"]], "Horizon Leveling (151)": [[7, "horizon-leveling-151"]], "How many minutes of video can be captured with current settings before sdcard is full (35)": [[8, "how-many-minutes-of-video-can-be-captured-with-current-settings-before-sdcard-is-full-35"]], "How many photos can be taken with current settings before sdcard is full (34)": [[8, "how-many-photos-can-be-taken-with-current-settings-before-sdcard-is-full-34"]], "Hypersmooth (135)": [[7, "hypersmooth-135"]], "ID Tables": [[13, "id-tables"]], "Internal battery level (percent) (70)": [[8, "internal-battery-level-percent-70"]], "Interval (171)": [[7, "interval-171"]], "Is 5GHz wireless band available? (81)": [[8, "is-5ghz-wireless-band-available-81"]], "Is AP mode enabled? (69)": [[8, "is-ap-mode-enabled-69"]], "Is Capture Delay currently active (i.e. counting down)? (101)": [[8, "is-capture-delay-currently-active-i-e-counting-down-101"]], "Is Digital Zoom feature available? (77)": [[8, "is-digital-zoom-feature-available-77"]], "Is LCD lock active? (11)": [[8, "is-lcd-lock-active-11"]], "Is Preview Stream enabled? (32)": [[8, "is-preview-stream-enabled-32"]], "Is Quick Capture feature enabled? (9)": [[8, "is-quick-capture-feature-enabled-9"]], "Is Scheduled Capture set? (108)": [[8, "is-scheduled-capture-set-108"]], "Is Turbo Transfer active? (113)": [[8, "is-turbo-transfer-active-113"]], "Is Video Hindsight Capture Active? (106)": [[8, "is-video-hindsight-capture-active-106"]], "Is a wireless remote control connected? (27)": [[8, "is-a-wireless-remote-control-connected-27"]], "Is locate camera feature active? (45)": [[8, "is-locate-camera-feature-active-45"]], "Is preview stream supported in current recording/mode/secondary-stream? (55)": [[8, "is-preview-stream-supported-in-current-recording-mode-secondary-stream-55"]], "Is the camera busy? (8)": [[8, "is-the-camera-busy-8"]], "Is the camera connected to a PC via USB? (115)": [[8, "is-the-camera-connected-to-a-pc-via-usb-115"]], "Is the camera currently in First Time Use (FTU) UI flow? (79)": [[8, "is-the-camera-currently-in-first-time-use-ftu-ui-flow-79"]], "Is the camera getting too cold to continue recording? (85)": [[8, "is-the-camera-getting-too-cold-to-continue-recording-85"]], "Is the internal battery charged sufficiently to start Over The Air (OTA) update? (83)": [[8, "is-the-internal-battery-charged-sufficiently-to-start-over-the-air-ota-update-83"]], "Is the system currently encoding? (10)": [[8, "is-the-system-currently-encoding-10"]], "Is the system currently overheating? (6)": [[8, "is-the-system-currently-overheating-6"]], "Is the system fully booted and ready to accept commands? (82)": [[8, "is-the-system-fully-booted-and-ready-to-accept-commands-82"]], "Is the system\u2019s Linux core active? (104)": [[8, "is-the-system-s-linux-core-active-104"]], "Is the system\u2019s internal battery present? (1)": [[8, "is-the-system-s-internal-battery-present-1"]], "Is there a pending request to cancel a firmware update download? (42)": [[8, "is-there-a-pending-request-to-cancel-a-firmware-update-download-42"]], "Is this camera model capable of zooming while encoding? (88)": [[8, "is-this-camera-model-capable-of-zooming-while-encoding-88"]], "JSON": [[7, "json"]], "Keep Alive": [[15, "keep-alive"]], "Lapse Mode (187)": [[7, "lapse-mode-187"]], "Lens (121)": [[7, "lens-121"]], "Lens (122)": [[7, "lens-122"]], "Lens (123)": [[7, "lens-123"]], "Limitations": [[9, "limitations"]], "Live Streaming": [[4, "live-streaming"]], "Liveview Exposure Select Mode (65)": [[8, "liveview-exposure-select-mode-65"]], "Liveview Exposure Select: y-coordinate (percent) (66)": [[8, "liveview-exposure-select-y-coordinate-percent-66"]], "Liveview Exposure Select: y-coordinate (percent) (67)": [[8, "liveview-exposure-select-y-coordinate-percent-67"]], "Max Lens Mod (189)": [[7, "max-lens-mod-189"]], "Max Lens Mod Enable (162)": [[7, "max-lens-mod-enable-162"]], "Max Lens Mod Enable (190)": [[7, "max-lens-mod-enable-190"]], "Media": [[14, "media"]], "Media Mod state (102)": [[8, "media-mod-state-102"]], "Message Payload": [[12, "message-payload"]], "Microphone Accessory status (74)": [[8, "microphone-accessory-status-74"]], "Night Photo (177)": [[7, "night-photo-177"]], "NotifProvisioningState": [[14, "notifprovisioningstate"]], "NotifStartScanning": [[14, "notifstartscanning"]], "NotifyCOHNStatus": [[14, "notifycohnstatus"]], "NotifyLiveStreamStatus": [[14, "notifylivestreamstatus"]], "NotifyPresetStatus": [[14, "notifypresetstatus"]], "Number of sdcard write speed errors since device booted (112)": [[8, "number-of-sdcard-write-speed-errors-since-device-booted-112"]], "Operations": [[0, "operations"], [1, "operations"], [2, "operations"], [3, "operations"], [4, "operations"], [5, "operations"], [6, "operations"], [7, "operations"]], "Packet Headers": [[12, "packet-headers"]], "Packetization": [[12, "packetization"]], "Pairing Mode": [[11, "pairing-mode"]], "Photo Mode (191)": [[7, "photo-mode-191"]], "Photo interval capture count (118)": [[8, "photo-interval-capture-count-118"]], "Preset": [[14, "preset"]], "Preset Groups": [[5, "preset-groups"]], "Preset Modified Status": [[5, "preset-modified-status"]], "Preset Modified Status, which contains an event ID and a Preset (Group) ID (98)": [[8, "preset-modified-status-which-contains-an-event-id-and-a-preset-group-id-98"]], "PresetGroup": [[14, "presetgroup"]], "PresetSetting": [[14, "presetsetting"]], "Presets": [[5, "presets"]], "Primary Storage Status (33)": [[8, "primary-storage-status-33"]], "Profiles (184)": [[7, "profiles-184"]], "Protobuf": [[12, "protobuf"]], "Protobuf Documentation": [[14, "protobuf-documentation"]], "Protobuf IDs": [[13, "protobuf-ids"]], "Protocol": [[10, "protocol"]], "Provisioning Procedure": [[1, "provisioning-procedure"]], "Queries": [[12, "queries"]], "Query": [[6, "query"]], "Query IDs": [[13, "query-ids"]], "Remaining space on the sdcard in Kilobytes (54)": [[8, "remaining-space-on-the-sdcard-in-kilobytes-54"]], "RequestCOHNCert": [[14, "requestcohncert"]], "RequestClearCOHNCert": [[14, "requestclearcohncert"]], "RequestConnect": [[14, "requestconnect"]], "RequestConnectNew": [[14, "requestconnectnew"]], "RequestCreateCOHNCert": [[14, "requestcreatecohncert"]], "RequestCustomPresetUpdate": [[14, "requestcustompresetupdate"]], "RequestGetApEntries": [[14, "requestgetapentries"]], "RequestGetCOHNStatus": [[14, "requestgetcohnstatus"]], "RequestGetLastCapturedMedia": [[14, "requestgetlastcapturedmedia"]], "RequestGetLiveStreamStatus": [[14, "requestgetlivestreamstatus"]], "RequestGetPresetStatus": [[14, "requestgetpresetstatus"]], "RequestReleaseNetwork": [[14, "requestreleasenetwork"]], "RequestSetCOHNSetting": [[14, "requestsetcohnsetting"]], "RequestSetCameraControlStatus": [[14, "requestsetcameracontrolstatus"]], "RequestSetLiveStreamMode": [[14, "requestsetlivestreammode"]], "RequestSetTurboActive": [[14, "requestsetturboactive"]], "RequestStartScan": [[14, "requeststartscan"]], "Resolution (2)": [[7, "resolution-2"]], "ResponseCOHNCert": [[14, "responsecohncert"]], "ResponseConnect": [[14, "responseconnect"]], "ResponseConnectNew": [[14, "responseconnectnew"]], "ResponseGeneric": [[14, "responsegeneric"]], "ResponseGetApEntries": [[14, "responsegetapentries"]], "ResponseGetApEntries::ScanEntry": [[14, "responsegetapentries-scanentry"]], "ResponseLastCapturedMedia": [[14, "responselastcapturedmedia"]], "ResponseStartScanning": [[14, "responsestartscanning"]], "Rotational orientation of the camera (86)": [[8, "rotational-orientation-of-the-camera-86"]], "Rough approximation of internal battery level in bars (or charging) (2)": [[8, "rough-approximation-of-internal-battery-level-in-bars-or-charging-2"]], "SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32 (29)": [[8, "ssid-of-the-ap-the-camera-is-currently-connected-to-on-ble-connection-value-is-big-endian-byte-encoded-int32-29"]], "Scheduled Capture Preset ID (107)": [[8, "scheduled-capture-preset-id-107"]], "Send Messages": [[11, "send-messages"]], "Setting IDs": [[7, "setting-ids"], [13, "setting-ids"]], "Settings": [[7, "settings"]], "Speed (176)": [[7, "speed-176"]], "State Management": [[15, "state-management"]], "State of current scan for WiFi Access Points (22)": [[8, "state-of-current-scan-for-wifi-access-points-22"]], "Status IDs": [[8, "status-ids"], [13, "status-ids"]], "Statuses": [[8, "statuses"]], "Supported Cameras": [[9, "supported-cameras"]], "The camera\u2019s WiFi SSID. On BLE connection, value is big-endian byte-encoded int32 (30)": [[8, "the-camera-s-wifi-ssid-on-ble-connection-value-is-big-endian-byte-encoded-int32-30"]], "The current status of Over The Air (OTA) update (41)": [[8, "the-current-status-of-over-the-air-ota-update-41"]], "The current timelapse interval countdown value (e.g. 5\u20264\u20263\u20262\u20261\u2026) (49)": [[8, "the-current-timelapse-interval-countdown-value-e-g-5-4-3-2-1-49"]], "The last type of pairing in which the camera was engaged (20)": [[8, "the-last-type-of-pairing-in-which-the-camera-was-engaged-20"]], "The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this (60)": [[8, "the-minimum-time-between-camera-status-updates-milliseconds-best-practice-is-to-not-poll-for-status-more-often-than-this-60"]], "The number of Live Bursts can be captured with current settings before sdcard is full (99)": [[8, "the-number-of-live-bursts-can-be-captured-with-current-settings-before-sdcard-is-full-99"]], "The number of hilights in currently-encoding video (value is set to 0 when encoding stops) (58)": [[8, "the-number-of-hilights-in-currently-encoding-video-value-is-set-to-0-when-encoding-stops-58"]], "The number of wireless devices connected to the camera (31)": [[8, "the-number-of-wireless-devices-connected-to-the-camera-31"]], "The pairing state of the camera (19)": [[8, "the-pairing-state-of-the-camera-19"]], "Time Warp Speed (103)": [[8, "time-warp-speed-103"]], "Time since boot (milliseconds) of last successful pairing complete action (21)": [[8, "time-since-boot-milliseconds-of-last-successful-pairing-complete-action-21"]], "Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops) (59)": [[8, "time-since-boot-milliseconds-of-most-recent-hilight-in-encoding-video-set-to-0-when-encoding-stops-59"]], "Time since boot (milliseconds) that the WiFi Access Point scan completed (23)": [[8, "time-since-boot-milliseconds-that-the-wifi-access-point-scan-completed-23"]], "Total SD card capacity in Kilobytes (117)": [[8, "total-sd-card-capacity-in-kilobytes-117"]], "Total number of Live Bursts on sdcard (100)": [[8, "total-number-of-live-bursts-on-sdcard-100"]], "Total number of photos on sdcard (38)": [[8, "total-number-of-photos-on-sdcard-38"]], "Total number of videos on sdcard (39)": [[8, "total-number-of-videos-on-sdcard-39"]], "Trail Length (179)": [[7, "trail-length-179"]], "Type Length Value": [[12, "type-length-value"]], "Verifying Certificate": [[1, "verifying-certificate"]], "Video Mode (180)": [[7, "video-mode-180"]], "Video Mode (186)": [[7, "video-mode-186"]], "Video Performance Modes (173)": [[7, "video-performance-modes-173"]], "View Certificate Details": [[1, "view-certificate-details"]], "Welcome to Open GoPro BLE API\u2019s documentation!": [[9, "welcome-to-open-gopro-ble-api-s-documentation"]], "When encoding video, this is the duration (seconds) of the video so far; 0 otherwise (13)": [[8, "when-encoding-video-this-is-the-duration-seconds-of-the-video-so-far-0-otherwise-13"]], "Wi-fi Band (178)": [[7, "wi-fi-band-178"]], "WiFi AP provisioning state (24)": [[8, "wifi-ap-provisioning-state-24"]], "WiFi signal strength in bars (56)": [[8, "wifi-signal-strength-in-bars-56"]], "Wireless Band (76)": [[8, "wireless-band-76"]], "Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags) (28)": [[8, "wireless-pairing-state-each-bit-contains-state-information-see-wirelesspairingstateflags-28"]], "Wireless remote control version (26)": [[8, "wireless-remote-control-version-26"]], "XLSX": [[7, "xlsx"]]}, "docnames": ["features/access_points", "features/cohn", "features/control", "features/hilights", "features/live_streaming", "features/presets", "features/query", "features/settings", "features/statuses", "index", "protocol", "protocol/ble_setup", "protocol/data_protocol", "protocol/id_tables", "protocol/protobuf", "protocol/state_management"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["features/access_points.rst", "features/cohn.rst", "features/control.rst", "features/hilights.rst", "features/live_streaming.rst", "features/presets.rst", "features/query.rst", "features/settings.rst", "features/statuses.rst", "index.rst", "protocol.rst", "protocol/ble_setup.rst", "protocol/data_protocol.rst", "protocol/id_tables.rst", "protocol/protobuf.rst", "protocol/state_management.rst"], "indexentries": {}, "objects": {"": [[14, 0, 0, "enumcohnnetworkstate", "EnumCOHNNetworkState"], [14, 0, 0, "enumcohnstatus", "EnumCOHNStatus"], [14, 0, 0, "enumcameracontrolstatus", "EnumCameraControlStatus"], [14, 0, 0, "enumflatmode", "EnumFlatMode"], [14, 0, 0, "enumlens", "EnumLens"], [14, 0, 0, "enumlivestreamerror", "EnumLiveStreamError"], [14, 0, 0, "enumlivestreamstatus", "EnumLiveStreamStatus"], [14, 0, 0, "enumpresetgroup", "EnumPresetGroup"], [14, 0, 0, "enumpresetgroupicon", "EnumPresetGroupIcon"], [14, 0, 0, "enumpreseticon", "EnumPresetIcon"], [14, 0, 0, "enumpresettitle", "EnumPresetTitle"], [14, 0, 0, "enumprovisioning", "EnumProvisioning"], [14, 0, 0, "enumregisterlivestreamstatus", "EnumRegisterLiveStreamStatus"], [14, 0, 0, "enumregisterpresetstatus", "EnumRegisterPresetStatus"], [14, 0, 0, "enumresultgeneric", "EnumResultGeneric"], [14, 0, 0, "enumscanentryflags", "EnumScanEntryFlags"], [14, 0, 0, "enumscanning", "EnumScanning"], [14, 0, 0, "enumwindowsize", "EnumWindowSize"], [14, 0, 0, "media", "Media"], [14, 0, 0, "notifprovisioningstate", "NotifProvisioningState"], [14, 0, 0, "notifstartscanning", "NotifStartScanning"], [14, 0, 0, "notifycohnstatus", "NotifyCOHNStatus"], [14, 0, 0, "notifylivestreamstatus", "NotifyLiveStreamStatus"], [14, 0, 0, "notifypresetstatus", "NotifyPresetStatus"], [14, 0, 0, "preset", "Preset"], [14, 0, 0, "presetgroup", "PresetGroup"], [14, 0, 0, "presetsetting", "PresetSetting"], [14, 0, 0, "requestcohncert", "RequestCOHNCert"], [14, 0, 0, "requestclearcohncert", "RequestClearCOHNCert"], [14, 0, 0, "requestconnect", "RequestConnect"], [14, 0, 0, "requestconnectnew", "RequestConnectNew"], [14, 0, 0, "requestcreatecohncert", "RequestCreateCOHNCert"], [14, 0, 0, "requestcustompresetupdate", "RequestCustomPresetUpdate"], [14, 0, 0, "requestgetapentries", "RequestGetApEntries"], [14, 0, 0, "requestgetcohnstatus", "RequestGetCOHNStatus"], [14, 0, 0, "requestgetlastcapturedmedia", "RequestGetLastCapturedMedia"], [14, 0, 0, "requestgetlivestreamstatus", "RequestGetLiveStreamStatus"], [14, 0, 0, "requestgetpresetstatus", "RequestGetPresetStatus"], [14, 0, 0, "requestreleasenetwork", "RequestReleaseNetwork"], [14, 0, 0, "requestsetcohnsetting", "RequestSetCOHNSetting"], [14, 0, 0, "requestsetcameracontrolstatus", "RequestSetCameraControlStatus"], [14, 0, 0, "requestsetlivestreammode", "RequestSetLiveStreamMode"], [14, 0, 0, "requestsetturboactive", "RequestSetTurboActive"], [14, 0, 0, "requeststartscan", "RequestStartScan"], [14, 0, 0, "responsecohncert", "ResponseCOHNCert"], [14, 0, 0, "responseconnect", "ResponseConnect"], [14, 0, 0, "responseconnectnew", "ResponseConnectNew"], [14, 0, 0, "responsegeneric", "ResponseGeneric"], [14, 0, 0, "responsegetapentries", "ResponseGetApEntries"], [14, 0, 0, "responselastcapturedmedia", "ResponseLastCapturedMedia"], [14, 0, 0, "responsestartscanning", "ResponseStartScanning"], [14, 0, 0, "scanentry", "ScanEntry"], [1, 1, 0, "clear-cohn-certificate", "clear cohn certificate"], [0, 1, 0, "connect-to-a-new-access-point", "connect to a new access point"], [0, 1, 0, "connect-to-provisioned-access-point", "connect to provisioned access point"], [1, 1, 0, "create-cohn-certificate", "create cohn certificate"], [0, 1, 0, "get-ap-scan-results", "get ap scan results"], [5, 1, 0, "get-available-presets", "get available presets"], [1, 1, 0, "get-cohn-certificate", "get cohn certificate"], [1, 1, 0, "get-cohn-status", "get cohn status"], [6, 1, 0, "get-date-time", "get date time"], [6, 1, 0, "get-hardware-info", "get hardware info"], [6, 1, 0, "get-last-captured-media", "get last captured media"], [4, 1, 0, "get-livestream-status", "get livestream status"], [6, 1, 0, "get-local-date-time", "get local date time"], [6, 1, 0, "get-open-gopro-version", "get open gopro version"], [6, 1, 0, "get-setting-capabilities", "get setting capabilities"], [6, 1, 0, "get-setting-values", "get setting values"], [6, 1, 0, "get-status-values", "get status values"], [3, 1, 0, "hilight-moment", "hilight moment"], [2, 1, 0, "keep-alive", "keep alive"], [5, 1, 0, "load-preset", "load preset"], [5, 1, 0, "load-preset-group", "load preset group"], [6, 1, 0, "register-for-setting-capability-updates", "register for setting capability updates"], [6, 1, 0, "register-for-setting-value-updates", "register for setting value updates"], [6, 1, 0, "register-for-status-value-updates", "register for status value updates"], [0, 1, 0, "scan-for-access-points", "scan for access points"], [2, 1, 0, "set-analytics", "set analytics"], [2, 1, 0, "set-ap-control", "set ap control"], [2, 1, 0, "set-camera-control", "set camera control"], [1, 1, 0, "set-cohn-setting", "set cohn setting"], [2, 1, 0, "set-date-time", "set date time"], [4, 1, 0, "set-livestream-mode", "set livestream mode"], [2, 1, 0, "set-local-date-time", "set local date time"], [7, 1, 0, "set-setting", "set setting"], [2, 1, 0, "set-shutter", "set shutter"], [2, 1, 0, "set-turbo-transfer", "set turbo transfer"], [2, 1, 0, "sleep", "sleep"], [6, 1, 0, "unregister-for-setting-capability-updates", "unregister for setting capability updates"], [6, 1, 0, "unregister-for-setting-value-updates", "unregister for setting value updates"], [6, 1, 0, "unregister-for-status-value-updates", "unregister for status value updates"], [5, 1, 0, "update-custom-preset", "update custom preset"], [7, 2, 0, "setting-108", "Setting 108 (Aspect Ratio)"], [7, 2, 0, "setting-121", "Setting 121 (Lens)"], [7, 2, 0, "setting-122", "Setting 122 (Lens)"], [7, 2, 0, "setting-123", "Setting 123 (Time Lapse Digital Lenses)"], [7, 2, 0, "setting-128", "Setting 128 (Media Format)"], [7, 2, 0, "setting-134", "Setting 134 (Anti-Flicker)"], [7, 2, 0, "setting-135", "Setting 135 (Hypersmooth)"], [7, 2, 0, "setting-150", "Setting 150 (Horizon Leveling)"], [7, 2, 0, "setting-151", "Setting 151 (Horizon Leveling)"], [7, 2, 0, "setting-162", "Setting 162 (Max Lens)"], [7, 2, 0, "setting-167", "Setting 167 (HindSight)"], [7, 2, 0, "setting-171", "Setting 171 (Interval)"], [7, 2, 0, "setting-172", "Setting 172 (Duration)"], [7, 2, 0, "setting-173", "Setting 173 (Video Performance Mode)"], [7, 2, 0, "setting-175", "Setting 175 (Controls)"], [7, 2, 0, "setting-176", "Setting 176 (Easy Mode Speed)"], [7, 2, 0, "setting-177", "Setting 177 (Enable Night Photo)"], [7, 2, 0, "setting-178", "Setting 178 (Wireless Band)"], [7, 2, 0, "setting-179", "Setting 179 (Trail Length)"], [7, 2, 0, "setting-180", "Setting 180 (Video Mode)"], [7, 2, 0, "setting-182", "Setting 182 (Bit Rate)"], [7, 2, 0, "setting-183", "Setting 183 (Bit Depth)"], [7, 2, 0, "setting-184", "Setting 184 (Profiles)"], [7, 2, 0, "setting-186", "Setting 186 (Video Mode)"], [7, 2, 0, "setting-187", "Setting 187 (Lapse Mode)"], [7, 2, 0, "setting-189", "Setting 189 (Max Lens Mod)"], [7, 2, 0, "setting-190", "Setting 190 (Max Lens Mod Enable)"], [7, 2, 0, "setting-191", "Setting 191 (Photo Mode)"], [7, 2, 0, "setting-192", "Setting 192 (Aspect Ratio)"], [7, 2, 0, "setting-193", "Setting 193 (Framing)"], [7, 2, 0, "setting-2", "Setting 2 (Resolution)"], [7, 2, 0, "setting-3", "Setting 3 (Frames Per Second)"], [7, 2, 0, "setting-43", "Setting 43 (Webcam Digital Lenses)"], [7, 2, 0, "setting-59", "Setting 59 (Auto Power Down)"], [7, 2, 0, "setting-83", "Setting 83 (GPS)"], [8, 3, 0, "status-1", "Status 1 (Is the system's internal battery present?)"], [8, 3, 0, "status-10", "Status 10 (Is the system currently encoding?)"], [8, 3, 0, "status-100", "Status 100 (Total number of Live Bursts on sdcard)"], [8, 3, 0, "status-102", "Status 102 (Media Mod state)"], [8, 3, 0, "status-103", "Status 103 (Time Warp Speed)"], [8, 3, 0, "status-104", "Status 104 (Is the system's Linux core active?)"], [8, 3, 0, "status-106", "Status 106 (Is Video Hindsight Capture Active?)"], [8, 3, 0, "status-107", "Status 107 (Scheduled Capture Preset ID)"], [8, 3, 0, "status-108", "Status 108 (Is Scheduled Capture set?)"], [8, 3, 0, "status-11", "Status 11 (Is LCD lock active?)"], [8, 3, 0, "status-110", "Status 110 (Display Mod Status (bitmasked))"], [8, 3, 0, "status-111", "Status 111 (Does sdcard meet specified minimum write speed?)"], [8, 3, 0, "status-112", "Status 112 (Number of sdcard write speed errors since device booted)"], [8, 3, 0, "status-113", "Status 113 (Is Turbo Transfer active?)"], [8, 3, 0, "status-114", "Status 114 (Camera control status ID)"], [8, 3, 0, "status-115", "Status 115 (Is the camera connected to a PC via USB?)"], [8, 3, 0, "status-116", "Status 116 (Camera control over USB state)"], [8, 3, 0, "status-117", "Status 117 (Total SD card capacity in Kilobytes)"], [8, 3, 0, "status-118", "Status 118 (Photo interval capture count)"], [8, 3, 0, "status-13", "Status 13 (When encoding video, this is the duration (seconds) of the video so far; 0 otherwise)"], [8, 3, 0, "status-17", "Status 17 (Are Wireless Connections enabled?)"], [8, 3, 0, "status-19", "Status 19 (The pairing state of the camera)"], [8, 3, 0, "status-2", "Status 2 (Rough approximation of internal battery level in bars (or charging))"], [8, 3, 0, "status-20", "Status 20 (The last type of pairing in which the camera was engaged)"], [8, 3, 0, "status-21", "Status 21 (Time since boot (milliseconds) of last successful pairing complete action)"], [8, 3, 0, "status-22", "Status 22 (State of current scan for WiFi Access Points)"], [8, 3, 0, "status-23", "Status 23 (Time since boot (milliseconds) that the WiFi Access Point scan completed)"], [8, 3, 0, "status-24", "Status 24 (WiFi AP provisioning state)"], [8, 3, 0, "status-26", "Status 26 (Wireless remote control version)"], [8, 3, 0, "status-27", "Status 27 (Is a wireless remote control connected?)"], [8, 3, 0, "status-31", "Status 31 (The number of wireless devices connected to the camera)"], [8, 3, 0, "status-32", "Status 32 (Is Preview Stream enabled?)"], [8, 3, 0, "status-33", "Status 33 (Primary Storage Status)"], [8, 3, 0, "status-34", "Status 34 (How many photos can be taken with current settings before sdcard is full)"], [8, 3, 0, "status-35", "Status 35 (How many minutes of video can be captured with current settings before sdcard is full)"], [8, 3, 0, "status-38", "Status 38 (Total number of photos on sdcard)"], [8, 3, 0, "status-39", "Status 39 (Total number of videos on sdcard)"], [8, 3, 0, "status-41", "Status 41 (The current status of Over The Air (OTA) update)"], [8, 3, 0, "status-42", "Status 42 (Is there a pending request to cancel a firmware update download?)"], [8, 3, 0, "status-45", "Status 45 (Is locate camera feature active?)"], [8, 3, 0, "status-54", "Status 54 (Remaining space on the sdcard in Kilobytes)"], [8, 3, 0, "status-55", "Status 55 (Is preview stream supported in current recording/mode/secondary-stream?)"], [8, 3, 0, "status-56", "Status 56 (WiFi signal strength in bars)"], [8, 3, 0, "status-58", "Status 58 (The number of hilights in currently-encoding video (value is set to 0 when encoding stops))"], [8, 3, 0, "status-59", "Status 59 (Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops))"], [8, 3, 0, "status-6", "Status 6 (Is the system currently overheating?)"], [8, 3, 0, "status-65", "Status 65 (Liveview Exposure Select Mode)"], [8, 3, 0, "status-66", "Status 66 (Liveview Exposure Select: y-coordinate (percent))"], [8, 3, 0, "status-67", "Status 67 (Liveview Exposure Select: y-coordinate (percent))"], [8, 3, 0, "status-68", "Status 68 (Does the camera currently have a GPS lock?)"], [8, 3, 0, "status-69", "Status 69 (Is AP mode enabled?)"], [8, 3, 0, "status-70", "Status 70 (Internal battery level (percent))"], [8, 3, 0, "status-74", "Status 74 (Microphone Accessory status)"], [8, 3, 0, "status-75", "Status 75 (Digital Zoom level (percent))"], [8, 3, 0, "status-76", "Status 76 (Wireless Band)"], [8, 3, 0, "status-77", "Status 77 (Is Digital Zoom feature available?)"], [8, 3, 0, "status-78", "Status 78 (Are current video settings mobile friendly? (related to video compression and frame rate))"], [8, 3, 0, "status-79", "Status 79 (Is the camera currently in First Time Use (FTU) UI flow?)"], [8, 3, 0, "status-8", "Status 8 (Is the camera busy?)"], [8, 3, 0, "status-81", "Status 81 (Is 5GHz wireless band available?)"], [8, 3, 0, "status-82", "Status 82 (Is the system fully booted and ready to accept commands?)"], [8, 3, 0, "status-83", "Status 83 (Is the internal battery charged sufficiently to start Over The Air (OTA) update?)"], [8, 3, 0, "status-85", "Status 85 (Is the camera getting too cold to continue recording?)"], [8, 3, 0, "status-86", "Status 86 (Rotational orientation of the camera)"], [8, 3, 0, "status-88", "Status 88 (Is this camera model capable of zooming while encoding?)"], [8, 3, 0, "status-89", "Status 89 (Current Flatmode ID)"], [8, 3, 0, "status-9", "Status 9 (Is Quick Capture feature enabled?)"], [8, 3, 0, "status-93", "Status 93 (Current Video Preset (ID))"], [8, 3, 0, "status-94", "Status 94 (Current Photo Preset (ID))"], [8, 3, 0, "status-95", "Status 95 (Current Time Lapse Preset (ID))"], [8, 3, 0, "status-97", "Status 97 (Current Preset (ID))"], [8, 3, 0, "status-98", "Status 98 (Preset Modified Status, which contains an event ID and a Preset (Group) ID)"], [8, 3, 0, "status-99", "Status 99 (The number of Live Bursts can be captured with current settings before sdcard is full)"]], "Status 101 (Is Capture Delay currently active (i.e": [[8, 3, 0, "status-101", " counting down)?)"]], "Status 105 (Camera lens type (reflects changes to lens settings such as 162, 189, 194, ..": [[8, 3, 0, "status-105", "))"]], "Status 28 (Wireless Pairing State": [[8, 3, 0, "status-28", " Each bit contains state information (see WirelessPairingStateFlags))"]], "Status 29 (SSID of the AP the camera is currently connected to": [[8, 3, 0, "status-29", " On BLE connection, value is big-endian byte-encoded int32)"]], "Status 30 (The camera's WiFi SSID": [[8, 3, 0, "status-30", " On BLE connection, value is big-endian byte-encoded int32)"]], "Status 49 (The current timelapse interval countdown value (e.g. 5...4...3...2...1..": [[8, 3, 0, "status-49", "))"]], "Status 60 (The minimum time between camera status updates (milliseconds)": [[8, 3, 0, "status-60", " Best practice is to not poll for status more often than this)"]], "Status 96 (Current Preset Group (ID) (corresponds to ui_mode_groups in settings": [[8, 3, 0, "status-96", "json))"]]}, "objnames": {"0": ["operation", "Proto", "Proto"], "1": ["operation", "Operation", "Operation"], "2": ["operation", "Setting", "Setting"], "3": ["operation", "Status", "Status"]}, "objtypes": {"0": "operation:Proto", "1": "operation:Operation", "2": "operation:Setting", "3": "operation:Status"}, "terms": {"": [1, 2, 4, 5, 6, 7, 11, 12, 13, 14, 15], "0": [2, 6, 7, 12, 13, 14], "00": [2, 9, 12], "000": 8, "0001": 11, "0002": 11, "0002a5d5c51b": 11, "0003": 11, "0004": 11, "0005": 11, "001": 8, "0072": [11, 12], "0073": 11, "0074": [11, 12], "0075": 11, "0076": [11, 12], "0077": 11, "0090": 11, "0091": 11, "0092": 11, "01": [2, 6, 9, 12], "010": 8, "011": 8, "02": 2, "03": [2, 9], "04": 2, "05": 2, "07": 2, "0x0": 12, "0x01": [2, 13], "0x02": [0, 13], "0x03": [0, 13], "0x04": [0, 13], "0x05": [0, 2, 13], "0x0b": [0, 13], "0x0c": [0, 13], "0x0d": [2, 13], "0x0e": [6, 13], "0x0f": [2, 13], "0x10": [6, 13], "0x12": [6, 13], "0x13": [6, 13], "0x17": [2, 13], "0x18": [3, 13], "0x32": [6, 13], "0x3c": [6, 13], "0x3e": [5, 13], "0x40": [5, 13], "0x42": 2, "0x50": [2, 13], "0x51": [6, 13], "0x52": [6, 13], "0x53": [6, 13], "0x5b": [2, 13], "0x62": [6, 13], "0x64": [5, 13], "0x65": [1, 13], "0x66": [1, 13], "0x67": [1, 13], "0x69": [2, 13], "0x6b": [2, 13], "0x6d": [6, 13], "0x6e": [1, 13], "0x6f": [1, 13], "0x72": [5, 6, 13], "0x73": [6, 13], "0x74": [4, 13], "0x79": [4, 13], "0x82": [0, 6, 13], "0x83": [0, 13], "0x84": [0, 13], "0x85": [0, 13], "0x92": [6, 13], "0x93": [6, 13], "0xa2": [6, 13], "0xe4": [5, 13], "0xe5": [1, 13], "0xe6": [1, 13], "0xe7": [1, 13], "0xe9": [2, 13], "0xeb": [2, 13], "0xed": [6, 13], "0xee": [1, 13], "0xef": [1, 13], "0xf": 12, "0xf1": [1, 2, 4, 5, 13], "0xf2": [5, 13], "0xf3": [5, 13], "0xf4": [4, 13], "0xf5": [1, 4, 5, 6, 13], "0xf9": [4, 13], "0xfea6": 11, "1": [1, 2, 6, 7, 12, 13, 14], "10": [2, 7, 9, 12, 13, 14], "100": [7, 13], "1000": 14, "1001": 14, "1002": 14, "101": [7, 13], "102": [7, 13], "103": [7, 13], "104": [7, 13], "105": [7, 13], "106": [7, 13], "107": [7, 13], "108": 13, "1080": 7, "109": 7, "10x": 8, "11": [6, 7, 13, 14], "110": [7, 13], "111": [7, 13], "112": [7, 13], "113": [7, 13], "114": [2, 7, 13, 14], "115": [7, 13], "116": [7, 13], "117": [7, 13], "118": [7, 13], "119": 7, "11e3": 11, "12": [2, 6, 7, 8, 14], "120": 7, "121": 13, "122": 13, "123": 13, "124": 7, "125": 7, "126": 7, "127": 7, "128": [11, 13], "129": 7, "13": [7, 13, 14], "130": 7, "131": 7, "132": 7, "133": 7, "134": 13, "135": 13, "136": 7, "137": 7, "14": [7, 14], "1440": 7, "15": [7, 14], "150": 13, "150x": 8, "151": 13, "15min": 15, "15x": 8, "16": [7, 14], "162": [5, 13], "167": 13, "17": [7, 13, 14], "171": 13, "172": 13, "173": [5, 13], "175": [5, 13], "176": 13, "177": [5, 13], "178": 13, "179": 13, "18": [7, 14], "180": [5, 8, 13], "1800x": 8, "182": 13, "183": 13, "184": 13, "186": [5, 13], "187": [5, 13], "189": [5, 13], "19": [7, 13, 14], "190": [5, 13], "191": [5, 13], "192": 13, "193": 13, "194": 13, "1f": 2, "1x": [7, 8], "2": [12, 13, 14], "20": [7, 12, 13, 14], "200": 7, "2023": 2, "21": [7, 13, 14], "22": [7, 13, 14], "23": [2, 6, 7, 13, 14], "24": [7, 13, 14], "240": 7, "240fp": 7, "25": [7, 14], "255": 12, "26": [7, 13, 14], "2674f7f65f78": 6, "27": [7, 13, 14], "270": 8, "28": [7, 13, 14], "29": [13, 14], "2x": [7, 8], "3": [2, 12, 13, 14], "30": [7, 13, 14], "300x": 8, "30min": 15, "30x": 8, "31": [2, 6, 12, 13, 14], "32": [13, 14], "33": [13, 14], "34": [13, 14], "35": [13, 14], "36": 14, "37": 14, "38": [13, 14], "39": [13, 14], "3k": 7, "4": [7, 12, 13, 14], "40": 14, "41": [13, 14], "42": [13, 14], "43": 13, "45": 13, "49": 13, "4ghz": 7, "4k": 7, "4x": 7, "5": [7, 13, 14], "50": 7, "50hz": 7, "54": 13, "55": [9, 13], "56": [6, 13], "57": 9, "58": [9, 13, 14], "59": [2, 6, 13, 14], "5ghz": [7, 13], "5k": 7, "5min": 15, "5x": 8, "6": [6, 7, 12, 13, 14], "60": [7, 9, 13, 14], "60hz": 7, "60x": 8, "61": 14, "62": [9, 14], "63": [2, 14], "64": 14, "65": [13, 14], "66": [13, 14], "67": [13, 14], "68": [13, 14], "69": [13, 14], "7": [2, 7, 8, 12, 14], "70": [9, 13, 14], "71": 14, "72": 14, "73": 14, "74": [13, 14], "75": [13, 14], "76": [13, 14], "77": [13, 14], "78": [13, 14], "79": [13, 14], "7k": 7, "8": [7, 11, 13, 14], "81": 13, "8191": 12, "8192": 12, "82": [13, 14], "83": [13, 14], "85": [13, 14], "86": 13, "88": [2, 13], "89": 13, "8x": 7, "9": [7, 13, 14], "90": 8, "900x": 8, "9046": 11, "93": [13, 14], "94": [5, 13, 14], "95": 13, "96": 13, "97": 13, "98": [5, 13], "99": [6, 13], "A": [0, 1, 5, 7, 12, 14, 15], "As": [4, 14], "At": 1, "For": [1, 2, 4, 7, 9, 11, 12, 15], "If": [2, 6, 7, 11, 12, 14, 15], "In": [1, 2, 7, 11, 12, 15], "It": 12, "NOT": 14, "No": [8, 14], "Not": [8, 14], "ON": [7, 11], "On": [0, 1, 2, 7, 13, 14], "One": 8, "The": [0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14], "Then": 9, "There": 12, "These": 7, "To": [0, 5, 8, 12], "aa8d": 11, "abil": 4, "abort": 8, "about": [1, 2, 4, 6, 14], "abov": [2, 6, 7, 9], "accept": [4, 13, 14, 15], "access": [1, 2, 4, 9, 11, 13, 14], "accessori": 13, "accommod": 12, "accomplish": [4, 12], "accordingli": [2, 14], "accumul": 12, "across": [1, 2, 4, 5, 14], "act": 1, "action": [0, 1, 2, 4, 5, 6, 12, 13], "activ": [5, 9, 13, 14, 15], "adapt": 14, "add": [3, 14], "addit": [4, 14], "addition": [1, 9, 14], "address": [1, 14], "adher": 7, "advertis": [2, 10, 14], "affect": 5, "after": [0, 2, 11, 12, 14, 15], "again": 11, "air": 13, "aliv": [2, 10, 13], "all": [1, 2, 6, 11, 12], "allow": [1, 11], "alreadi": 14, "also": [1, 14], "altern": [7, 11, 12], "alwai": [5, 7, 9, 12, 14, 15], "an": [0, 1, 4, 6, 7, 9, 11, 12, 13, 14, 15], "analyt": [2, 13], "ani": [2, 4, 5, 9, 14], "anoth": 7, "anti": 13, "ap": [0, 2, 11, 13, 14], "ap_mac_address": 6, "ap_mac_address_length": 6, "ap_ssid": 6, "ap_ssid_length": 6, "api": [5, 6, 14], "app": [2, 8, 14, 15], "appear": 14, "appropri": 12, "approxim": 13, "ar": [0, 1, 5, 6, 7, 9, 10, 11, 12, 13, 14], "arrai": [6, 12, 14], "arrow": [5, 14], "ascii": 14, "aspect": 13, "associ": [6, 9, 14], "assum": 9, "asynchron": [1, 4, 5, 11, 13, 14], "attain": 7, "attemp": 14, "attempt": [0, 8, 14], "auth": [1, 14], "authent": [0, 14], "author": 1, "auto": [2, 8, 13], "automat": [2, 14, 15], "avail": [0, 5, 9, 13, 14], "avoid": 12, "b5f9xxxx": 11, "back": [5, 14], "bad": 14, "band": 13, "bandwidth": 12, "bar": [13, 14], "base": 9, "basic": [1, 7, 9, 14], "batch": 14, "batteri": [2, 7, 13], "becaus": [7, 14], "been": [0, 12, 14], "befor": [11, 12, 13, 14, 15], "begin": 4, "behavior": [2, 14, 15], "being": 14, "below": [5, 7, 9, 11, 12], "best": [2, 11, 13, 15], "between": [9, 13, 14, 15], "big": [12, 13], "bit": [0, 11, 13], "bitmask": [13, 14], "bitrat": 14, "black": [1, 6, 7, 9], "blacklist": 7, "ble": [2, 10, 12, 13], "bluetooth": [8, 9], "bool": 14, "boost": 7, "boot": [11, 13], "both": 2, "buffer": 12, "build": 11, "burst": 13, "busi": [13, 15], "button": [2, 14], "byte": [0, 2, 6, 12, 13, 14], "c1234567812345": 6, "ca": [1, 14], "cach": 11, "cafil": 1, "camera": [0, 2, 4, 5, 6, 10, 11, 12, 13, 14], "camera_control": 14, "camera_control_statu": 14, "camera_external_control": 14, "camera_idl": 14, "can": [0, 1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14], "can_add_preset": 14, "cancel": [6, 13], "capabl": [1, 6, 9, 13], "capac": 13, "caption": [5, 14], "captur": [6, 13, 14, 15], "card": [13, 14], "case": [1, 5, 9, 14], "caus": [2, 11, 14], "cert": [1, 14], "certif": [13, 14], "chain": 1, "chang": [0, 1, 4, 5, 6, 7, 9, 13, 14, 15], "charact": 14, "characterist": [10, 12], "charg": 13, "claim": [2, 14, 15], "clear": [1, 13, 14], "click": 1, "client": [1, 2, 5, 11, 14, 15], "close": 14, "code": [2, 9], "cohn": [1, 13, 14], "cohn_act": 14, "cohn_provis": 14, "cohn_state_connectingtonetwork": 14, "cohn_state_error": 14, "cohn_state_exit": 14, "cohn_state_idl": 14, "cohn_state_init": 14, "cohn_state_invalid": 14, "cohn_state_networkconnect": 14, "cohn_state_networkdisconnect": 14, "cohn_unprovis": 14, "cold": 13, "collect": 5, "combin": 2, "command": [0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 14, 15], "common": 14, "commonli": 14, "commun": [1, 9, 10, 11], "complet": [0, 9, 13, 14], "compress": 13, "compris": [7, 12, 14], "configur": [0, 1, 2, 4, 10, 14], "connect": [0, 1, 2, 4, 11, 13, 14, 15], "consid": 12, "construct": 7, "contain": [1, 6, 7, 12, 13, 14], "contextu": [2, 14], "continu": 13, "control": [0, 1, 5, 9, 10, 11, 13, 14], "coordin": 13, "core": [9, 13], "correspond": [11, 13, 14], "count": [13, 14], "countdown": 13, "counter": 12, "creat": [1, 5, 13, 14], "creation": [1, 14], "credenti": 1, "crt": 1, "current": [0, 1, 2, 4, 5, 6, 7, 9, 12, 13, 14], "custom": [5, 13, 14], "custom1": 14, "custom2": 14, "custom3": 14, "custom_nam": [5, 14], "dai": [2, 6], "data": [2, 6, 9, 10, 11], "date": [2, 6, 13], "date_tim": 2, "daylight": [2, 6], "dbm": 14, "dcim": [6, 14], "deciph": 10, "declar": 14, "default": [5, 8, 14], "defin": [2, 6, 7, 12, 14], "degre": 8, "delai": 13, "delet": [5, 14], "demo": 9, "demonstr": 9, "depacket": 12, "depend": [1, 5, 6, 7, 12, 14, 15], "deprec": 6, "deprecated_length": 6, "depth": 13, "describ": [0, 6, 8, 9, 12, 14], "descript": [11, 12], "deseri": 12, "desir": [9, 14], "detail": [2, 4, 7, 14], "detect": [0, 14], "determin": 12, "devic": [11, 13], "dhcp": 1, "differ": [5, 12], "digit": [9, 13], "directori": [6, 14], "disabl": [0, 2, 8, 14], "disconnect": 14, "discourag": 15, "discov": [11, 14], "discover": 11, "displai": [2, 13, 14], "dn": 14, "dns_primari": 14, "dns_secondari": 14, "do": [0, 11, 12, 14], "doc": [0, 1, 2, 4, 5, 6], "document": [6, 7, 10, 12], "doe": [0, 1, 11, 13, 14], "done": 11, "down": [2, 13], "download": [1, 13], "drop": 14, "dst": 2, "due": 14, "durat": 13, "dure": [0, 3, 11, 14], "dynam": [7, 11], "e": [1, 2, 5, 6, 13, 14, 15], "e7": 2, "each": [7, 11, 12, 13], "easi": [7, 13], "either": [4, 5, 12, 14], "element": [6, 12, 13], "els": 12, "empti": 6, "enabl": [2, 5, 11, 13, 14], "encod": [3, 9, 13, 14, 15], "endian": [12, 13], "energi": 9, "engag": 13, "english": 14, "enough": 14, "ensur": [0, 11], "entiti": [2, 8, 14], "entri": [0, 14], "enumpresetgroup": 5, "error": [12, 13, 14], "establish": 2, "event": 13, "everi": [2, 7], "exampl": [2, 7, 9, 11, 12, 15], "exit": [2, 5, 12, 14], "expir": 1, "exposur": 13, "extend": 7, "extern": [2, 8, 14], "extract": 12, "f": 12, "facebook": 4, "factori": [5, 11, 14], "fail": [5, 7, 8, 14], "failur": 7, "fals": [8, 14], "far": 13, "fea6": 11, "featur": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 13, 14], "fewer": 12, "ff": 2, "field": [6, 14], "file": [1, 7, 14], "filenam": [6, 14], "find": 5, "finish": [10, 14], "firmwar": [6, 7, 9, 13], "firmware_vers": 6, "firmware_version_length": 6, "first": [0, 1, 6, 7, 9, 11, 12, 13, 14], "flag": [11, 15], "flat_mode_broadcast_broadcast": 14, "flat_mode_broadcast_record": 14, "flat_mode_idl": 14, "flat_mode_live_burst": 14, "flat_mode_loop": 14, "flat_mode_night_lapse_photo": 14, "flat_mode_night_lapse_video": 14, "flat_mode_photo": 14, "flat_mode_photo_burst": 14, "flat_mode_photo_night": 14, "flat_mode_photo_singl": 14, "flat_mode_playback": 14, "flat_mode_setup": 14, "flat_mode_slomo": 14, "flat_mode_time_lapse_photo": 14, "flat_mode_time_lapse_video": 14, "flat_mode_time_warp_video": 14, "flat_mode_unknown": 14, "flat_mode_video": 14, "flat_mode_video_burst_slomo": 14, "flat_mode_video_light_paint": 14, "flat_mode_video_light_trail": 14, "flat_mode_video_star_trail": 14, "flatmod": [13, 14], "flicker": 13, "flow": 13, "flowchart": 12, "folder": 14, "follow": [1, 4, 7, 10, 11, 12, 14], "form": 12, "format": [8, 9, 12, 13, 14, 15], "found": [0, 5, 6, 7, 14], "fov": [9, 14], "fp": 7, "frame": 13, "french": 14, "frequenc": 14, "friendli": 13, "from": [2, 5, 6, 7, 8, 11, 12, 14], "ftu": 13, "full": [7, 13, 14], "fulli": 13, "function": [1, 9], "futur": [4, 14], "g": [1, 5, 13, 14, 15], "gatewai": 14, "gatt": [10, 12], "gener": [1, 2, 4, 5, 14], "german": 14, "get": [0, 1, 4, 5, 6, 7, 13, 14, 15], "ghz": 8, "given": [7, 14], "global": [2, 14], "go": 2, "googl": 12, "gopro": [1, 2, 6, 8, 10, 11, 12, 13, 15], "goprorootca": 1, "gp": [11, 12, 13], "gp12345678": 6, "group": [6, 13, 14], "guarante": 7, "h21": 9, "h22": 9, "h23": [6, 9], "ha": [0, 1, 8, 12, 14], "had": 12, "handl": 2, "handshak": 14, "hard": 2, "hardwar": [6, 13], "have": [0, 1, 11, 12, 13], "hd9": 9, "hdmi": 8, "hdr": 7, "header": [1, 14], "hemispher": 8, "here": [7, 12], "hero": 7, "hero10": [1, 9], "hero11": [1, 9], "hero12": [1, 6, 9], "hero9": [1, 9], "high": [1, 7], "highest": 7, "hilight": [9, 13], "hindsight": [9, 13], "home": [9, 14], "honor": 14, "horizon": 13, "hour": [2, 6, 7, 11], "how": [4, 9, 12, 13], "howev": 15, "http": [0, 1, 14], "hypersmooth": 13, "hyperview": 7, "hz": 7, "i": [0, 1, 2, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15], "icon": [5, 14], "icon_id": [5, 14], "id": [0, 1, 2, 3, 4, 5, 6, 9, 10, 12, 14], "identifi": 12, "idl": [2, 8, 14], "immedi": [0, 2, 5, 14], "inadvert": 2, "includ": [12, 14], "inclus": 14, "incom": 15, "incorrect": 14, "indic": [4, 11, 14], "indirectli": 1, "individu": [6, 7, 12, 14], "info": [6, 13, 14], "inform": [2, 6, 7, 11, 13, 14], "initi": [0, 4, 5, 6, 10, 14], "instal": 1, "instruct": 1, "int": 12, "int16": [2, 6], "int32": [13, 14], "intend": [0, 14], "interact": [2, 14], "intern": 13, "internet": [0, 14], "interv": 13, "interven": 8, "invalid": [12, 14], "ip": [1, 14], "ipaddress": 14, "is_capt": 14, "is_dst": [2, 6], "is_fix": 14, "is_modifi": 14, "iso": 8, "italian": 14, "its": [8, 12], "json": 13, "kbp": 14, "keep": [2, 10, 13], "keep_al": 2, "kilobyt": 13, "lai": 8, "languag": [9, 14], "laps": [5, 13], "larger": 12, "last": [6, 13, 14], "lcd": [2, 13], "leas": 1, "left": 8, "len": [5, 13, 14], "length": [6, 13], "lens": [9, 13, 14], "lens_linear": 14, "lens_superview": 14, "lens_wid": 14, "less": 12, "level": [1, 12, 13, 14], "life": 2, "lifespan": 1, "light": 7, "limit": [11, 12], "linear": 7, "linux": [13, 14], "list": [0, 7, 9, 14], "live": [0, 9, 13, 14], "live_stream_bitr": 14, "live_stream_encod": 14, "live_stream_encode_support": 14, "live_stream_error": 14, "live_stream_error_camera_block": 14, "live_stream_error_createstream": 14, "live_stream_error_inputstream": 14, "live_stream_error_internet": 14, "live_stream_error_network": 14, "live_stream_error_non": 14, "live_stream_error_osnetwork": 14, "live_stream_error_outofmemori": 14, "live_stream_error_sd_card_ful": 14, "live_stream_error_sd_card_remov": 14, "live_stream_error_selectednetworktimeout": 14, "live_stream_error_ssl_handshak": 14, "live_stream_error_unknown": 14, "live_stream_lens_support": 14, "live_stream_lens_supported_arrai": 14, "live_stream_max_lens_unsupport": 14, "live_stream_maximum_stream_bitr": 14, "live_stream_minimum_stream_bitr": 14, "live_stream_state_complete_stay_on": 14, "live_stream_state_config": 14, "live_stream_state_failed_stay_on": 14, "live_stream_state_idl": 14, "live_stream_state_readi": 14, "live_stream_state_reconnect": 14, "live_stream_state_stream": 14, "live_stream_state_unavail": 14, "live_stream_statu": 14, "live_stream_window_size_supported_arrai": 14, "livestream": [4, 13, 14], "liveview": 13, "load": [2, 5, 13, 15], "local": [1, 2, 6, 13, 14], "locat": 13, "lock": [7, 13], "log": 7, "logic": 2, "long": [5, 7, 14], "longer": 12, "longest": 7, "look": 1, "low": [7, 9, 14], "mac": 14, "macaddress": 14, "maco": 1, "mai": [7, 14, 15], "maintain": 15, "major": 6, "major_length": 6, "manag": [0, 9, 10, 11], "mani": [1, 2, 4, 5, 13, 14], "map": 12, "market": 9, "mask": 14, "match": 12, "max": [5, 8, 13, 14], "max_entri": 14, "maxim": [2, 12], "maximum": [7, 14], "maximum_bitr": 14, "mean": [7, 14], "media": [2, 4, 6, 13, 15], "meet": 13, "memori": 14, "menu": [2, 8, 14], "messag": [0, 1, 2, 4, 5, 6, 9, 10, 13, 14, 15], "meta": 14, "mhz": 14, "microphon": 13, "millisecond": 13, "min": 7, "mini": [1, 9], "minim": 9, "minimum": [9, 13, 14], "minimum_bitr": 14, "minor": 6, "minor_length": 6, "minut": [2, 6, 7, 13], "mo": 7, "mobil": 13, "mod": [5, 13], "mode": [0, 2, 4, 5, 9, 10, 13, 14], "model": [6, 9, 13, 14], "model_nam": 6, "model_name_length": 6, "model_numb": 6, "model_number_length": 6, "modifi": [13, 14], "moment": [3, 13], "month": [2, 6], "more": [1, 6, 7, 11, 12, 13, 14], "most": [1, 2, 9, 13, 14], "motion": 8, "mous": 1, "multipl": 12, "must": [1, 5, 8, 11, 12, 14], "mutabl": 14, "n": 12, "name": [5, 7, 8, 9, 14], "narrow": [7, 11], "nearli": 1, "necessari": [0, 7, 11, 12, 15], "need": [0, 1, 9, 11], "network": [0, 9, 11, 14], "never": [7, 8], "new": [0, 1, 5, 11, 13, 14], "next": 7, "night": [5, 13], "non": [5, 14], "none": 7, "noout": 1, "nope": 12, "note": [6, 12], "notif": [0, 1, 2, 4, 5, 6, 11, 13, 14], "notifi": [5, 11, 14], "notifprovisioningst": [0, 13], "notifstartscan": [0, 13], "notifycohnstatu": [1, 13], "notifylivestreamstatu": [4, 13], "notifypresetstatu": [5, 13], "number": [6, 13, 14], "obei": 14, "object": [0, 7, 12, 14], "occur": 14, "off": [2, 15], "offset": [2, 6], "often": [7, 13], "ok": [1, 8], "onc": [1, 11, 12], "one": [5, 6, 7, 8, 12, 14], "ongo": 6, "onli": [0, 3, 5, 6, 7, 8, 12, 14], "onto": 12, "open": [1, 6, 10, 12, 13], "openssl": 1, "oper": [8, 10, 13, 14], "option": [4, 5, 6, 7, 8, 12, 14], "order": [1, 2, 5, 7, 10, 11, 12, 15], "organ": 5, "orient": 13, "ota": 13, "other": [4, 15], "otherwis": [2, 12, 13], "out": 14, "outlin": 7, "outsid": [8, 14], "over": [1, 13], "overh": 13, "overrid": 14, "overview": 11, "p": 12, "packet": 10, "page": [2, 14], "paint": 7, "pair": [10, 12, 13], "paramet": [2, 5, 6, 7, 12], "pars": [11, 12], "part": [2, 6, 14], "parti": [2, 14, 15], "pass": [5, 14], "password": [1, 11, 14], "path": [1, 6, 14], "payload": [6, 10], "pc": 13, "pem": 14, "pend": 13, "per": [12, 13], "percent": 13, "perform": [1, 5, 9, 13, 14], "period": [0, 5, 14, 15], "peripher": 11, "permiss": 11, "pertain": 9, "photo": [5, 6, 9, 13, 14, 15], "physic": [2, 14], "pill": [5, 14], "platform": 4, "plug": 8, "point": [1, 2, 4, 9, 11, 13, 14], "poll": [4, 13], "portugues": 14, "possibl": 12, "power": [2, 11, 13, 15], "practic": [2, 11, 13, 15], "prepend": 12, "present": [7, 13], "preset": [2, 7, 9, 13, 15], "preset_arrai": 14, "preset_group_arrai": 14, "preset_group_endurance_video_icon_id": 14, "preset_group_id_photo": 14, "preset_group_id_timelaps": 14, "preset_group_id_video": 14, "preset_group_long_bat_video_icon_id": 14, "preset_group_max_photo_icon_id": 14, "preset_group_max_timelapse_icon_id": 14, "preset_group_max_video_icon_id": 14, "preset_group_photo_icon_id": 14, "preset_group_timelapse_icon_id": 14, "preset_group_video_icon_id": 14, "preset_icon_act": 14, "preset_icon_activity_endur": 14, "preset_icon_air": 14, "preset_icon_bas": 14, "preset_icon_basic_quality_video": 14, "preset_icon_bik": 14, "preset_icon_bit": 14, "preset_icon_burst": 14, "preset_icon_burst_2": 14, "preset_icon_c": 14, "preset_icon_chesti": 14, "preset_icon_cinemat": 14, "preset_icon_cinematic_endur": 14, "preset_icon_custom": 14, "preset_icon_ep": 14, "preset_icon_follow_cam": 14, "preset_icon_full_fram": 14, "preset_icon_helmet": 14, "preset_icon_highest_quality_video": 14, "preset_icon_indoor": 14, "preset_icon_light_paint": 14, "preset_icon_light_trail": 14, "preset_icon_live_burst": 14, "preset_icon_loop": 14, "preset_icon_motor": 14, "preset_icon_mount": 14, "preset_icon_nightlaps": 14, "preset_icon_nightlapse_photo": 14, "preset_icon_outdoor": 14, "preset_icon_panorama": 14, "preset_icon_photo": 14, "preset_icon_photo_2": 14, "preset_icon_photo_night": 14, "preset_icon_pov": 14, "preset_icon_selfi": 14, "preset_icon_shaki": 14, "preset_icon_simple_night_photo": 14, "preset_icon_simple_super_photo": 14, "preset_icon_sk": 14, "preset_icon_slomo_endur": 14, "preset_icon_snail": 14, "preset_icon_snow": 14, "preset_icon_standard_endur": 14, "preset_icon_standard_quality_video": 14, "preset_icon_star": 14, "preset_icon_star_trail": 14, "preset_icon_stationary_1": 14, "preset_icon_stationary_2": 14, "preset_icon_stationary_3": 14, "preset_icon_stationary_4": 14, "preset_icon_surf": 14, "preset_icon_timelaps": 14, "preset_icon_timelapse_2": 14, "preset_icon_timelapse_photo": 14, "preset_icon_timewarp": 14, "preset_icon_timewarp_2": 14, "preset_icon_trail": 14, "preset_icon_travel": 14, "preset_icon_ultra_slo_mo": 14, "preset_icon_video": 14, "preset_icon_video_2": 14, "preset_icon_wat": 14, "preset_title_act": 14, "preset_title_activity_endur": 14, "preset_title_air": 14, "preset_title_bas": 14, "preset_title_basic_quality_video": 14, "preset_title_bik": 14, "preset_title_bit": 14, "preset_title_burst": 14, "preset_title_c": 14, "preset_title_chesti": 14, "preset_title_cinemat": 14, "preset_title_cinematic_endur": 14, "preset_title_custom": 14, "preset_title_ep": 14, "preset_title_extended_batteri": 14, "preset_title_follow_cam": 14, "preset_title_full_fram": 14, "preset_title_helmet": 14, "preset_title_highest_qu": 14, "preset_title_highest_quality_video": 14, "preset_title_indoor": 14, "preset_title_light_paint": 14, "preset_title_light_trail": 14, "preset_title_live_burst": 14, "preset_title_longest_batteri": 14, "preset_title_loop": 14, "preset_title_motor": 14, "preset_title_mount": 14, "preset_title_night": 14, "preset_title_night_laps": 14, "preset_title_outdoor": 14, "preset_title_panorama": 14, "preset_title_photo": 14, "preset_title_photo_2": 14, "preset_title_pov": 14, "preset_title_selfi": 14, "preset_title_shaki": 14, "preset_title_simple_night_photo": 14, "preset_title_simple_super_photo": 14, "preset_title_simple_time_warp": 14, "preset_title_simple_video": 14, "preset_title_simple_video_endur": 14, "preset_title_sk": 14, "preset_title_slomo": 14, "preset_title_slomo_endur": 14, "preset_title_snow": 14, "preset_title_standard": 14, "preset_title_standard_endur": 14, "preset_title_standard_quality_video": 14, "preset_title_star": 14, "preset_title_star_trail": 14, "preset_title_stationary_1": 14, "preset_title_stationary_2": 14, "preset_title_stationary_3": 14, "preset_title_stationary_4": 14, "preset_title_surf": 14, "preset_title_time_laps": 14, "preset_title_time_warp": 14, "preset_title_time_warp_2": 14, "preset_title_trail": 14, "preset_title_travel": 14, "preset_title_ultra_slo_mo": 14, "preset_title_user_defined_custom_nam": [5, 14], "preset_title_video": 14, "preset_title_wat": 14, "press": [2, 5, 14], "prevent": [2, 15], "preview": 13, "previous": [0, 7, 14], "primari": [13, 14], "pro": 7, "procedur": [11, 12], "process": [1, 11], "profil": 13, "program": 9, "programmat": 2, "properti": [1, 14], "protobuf": [0, 1, 2, 4, 5, 6, 9, 10], "protocol": [9, 11], "provid": 1, "provis": [0, 13, 14], "provisioning_aborted_by_system": 14, "provisioning_cancelled_by_us": 14, "provisioning_error_eula_block": 14, "provisioning_error_failed_to_associ": 14, "provisioning_error_no_internet": 14, "provisioning_error_password_auth": 14, "provisioning_error_unsupported_typ": 14, "provisioning_never_start": 14, "provisioning_st": 14, "provisioning_start": 14, "provisioning_success_new_ap": 14, "provisioning_success_old_ap": 14, "provisioning_unknown": 14, "pseudocod": 12, "public": 9, "purpos": 1, "put": [2, 4, 11], "qualiti": 7, "queri": [1, 4, 5, 7, 8, 9, 10, 11, 15], "quick": [1, 13], "rang": 14, "rate": 13, "ratio": 13, "re": [7, 11, 14], "reach": 2, "read": [9, 10, 11], "readi": [4, 10, 13, 14], "realtim": 8, "receiv": [0, 6, 9, 11, 12, 14], "recent": [9, 13], "reclaim": [2, 14], "reconnect": 14, "record": [3, 13], "refer": 10, "reflect": 13, "regist": [1, 4, 5, 6, 13, 14], "register_cohn_statu": 14, "register_live_stream_statu": 14, "register_live_stream_status_bitr": 14, "register_live_stream_status_error": 14, "register_live_stream_status_mod": 14, "register_live_stream_status_statu": 14, "register_preset_statu": 14, "register_preset_status_preset": 14, "register_preset_status_preset_group_arrai": 14, "regularli": 2, "reject": [7, 9, 14, 15], "rel": [6, 14], "relat": 13, "releas": 7, "relev": [0, 9, 11, 12], "remain": 13, "remot": 13, "remov": [8, 14], "reorder": [5, 14], "replac": 1, "report": 6, "repres": [7, 14], "represent": 14, "request": [0, 1, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14], "requestclearcohncert": [1, 13], "requestcohncert": [1, 13], "requestconnect": [0, 13], "requestconnectnew": [0, 13], "requestcreatecohncert": [1, 13], "requestcustompresetupd": [5, 13], "requestgetapentri": [0, 13], "requestgetcohnstatu": [1, 13], "requestgetlastcapturedmedia": [6, 13], "requestgetlivestreamstatu": [4, 13], "requestgetpresetstatu": [5, 13], "requestsetcameracontrolstatu": [2, 13], "requestsetcohnset": [1, 13], "requestsetlivestreammod": [4, 13], "requestsetturboact": [2, 13], "requeststartscan": [0, 13], "requir": [1, 11, 14], "reserv": [6, 12], "reset": [1, 2, 5, 11, 12], "resolut": [13, 14], "respect": 12, "respond": 12, "respons": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14], "response_length": 6, "responsecohncert": [1, 13], "responseconnect": [0, 13], "responseconnectnew": [0, 13], "responsegener": [1, 2, 4, 5, 13], "responsegetapentri": [0, 13], "responselastcapturedmedia": [6, 13], "responsestartscan": [0, 13], "result": [0, 6, 7, 9, 12, 13, 14], "result_argument_invalid": 14, "result_argument_out_of_bound": 14, "result_ill_form": 14, "result_not_support": 14, "result_resource_not_avail": 14, "result_resource_not_availbl": 14, "result_success": 14, "result_unknown": 14, "return": [0, 1, 2, 5, 6, 14], "right": [1, 8], "room": 14, "root": [1, 14], "rotat": 13, "rough": 13, "router": 1, "row": [7, 12], "rtmp": [4, 14], "rule": 7, "russian": 14, "saturdai": 6, "save": [2, 6, 14], "scan": [0, 11, 13, 14], "scan_entry_flag": 14, "scan_flag_associ": 14, "scan_flag_authent": 14, "scan_flag_best_ssid": 14, "scan_flag_configur": [0, 14], "scan_flag_open": 14, "scan_flag_unsupported_typ": 14, "scan_id": 14, "scanning_aborted_by_system": 14, "scanning_cancelled_by_us": 14, "scanning_never_start": 14, "scanning_st": 14, "scanning_start": 14, "scanning_success": 14, "scanning_unknown": 14, "schedul": 13, "schema": 7, "scheme": 12, "screen": [2, 14], "sd": [13, 14], "sdcard": [6, 13, 14, 15], "second": [2, 6, 13, 14], "secondari": [13, 14], "section": [6, 8, 9, 10, 11, 12], "secur": 1, "see": [1, 4, 6, 7, 9, 11, 12, 13], "select": 13, "send": [2, 5, 9, 12, 14, 15], "sent": [0, 4, 5, 6, 11, 12, 14], "serial": [0, 2, 12, 14], "serial_numb": 6, "serial_number_length": 6, "server": 14, "servic": 11, "set": [0, 1, 2, 4, 5, 6, 9, 10, 11, 12, 14, 15], "setting_arrai": 14, "settingid": [7, 13], "setup": [9, 10, 14], "short": 7, "shorthand": 11, "should": [9, 11, 15], "shutter": [2, 4, 13], "side": 8, "sign": 1, "signal": [13, 14, 15], "signal_frequency_mhz": 14, "signal_strength_bar": 14, "simultan": 15, "sinc": 13, "singl": [6, 12, 14], "site": 4, "size": 12, "sleep": [2, 11, 13], "slo": 7, "slow": 8, "so": [11, 13], "social": 4, "some": [0, 1, 2, 12, 15], "sourc": [0, 1, 2, 4, 5, 6, 14], "space": 13, "spanish": 14, "special": 14, "specif": [1, 15], "specifi": [5, 12, 13, 14], "speed": 13, "split": 12, "spreadsheet": 7, "ssid": [11, 13, 14], "ssl": [1, 14], "sta": [0, 14], "stack": 14, "standard": 7, "star": 7, "start": [0, 2, 4, 6, 12, 13, 14], "start_index": 14, "starting_bitr": 14, "startup": 14, "state": [0, 5, 6, 7, 9, 10, 11, 12, 13, 14], "static": 14, "static_ip": 14, "station": [0, 4, 14], "stationari": 7, "statu": [0, 1, 2, 4, 6, 10, 12, 14, 15], "status": [6, 9, 12, 14], "step": [1, 11], "still": 2, "stop": [4, 13, 14], "storag": 13, "store": 11, "stream": [0, 9, 13, 14], "streamer": 14, "strength": [13, 14], "string": [6, 8, 12, 14], "structur": 12, "submenu": 5, "subnet": 14, "subscrib": 11, "subscript": 11, "subsequ": [9, 11, 12], "success": [12, 13, 14], "suffici": 13, "summar": 12, "summari": 14, "sundai": 6, "super": 7, "superset": 7, "superview": 7, "support": [0, 1, 2, 4, 6, 7, 11, 13, 14], "suppos": 7, "swap": 8, "swedish": 14, "synchron": [4, 5, 14], "system": [1, 13, 14, 15], "tabl": [5, 9, 10, 11, 12], "take": 14, "taken": 13, "tap": 2, "task": 14, "tell": [2, 14, 15], "terminologi": 12, "text": [1, 14], "than": [12, 13, 15], "thei": 12, "therebi": 5, "therefor": [0, 15], "thi": [0, 1, 2, 3, 5, 6, 7, 9, 11, 12, 13, 14, 15], "thing": 1, "third": [2, 14, 15], "those": 6, "three": 8, "through": [1, 9, 10], "throughout": 12, "time": [2, 6, 11, 13, 14, 15], "timelaps": 13, "timeout": 14, "timeout_second": 14, "timer": 2, "timewarp": 7, "timezon": [2, 6], "titl": [5, 14], "title_id": [5, 14], "title_numb": 14, "tl": [1, 14], "tlv": [2, 3, 5, 6, 7, 12], "too": 13, "top": 12, "total": [13, 14], "total_configured_ssid": 14, "total_entri": 14, "track": 2, "trail": 13, "transfer": [2, 13, 14], "tri": 7, "trigger": [0, 1, 14], "triplet": 12, "tripod": 7, "true": 8, "trust": 1, "try": 9, "turbo": [2, 13, 14], "tutori": [9, 12], "twitch": 4, "two": [1, 8, 11, 12], "type": [0, 1, 2, 3, 4, 5, 6, 7, 10, 13, 14], "typespec": 14, "u": 12, "ubuntu": 1, "ui": [2, 5, 11, 13, 14], "ui_mode_group": 13, "uint16": [2, 6], "uint32": 5, "uint8": [2, 6, 7], "ultra": 7, "un": 2, "unavail": 14, "undefin": [9, 15], "under": 6, "understand": 9, "unknown": [8, 14], "unless": [12, 15], "unregist": [6, 13, 14], "unregister_live_stream_statu": 14, "unregister_preset_statu": 14, "unset": [4, 15], "unsign": 6, "until": 4, "up": 11, "updat": [1, 2, 5, 6, 9, 13, 14], "upon": 11, "upright": 8, "upsid": 8, "url": [4, 14], "us": [0, 1, 2, 3, 4, 5, 9, 10, 12, 13, 14, 15], "usb": 13, "user": [2, 5, 7, 9, 14, 15], "user_defin": 14, "usernam": [1, 14], "usual": [7, 14], "utc": [2, 6], "utf": 14, "util": 1, "uuid": [0, 1, 2, 3, 4, 5, 6, 7, 11, 12], "v01": 9, "v4": 12, "valid": [1, 7, 11, 14], "valu": [1, 2, 5, 6, 7, 9, 13, 14], "value_length": 7, "variabl": [7, 12], "variou": [6, 9, 10], "vehicl": 7, "verifi": 8, "version": [6, 7, 9, 12, 13], "vertic": 7, "via": [0, 1, 2, 4, 5, 6, 7, 9, 11, 13, 14], "video": [5, 6, 9, 13, 14, 15], "wa": [7, 11, 13, 14], "wai": 11, "wait": [11, 14, 15], "wake": 11, "walk": 9, "warp": 13, "webcam": 13, "weekdai": 6, "well": 9, "were": 5, "when": [1, 2, 5, 6, 12, 13, 14], "whenev": 6, "where": [0, 9, 12], "whether": [2, 5, 11, 12, 14], "which": [0, 1, 2, 5, 11, 13, 14], "while": [0, 3, 9, 11, 13, 14, 15], "whitelist": 7, "who": 14, "wide": 7, "widescreen": 7, "wifi": [2, 11, 13, 14], "window": 1, "window_s": 14, "window_size_1080": 14, "window_size_480": 14, "window_size_720": 14, "wireless": 13, "wirelesspairingstateflag": 13, "wish": [2, 14, 15], "within": [5, 14], "without": [1, 2, 6], "work": [7, 12], "worksheet": 7, "write": [11, 13], "x509": 1, "xxxx": 11, "y": 13, "ye": 6, "year": [1, 2, 6], "yet": 14, "youtub": 4, "zero": [0, 2, 5, 8, 14], "zone": 14, "zoom": 13}, "titles": ["Access Point", "Camera on the Home Network", "Control", "Hilights", "Live Streaming", "Presets", "Query", "Settings", "Statuses", "Welcome to Open GoPro BLE API\u2019s documentation!", "Protocol", "BLE Setup", "Data Protocol", "ID Tables", "Protobuf Documentation", "State Management"], "titleterms": {"": [8, 9], "0": 8, "1": 8, "10": 8, "100": 8, "101": 8, "102": 8, "103": 8, "104": 8, "105": 8, "106": 8, "107": 8, "108": [7, 8], "11": 8, "110": 8, "111": 8, "112": 8, "113": 8, "114": 8, "115": 8, "116": 8, "117": 8, "118": 8, "121": 7, "122": 7, "123": 7, "128": 7, "13": [8, 12], "134": 7, "135": 7, "150": 7, "151": 7, "16": 12, "162": [7, 8], "167": 7, "17": 8, "171": 7, "172": 7, "173": 7, "175": 7, "176": 7, "177": 7, "178": 7, "179": 7, "180": 7, "182": 7, "183": 7, "184": 7, "186": 7, "187": 7, "189": [7, 8], "19": 8, "190": 7, "191": 7, "192": 7, "193": 7, "194": 8, "2": [7, 8], "20": 8, "21": 8, "22": 8, "23": 8, "24": 8, "26": 8, "27": 8, "28": 8, "29": 8, "3": [7, 8], "30": 8, "31": 8, "32": 8, "33": 8, "34": 8, "35": 8, "38": 8, "39": 8, "4": 8, "41": 8, "42": 8, "43": 7, "45": 8, "49": 8, "5": [8, 12], "54": 8, "55": 8, "56": 8, "58": 8, "59": [7, 8], "5ghz": 8, "6": 8, "60": 8, "65": 8, "66": 8, "67": 8, "68": 8, "69": 8, "70": 8, "74": 8, "75": 8, "76": 8, "77": 8, "78": 8, "79": 8, "8": 8, "81": 8, "82": 8, "83": [7, 8], "85": 8, "86": 8, "88": 8, "89": 8, "9": 8, "93": 8, "94": 8, "95": 8, "96": 8, "97": 8, "98": 8, "99": 8, "On": 8, "The": 8, "accept": 8, "access": [0, 8], "accessori": 8, "action": 8, "activ": 8, "advertis": 11, "air": 8, "aliv": 15, "an": 8, "anti": 7, "ap": 8, "api": 9, "approxim": 8, "ar": 8, "aspect": 7, "auto": 7, "avail": 8, "band": [7, 8], "bar": 8, "batteri": 8, "befor": 8, "best": 8, "between": 8, "big": 8, "bit": [7, 8, 12], "bitmask": 8, "ble": [8, 9, 11], "boot": 8, "burst": 8, "busi": 8, "byte": 8, "camera": [1, 7, 8, 9, 15], "can": 8, "cancel": 8, "capabl": [7, 8], "capac": 8, "captur": 8, "card": 8, "certif": 1, "chang": 8, "characterist": 11, "charg": 8, "cold": 8, "command": [8, 12, 13], "complet": 8, "compress": 8, "configur": 11, "connect": 8, "contain": 8, "continu": [8, 12], "control": [2, 7, 8, 15], "coordin": 8, "core": 8, "correspond": 8, "count": 8, "countdown": 8, "current": 8, "data": 12, "deciph": 12, "delai": 8, "depth": 7, "detail": 1, "devic": 8, "digit": 8, "disconnect": 0, "displai": 8, "document": [9, 14], "doe": 8, "down": 8, "download": 8, "durat": [7, 8], "e": 8, "each": 8, "enabl": [7, 8], "encod": 8, "endian": 8, "engag": 8, "enum": 14, "enumcameracontrolstatu": 14, "enumcohnnetworkst": 14, "enumcohnstatu": 14, "enumflatmod": 14, "enumlen": 14, "enumlivestreamerror": 14, "enumlivestreamstatu": 14, "enumpresetgroup": 14, "enumpresetgroupicon": 14, "enumpreseticon": 14, "enumpresettitl": 14, "enumprovis": 14, "enumregisterlivestreamstatu": 14, "enumregisterpresetstatu": 14, "enumresultgener": 14, "enumscan": 14, "enumscanentryflag": 14, "enumwindows": 14, "error": 8, "event": 8, "exposur": 8, "extend": 12, "far": 8, "featur": 8, "fi": 7, "finish": 11, "firmwar": 8, "first": 8, "flatmod": 8, "flicker": 7, "flow": 8, "format": 7, "fov": 7, "frame": [7, 8], "friendli": 8, "from": 0, "ftu": 8, "full": 8, "fulli": 8, "g": 8, "gatt": 11, "gener": [9, 12], "get": [8, 9], "gopro": 9, "gp": [7, 8], "group": [5, 8], "have": 8, "header": 12, "hilight": [3, 8], "hindsight": [7, 8], "home": 1, "horizon": 7, "how": 8, "hypersmooth": 7, "i": 8, "id": [7, 8, 13], "inform": 8, "int32": 8, "intern": 8, "interv": [7, 8], "json": [7, 8], "keep": 15, "kilobyt": 8, "laps": [7, 8], "last": 8, "lcd": 8, "len": [7, 8], "length": [7, 12], "level": [7, 8], "limit": 9, "linux": 8, "live": [4, 8], "liveview": 8, "locat": 8, "lock": 8, "manag": 15, "mani": 8, "max": 7, "media": [8, 14], "meet": 8, "messag": [11, 12], "microphon": 8, "millisecond": 8, "minimum": 8, "minut": 8, "mobil": 8, "mod": [7, 8], "mode": [7, 8, 11], "model": 8, "modifi": [5, 8], "more": 8, "most": 8, "network": 1, "night": 7, "notifprovisioningst": 14, "notifstartscan": 14, "notifycohnstatu": 14, "notifylivestreamstatu": 14, "notifypresetstatu": 14, "number": 8, "off": 7, "often": 8, "open": 9, "oper": [0, 1, 2, 3, 4, 5, 6, 7], "orient": 8, "ota": 8, "otherwis": 8, "over": 8, "overh": 8, "packet": 12, "pair": [8, 11], "payload": 12, "pc": 8, "pend": 8, "per": 7, "percent": 8, "perform": 7, "photo": [7, 8], "point": [0, 8], "poll": 8, "practic": 8, "present": 8, "preset": [5, 8, 14], "presetgroup": 14, "presetset": 14, "preview": 8, "primari": 8, "procedur": 1, "profil": 7, "protobuf": [12, 13, 14], "protocol": [10, 12], "provis": [1, 8], "queri": [6, 12, 13], "quick": 8, "rate": [7, 8], "ratio": 7, "readi": [8, 15], "recent": 8, "record": 8, "reflect": 8, "relat": 8, "remain": 8, "remot": 8, "request": 8, "requestclearcohncert": 14, "requestcohncert": 14, "requestconnect": 14, "requestconnectnew": 14, "requestcreatecohncert": 14, "requestcustompresetupd": 14, "requestgetapentri": 14, "requestgetcohnstatu": 14, "requestgetlastcapturedmedia": 14, "requestgetlivestreamstatu": 14, "requestgetpresetstatu": 14, "requestreleasenetwork": 14, "requestsetcameracontrolstatu": 14, "requestsetcohnset": 14, "requestsetlivestreammod": 14, "requestsetturboact": 14, "requeststartscan": 14, "resolut": 7, "responsecohncert": 14, "responseconnect": 14, "responseconnectnew": 14, "responsegener": 14, "responsegetapentri": 14, "responselastcapturedmedia": 14, "responsestartscan": 14, "rotat": 8, "rough": 8, "scan": 8, "scanentri": 14, "schedul": 8, "sd": 8, "sdcard": 8, "second": [7, 8], "secondari": 8, "see": 8, "select": 8, "send": 11, "set": [7, 8, 13], "setup": 11, "signal": 8, "sinc": 8, "so": 8, "space": 8, "specifi": 8, "speed": [7, 8], "ssid": 8, "start": [8, 9], "state": [8, 15], "statu": [5, 8, 13], "status": 8, "stop": 8, "storag": 8, "stream": [4, 8], "strength": 8, "success": 8, "suffici": 8, "support": [8, 9], "system": 8, "tabl": 13, "taken": 8, "than": 8, "thi": 8, "time": 8, "timelaps": 8, "too": 8, "total": 8, "trail": 7, "transfer": 8, "turbo": 8, "type": [8, 12], "ui": 8, "ui_mode_group": 8, "updat": 8, "us": 8, "usb": 8, "valu": [8, 12], "verifi": 1, "version": 8, "via": 8, "video": [7, 8], "view": 1, "wa": 8, "warp": 8, "welcom": 9, "when": 8, "which": 8, "while": 8, "wi": 7, "wifi": 8, "wireless": 8, "wirelesspairingstateflag": 8, "write": 8, "xlsx": 7, "y": 8, "zoom": 8}}) \ No newline at end of file diff --git a/contribution.html b/contribution.html index 49301da0..e36c74f6 100644 --- a/contribution.html +++ b/contribution.html @@ -532,10 +532,10 @@

    Quiz

    %}
    -
    +
    -
    What is the question?
    -
    +
    What is the question?
    +

    @@ -548,10 +548,10 @@

    Quiz

    - - @@ -567,10 +567,10 @@

    Quiz

    %}
    -
    +
    -
    True or False?
    -
    +
    True or False?
    +

    @@ -580,10 +580,10 @@

    Quiz

    - - @@ -606,7 +606,7 @@

    Tabs

    -
      +
      • tab1 @@ -621,7 +621,7 @@

        Tabs

      -
        +
        • This is the content of the first tab.

          diff --git a/feed.xml b/feed.xml index 80673470..6d15a2f1 100644 --- a/feed.xml +++ b/feed.xml @@ -1 +1 @@ -Jekyll2024-04-19T12:03:54-07:00https://gopro.github.io/OpenGoPro/feed.xmlOpen GoProOpen Source GoPro InterfaceGoPro \ No newline at end of file +Jekyll2024-04-19T13:41:07-07:00https://gopro.github.io/OpenGoPro/feed.xmlOpen GoProOpen Source GoPro InterfaceGoPro \ No newline at end of file diff --git a/http.html b/http.html index 229653ad..803c37f6 100644 --- a/http.html +++ b/http.html @@ -1,9 +1,152 @@ - + + - + + + +Open GoPro + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
          +
          + +
          +
          +
          + + + OpenGoPro HTTP API - + - - + + - + -
          + +
          +

          OpenGoPro HTTP API (2.0)

          Download OpenAPI specification:Download

          The GoPro API allows developers to create apps and utilities that interact with and control a GoPro camera.

          -

          Overview

          +
          +
          +
          +

          OpenGoPro HTTP API (2.0) +

          +

          Download OpenAPI specification:Download

          + +
          +

          The GoPro API allows developers to create apps and utilities that interact with and control a GoPro camera.

          +
          +
          +
          +
          +

          +Overview

          +
          +

          The GoPro API allows you to control and query the camera to:

          • Capture photo/video media
          • Get media list
          • @@ -501,7 +817,8 @@

            Supported Cameras

            Minimal Firmware Version - + + 62 H23.01 HERO12 Black @@ -531,40 +848,46 @@

            Supported Cameras

            HERO9 Black v01.70.00 - + +

            While the version listed above are minimum versions needed to support the Open GoPro API, the documentation assumes that the GoPro is always updated to the most recent version. This is relevant in cases where functionality changes between versions.

            -

          Setup

          +

          +Setup

          +
          +

          Connection

          WiFi

          -

          Connection to the camera via WiFi requires that the camera's WiFi Access Point be enabled. This can be done by +

          Connection to the camera via WiFi requires that the camera's WiFi Access Point be enabled. This can be done by connecting to the camera via Bluetooth Low Energy and sending a command to enable AP Mode.

          USB

          Open GoPro systems that utilize USB must support the Network Control Model (NCM) protocol. Connecting via USB requires the following steps:

            -
          1. Physically connect the camera's USB-C port to your system
          2. +
          3. Physically connect the camera's USB-C port to your system
          4. Send HTTP command to enable wired USB control

          Authentication

          @@ -604,18 +928,24 @@

          Socket Address

          WiFi

          The socket address for WiFi connections is 10.5.5.9:8080.

          USB

          -

          The socket address for USB connections is 172.2X.1YZ.51:8080 where XYZ are the last three digits of the camera's +

          The socket address for USB connections is 172.2X.1YZ.51:8080 where XYZ are the last three digits of the camera's serial number.

          -

          The camera's serial number can be obtained in any of the following ways:

          +

          The camera's serial number can be obtained in any of the following ways:

            -
          • Reading the sticker inside the camera's battery enclosure
          • +
          • Reading the sticker inside the camera's battery enclosure
          • Camera UI: Preferences >> About >> Camera Info
          • -
          • Bluetooth Low Energy: By reading directly from Hardware Info
          • +
          • Bluetooth Low Energy: By reading directly from Hardware Info +
          -

          For example, if the camera's serial number is C0000123456789, the IP address for USB connections would be +

          For example, if the camera's serial number is C0000123456789, the IP address for USB connections would be 172.27.189.51.

          Alternatively, the IP address can be discovered via mDNS as the camera registers the _gopro-web service.

          -

          General Usage

          +

          +General Usage

          +
          +

          Commands

          Using the Open GoPro API, a client can perform various command, control, and query operations.

          -

          Depending on the camera's state, it may not be ready to accept specific commands. +

          Depending on the camera's state, it may not be ready to accept specific commands. This ready state is dependent on the System Busy and the Encoding Active status flags. For example:

          • System Busy flag is set while loading presets, changing settings, formatting sdcard
          • @@ -667,20 +998,33 @@

            Limitations

            For example, the user should not try to query the current Photo Digital Lenses (FOV) value while in a video-based Preset.
          -

          Analytics

          Query / Configure Analytics

          -

          Set Client as Third Party

          +

          +Analytics

          +
          +

          Query / Configure Analytics

          +
          +
          +
          +
          +

          +Set Client as Third Party

          +
          +

          HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -691,12 +1035,78 @@

          Limitations

        • WIFI

        -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/analytics/set_client_info

    Response samples

    Content type
    application/json
    { }

    COHN

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    + + +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/analytics/set_client_info
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    + +
    +

    +COHN

    +
    Limitations <td>❌</td> </tr> </tbody></table> -">

    The Camera On the Home Network (COHN) capability allows the client to perform command and control with the camera +"> +

    The Camera On the Home Network (COHN) capability allows the client to perform command and control with the camera indirectly through an access point such as a router at home.

    For security purposes, all communications are performed over HTTPS.

    The following cameras support COHN:

    @@ -743,7 +1154,8 @@

    Limitations

    Supported - + + HERO ❌ @@ -767,46 +1179,167 @@

    Limitations

    HERO9 Black ❌ - -

    Provisioning COHN

    In order to use the COHN capability, the camera must first be provisioned for COHN. + + +

    +
    +
    +

    +Provisioning COHN

    +
    +

    In order to use the COHN capability, the camera must first be provisioned for COHN. For instructions on how to do this, see the Open GoPro BLE spec.

    -

    Send Messages via HTTPS

    +

    +Send Messages via HTTPS

    +

    Once the camera is provisioned, the client can issue commands and set settings +"> +

    Once the camera is provisioned, the client can issue commands and set settings via HTTPS using the COHN certificate and Basic authorization (username/password) credentials obtained during provisioning or subsequently by querying for COHN status.

    -

    HTTPS Headers

    +

    +HTTPS Headers

    +
    +

    All HTTPS messages must contain Basic access authentication headers, using the username and password from the COHN status obtained during or after provisioning.

    -

    Configure COHN Settings

    +
    +

    +Configure COHN Settings

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • WIFI

    -
    Request Body schema: application/json
    + + + + + + +
    cohn_active
    integer
    Enum: 0 1
    Request Body schema: application/json + +
    + + +
    +cohn_active + +
    +
    +integer +
    +
    + Enum: 0 1

    1 to enable, 0 to disable

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    1 to enable, 0 to disable

    When cohn_active == 1, STA Mode connection will be dropped and camera will not automatically re-connect for COHN.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    Content type
    application/json
    {
    • "cohn_active": 0
    }

    Response samples

    Content type
    application/json
    { }

    Create the COHN SSL/TLS certificates

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
    • +"cohn_active": 0 +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Create the COHN SSL/TLS certificates

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • @@ -826,82 +1360,403 @@

      Limitations

      This creates the Camera On the Home Network SSL/TLS certs certs. The created certificate(s) can be obtained via Get COHN Certificate and used for SSL/TLS communications

      -
    Request Body schema: application/json
    override
    integer
    Enum: 0 1

    If 1, replace existing Root CA cert with a newly-generated one.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    Content type
    application/json
    {
    • "override": 0
    }

    Response samples

    Content type
    application/json
    { }

    Delete COHN Certificates

    Request Body schema: application/json + +
    + + + +
    +override + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    If 1, replace existing Root CA cert with a newly-generated one.

    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
    • +"override": 0 +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Delete COHN Certificates

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • WIFI

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request POST \
    -  --url http://10.5.5.9:8080/gopro/cohn/cert/clear

    Response samples

    Content type
    application/json
    { }

    Get COHN Certificate

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request POST \
    +  --url http://10.5.5.9:8080/gopro/cohn/cert/clear
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get COHN Certificate

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • WIFI

    -

    Responses

    Response Schema: text/plain
    string

    Request samples

    curl --request POST \
    -  --url http://10.5.5.9:8080/GoProRootCA.crt

    Response samples

    Content type
    text/plain
    -----BEGIN CERTIFICATE-----
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: text/plain +
    +
    +
    +string +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request POST \
    +  --url http://10.5.5.9:8080/GoProRootCA.crt
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    text/plain
    +
    +
    +
    +
    -----BEGIN CERTIFICATE-----
     xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
     xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
      xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
     -----END CERTIFICATE----
    -

    Get COHN Status

    +
    +

    +Get COHN Status

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • WIFI

    -

    Responses

    Response Schema: application/json
    enabled
    integer
    Enum: 0 1

    Is COHN currently enabled?

    -
    ipaddress
    string
    Example: "123.45.67.890"

    Camera's IP address on the local network

    -
    macaddress
    string

    MAC address of the wifi adapter

    -
    password
    string

    Password used for http basic auth header

    -
    ssid
    string

    Currently connected SSID

    -
    state
    integer (EnumCOHNNetworkState)
    Enum: 0 1 2 5 27 28 29 30
    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +enabled + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is COHN currently enabled?

    +
    +
    +
    +ipaddress + +
    +
    +string +
    + Example: "123.45.67.890" +
    +
    +

    Camera's IP address on the local network

    +
    +
    +
    +macaddress + +
    +
    +string +
    +

    MAC address of the wifi adapter

    +
    +
    +
    +password + +
    +
    +string +
    +

    Password used for http basic auth header

    +
    +
    +
    +ssid + +
    +
    +string +
    +

    Currently connected SSID

    +
    +
    +
    +state + +
    +
    +integer (EnumCOHNNetworkState) +
    +
    + Enum: 0 1 2 5 27 28 29 30
    Limitations <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -958,7 +1814,8 @@

    Limitations

    - + + @@ -998,8 +1855,23 @@

    Limitations

    -
    ID Summary
    0 COHN_STATE_Init COHN_STATE_Invalid
    -
    status
    integer (EnumCOHNStatus)
    Enum: 0 1
    +
    +status + +
    +
    +integer (EnumCOHNStatus) +
    +
    + Enum: 0 1
    Limitations <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -1026,7 +1899,8 @@

    Limitations

    - + + @@ -1036,19 +1910,124 @@

    Limitations

    + +
    ID Summary
    0 COHN_UNPROVISIONED COHN_PROVISIONED
    +
    +
    +
    +username + +
    +
    +string +
    +

    Username used for http basic auth header

    +
    +
    +
    -
    username
    string

    Username used for http basic auth header

    -

    Request samples

    curl --request POST \
    -  --url http://10.5.5.9:8080/gopro/cohn/status

    Response samples

    Content type
    application/json
    {
    • "enabled": 0,
    • "ipaddress": "123.45.67.890",
    • "macaddress": "string",
    • "password": "string",
    • "ssid": "string",
    • "state": 0,
    • "status": 0,
    • "username": "string"
    }

    Control

    Command and control of the camera

    -

    Configure Turbo Transfer

    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request POST \
    +  --url http://10.5.5.9:8080/gopro/cohn/status
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"enabled": 0, +
    • +
    • +"ipaddress": "123.45.67.890", +
    • +
    • +"macaddress": "string", +
    • +
    • +"password": "string", +
    • +
    • +"ssid": "string", +
    • +
    • +"state": 0, +
    • +
    • +"status": 0, +
    • +
    • +"username": "string" +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +

    +Control

    +
    +

    Command and control of the camera

    +
    +
    +
    +
    +

    +Configure Turbo Transfer

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1074,24 +2054,109 @@

    Limitations

    This special mode should only be used during media offload.

    It is recommended that the user check for and, if necessary, disable Turbo Transfer on connection.

    Note that Disabling / enabling turbo mode willa lso enable / disable the transferring media camera UI.

    -
    query Parameters
    p
    required
    integer
    Enum: 0 1

    0 to disable, 1 to enable

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/turbo_transfer?p=0'

    Response samples

    Content type
    application/json
    { }

    Enable Wired camera control over USB

    query Parameters + + + +
    +p<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    0 to disable, 1 to enable

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/turbo_transfer?p=0'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Enable Wired camera control over USB

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black

    @@ -1101,18 +2166,102 @@

    Limitations

  • WIFI

  • -
    query Parameters
    p
    required
    integer
    Enum: 0 1

    If 1, enable wired usb control; If 0, disable usb control

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/control/wired_usb?p=0'

    Response samples

    Content type
    application/json
    { }

    Keep Alive

    query Parameters + + + +
    +p<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    If 1, enable wired usb control; If 0, disable usb control

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/control/wired_usb?p=0'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Keep Alive

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1148,15 +2298,82 @@

    Limitations

    The Keep Alive timer is reset when the user sends a keep alive message.

    The best practice to prevent the camera from inadvertently going to sleep is to start sending Keep Alive messages every 3.0 seconds after a connection is established.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/keep_alive

    Response samples

    Content type
    application/json
    { }

    Set Camera Control Status

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/keep_alive
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Set Camera Control Status

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black

    @@ -1186,7 +2404,7 @@

    Limitations


    This command is used to tell the camera that a client (i.e. External Control) wishes to claim control of the camera. This causes the camera to immediately exit most contextual menus and return to the idle screen. Any interaction with the -camera's physical buttons will cause the camera to reclaim control and update control status accordingly. If the user +camera's physical buttons will cause the camera to reclaim control and update control status accordingly. If the user returns the camera UI to the idle screen, the camera updates control status to Idle.

    Note:

      @@ -1195,7 +2413,19 @@

      Limitations

    See the below diagram for a state diagram of Camera Control:

    global behaviors state diagram

    -
    query Parameters
    + + + + + + +
    p
    required
    integer
    Enum: 0 1 2
    query Parameters + + +
    +p<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    Limitations <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -1227,7 +2458,8 @@

    Limitations

    - + + @@ -1242,22 +2474,95 @@

    Limitations

    -
    ID Summary
    0 CAMERA_IDLE CAMERA_EXTERNAL_CONTROL
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/control/set_ui_controller?p=0'

    Response samples

    Content type
    application/json
    { }

    Set Date / Time

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/control/set_ui_controller?p=0'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Set Date / Time

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black

    Supported Protocols:

    @@ -1266,53 +2571,147 @@

    Limitations

  • WIFI

  • -
    query Parameters
    date
    required
    string
    Example: date=2023_12_31

    current date in format YYYY_MM_DD

    -
    time
    required
    string
    Example: time=21_12_13

    current time in format HH_MM_SS in 24 hour format

    -
    tzone
    required
    integer
    Example: tzone=-480

    Timezone offset in minutes. See here for a -listing of all UTC offsets.

    -

    Not supported on:

    -
      -
    • Hero 10 Black
    • -
    • Hero 9 Black
    • -
    -
    dst
    required
    integer
    Enum: 0 1

    Is daylight savings time active?

    -

    Not supported on:

    -
      -
    • Hero 10 Black
    • -
    • Hero 9 Black
    • +
    +
    +
    query Parameters
    + + + + + + + + + + + + + + + + + +
    +date<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: date=2023_12_31 +
    +
    +

    current date in format YYYY_MM_DD

    +
    +
    +
    +time<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: time=21_12_13 +
    +
    +

    current time in format HH_MM_SS in 24 hour format

    +
    +
    +
    +tzone<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div>integer Example: tzone=-480Timezone offset in minutes. See here for a +listing of all UTC offsets. +Not supported on +Hero 10 Black +Hero 9 Black
    +dst<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div>integer Enum: 0 1 Is daylight savings time active? +Not supported on +Hero 10 Black +Hero 9 Black
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + +
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/set_date_time?date=2023_12_31&time=21_12_13&tzone=-480&dst=0'

    Response samples

    Content type
    application/json
    { }

    Set Digital Zoom

    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/set_date_time?date=2023_12_31&time=21_12_13&tzone=-480&dst=0'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Set Digital Zoom

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1323,24 +2722,110 @@

    Limitations

  • WIFI

  • -
    query Parameters
    percent
    required
    integer [ 0 .. 100 ]
    Example: percent=50

    Zoom Level (0-100)

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/digital_zoom?percent=50'

    Response samples

    Content type
    application/json
    { }

    Set Shutter

    query Parameters + + + +
    +percent<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 100 ] +
    + Example: percent=50 +
    +
    +

    Zoom Level (0-100)

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/digital_zoom?percent=50'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Set Shutter

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black

    @@ -1350,24 +2835,117 @@

    Limitations

  • WIFI

  • -
    path Parameters
    mode
    required
    string
    Enum: "start" "stop"
    Example: start

    Start / stop encoding.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/shutter/start

    Response samples

    Content type
    application/json
    { }

    Hilights

    path Parameters + + + +
    +mode<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +
    + Enum: "start" "stop"
    + Example: start +
    +
    +

    Start / stop encoding.

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/shutter/start
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +

    +Hilights

    +
    +

    The HiLight Tags feature allows the user to tag moments of interest either during video capture or on existing media.

    Once HiLight tags have been added, they can be queried via Media Info

    -

    Hilight a Media File

    +
    +

    +Hilight a Media File

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1387,19 +2966,122 @@

    Limitations


    Add a hilight / tag to an existing photo or media file.

    -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.MP4

    The path to a file on the camera to HiLight

    -
    ms
    integer
    Example: ms=1

    The offset from the beginning of a video file, in milliseconds

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/hilight/file?path=100GOPRO/GOPR0002.MP4&ms=1'

    Response samples

    Content type
    application/json
    { }

    Hilight While Recording

    query Parameters + + + + + + + + + +
    +path<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: path=100GOPRO/GOPR0002.MP4 +
    +
    +

    The path to a file on the camera to HiLight

    +
    +
    +
    +ms + +
    +
    +integer +
    + Example: ms=1 +
    +
    +

    The offset from the beginning of a video file, in milliseconds

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/hilight/file?path=100GOPRO/GOPR0002.MP4&ms=1'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Hilight While Recording

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black

    @@ -1420,18 +3103,91 @@

    Limitations


    Add hilight at current time while recording video

    This can only be used during recording.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/media/hilight/moment

    Response samples

    Content type
    application/json
    { }

    Remove Hilight

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/media/hilight/moment
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Remove Hilight

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1451,20 +3208,134 @@

    Limitations


    Remove an existing hilight from a photo or video file.

    -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.MP4

    The path to a file on the camera to remove a HiLight from

    -
    ms
    integer
    Example: ms=1

    The offset from the beginning of a video file, in milliseconds

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/hilight/remove?path=100GOPRO/GOPR0002.MP4&ms=1'

    Response samples

    Content type
    application/json
    { }

    Media

    This section describes the operations to query basic details about media captured on the sdcard.

    -

    Chapters

    query Parameters + + + + + + + + + +
    +path<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: path=100GOPRO/GOPR0002.MP4 +
    +
    +

    The path to a file on the camera to remove a HiLight from

    +
    +
    +
    +ms + +
    +
    +integer +
    + Example: ms=1 +
    +
    +

    The offset from the beginning of a video file, in milliseconds

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/hilight/remove?path=100GOPRO/GOPR0002.MP4&ms=1'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Media

    +
    +

    This section describes the operations to query basic details about media captured on the sdcard.

    +
    +
    +
    +

    +Chapters

    +
    +

    All GoPro cameras break longer videos into chapters. GoPro cameras currently limit file sizes on sdcards to 4GB for both FAT32 and exFAT file systems. This limitation is most commonly seen when recording longer (10+ minute) videos. In practice, the camera will split video media into chapters named Gqccmmmm.MP4 (and ones for THM/LRV) such that:

    @@ -1514,18 +3386,25 @@

    Limitations

    -rwxrwxrwx@ 1 gopro 123456789 184517614 Jan 1 00:00 GL030078.LRV -rwxrwxrwx@ 1 gopro 123456789 34877660 Jan 1 00:00 GL040078.LRV -

    Delete All Files

    +
    +

    +Delete All Files

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1536,16 +3415,83 @@

    Limitations

  • WIFI

  • -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gp/gpControl/command/storage/delete/all

    Response samples

    Content type
    application/json
    { }

    Delete Grouped Media Item

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gp/gpControl/command/storage/delete/all
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Delete Grouped Media Item

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1567,20 +3514,111 @@

    Limitations


    Delete an entire group of media files such as in a burst, timelapse, or chaptered video. This API should not be used to delete single files. Instead use Delete Single File

    -
    query Parameters
    p
    required
    string
    Example: p=105GOPRO/G0016880.JPG

    The path to the group on the camera to delete. This path must be the first file in the group.

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gp/gpControl/command/storage/delete/group?p=105GOPRO/G0016880.JPG'

    Response samples

    Content type
    application/json
    { }

    Delete Single Media File

    query Parameters + + + +
    +p<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: p=105GOPRO/G0016880.JPG +
    +
    +

    The path to the group on the camera to delete. This path must be the first file in the group.

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gp/gpControl/command/storage/delete/group?p=105GOPRO/G0016880.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Delete Single Media File

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1602,20 +3641,111 @@

    Limitations


    When operating on a file that is part of a group, only the individual file will be deleted. To delete the entire group, use Delete Grouped Media Item

    -
    query Parameters
    p
    required
    string
    Example: p=105GOPRO/GOPR6879.JPG

    path to media file to delete

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/delete/file?p=105GOPRO/GOPR6879.JPG'

    Response samples

    Content type
    application/json
    { }

    Download a Media File

    query Parameters + + + +
    +p<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: p=105GOPRO/GOPR6879.JPG +
    +
    +

    path to media file to delete

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/delete/file?p=105GOPRO/GOPR6879.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Download a Media File

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1635,16 +3766,106 @@

    Limitations


    Note that this is the same endpoint for all media (photos, video, etc.).

    -
    path Parameters
    directory
    required
    string
    Example: 100GOPRO

    Case sensitive directory that media resides in

    -
    filename
    required
    string
    Examples:
    • GOPR0001.JPG - Sample photo file
    • GH010397.MP4 - Sample video file

    Case sensitive media filename

    -

    Responses

    Response Schema: application/octet-stream
    string <binary>

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/videos/DCIM/100GOPRO/%7Bfilename%7D

    Get Last Captured Media

    path Parameters + + + + + + + + + +
    +directory<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: 100GOPRO +
    +
    +

    Case sensitive directory that media resides in

    +
    +
    +
    +filename<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    Examples:
      +
    • +GOPR0001.JPG - Sample photo file
    • +
    • +GH010397.MP4 - Sample video file
    • +
    +
    +

    Case sensitive media filename

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/octet-stream +
    +
    +
    +string <binary> +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/videos/DCIM/100GOPRO/%7Bfilename%7D
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Last Captured Media

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • @@ -1668,22 +3890,132 @@

      Limitations

    • single photo / video: The single media path
    • any grouped media: The path to the first captured media in the group
    -

    Responses

    Response Schema: application/json
    file
    string
    Example: "GOPR0002.JPG"

    Filename of media

    -
    folder
    string
    Example: "100GOPRO"

    Directory in which the media is contained in

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/media/last_captured

    Response samples

    Content type
    application/json
    {
    • "file": "GOPR0002.JPG",
    • "folder": "100GOPRO"
    }

    Get Media File GPMF

    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + +
    +file + +
    +
    +string +
    + Example: "GOPR0002.JPG" +
    +
    +

    Filename of media

    +
    +
    +
    +folder + +
    +
    +string +
    + Example: "100GOPRO" +
    +
    +

    Directory in which the media is contained in

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/media/last_captured
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"file": "GOPR0002.JPG", +
    • +
    • +"folder": "100GOPRO" +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media File GPMF

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1703,29 +4036,100 @@

    Limitations


    None

    -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.JPG

    media file name

    -

    Responses

    Response Schema: application/octet-stream
    string <binary>

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/gpmf?path=100GOPRO/GOPR0002.JPG'

    Get Media File Info

    +
    Response Schema: application/octet-stream +
    +
    +
    +string <binary> +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/gpmf?path=100GOPRO/GOPR0002.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media File Info

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -1736,11 +4140,52 @@

    Limitations

  • WIFI

  • -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.JPG

    media file name

    -

    Responses

    Response Schema: application/json
    Any of
    ct
    required
    integer
    Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    query Parameters + + + +
    +path<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: path=100GOPRO/GOPR0002.JPG +
    +
    +

    media file name

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    + Any of
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +ct<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    Limitations <td>12</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Media content type

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Media content type

    @@ -1805,7 +4251,8 @@

    Limitations

    - + + @@ -1853,58 +4300,433 @@

    Limitations

    -
    Mode
    Video 0
    Live Burst 12
    -
    cre
    required
    integer
    Example: "1692992748"

    Creation time in seconds since epoch

    -
    s
    required
    integer
    Example: "1234567890"

    File size in bytes

    -
    gumi
    required
    string
    Example: "12345678998765443211234567899875"

    Globally Unique Media ID

    -
    h
    required
    integer
    Example: "1080"

    Height of media in pixels

    -
    w
    required
    integer
    Example: "1920"

    Width of media in pixels

    -
    hc
    required
    integer [ 0 .. 99 ]

    Number of hilights in media

    -
    eis
    required
    integer
    Enum: 0 1

    1 if stabilized, 0 otherwise

    -
    mp
    required
    integer
    Enum: 0 1

    1 if metadata is present, 0 otherwise

    -
    rot
    required
    string

    Deprecated

    -
    tr
    required
    integer
    Enum: 0 1

    1 if file is transcoded, 0 otherwise

    -
    us
    required
    integer
    Enum: 0 1

    Has the file been uploaded? 0 if no, 1 if yes

    -
    ao
    required
    string
    Enum: "auto" "wind" "stereo" "off"
    Example: "auto"

    Audio option

    -
    profile
    required
    integer [ 0 .. 255 ]

    Advanced Video Codec Level

    -
    avc_profile
    required
    integer [ 0 .. 255 ]
    Example: "0"

    Advanced Video Code Profile

    -
    cl
    required
    integer
    Enum: 0 1

    1 if clipped, 0 otherwise

    -
    dur
    required
    integer
    Example: "42"

    Video duration in seconds

    -
    fps
    required
    integer
    Example: "1001"

    Video frame rate numerator

    -
    fps_denom
    required
    integer
    Example: "30000"

    Video frame rate denominator

    -
    ls
    required
    integer [ -1 .. 1234567890 ]

    Low Resolution Video file size in bytes. -1 if there is no LRV file

    -
    pta
    required
    integer
    Enum: 0 1

    1 if protune audio is present, 0 otherwise

    -
    subsample
    required
    integer
    Enum: 0 1

    1 if subsampled from other video, 0 otherwise

    -
    fov
    string

    Field of View

    -
    hi
    Array of integers
    Example: "1500,4700"

    List of hilights in ms offset from start of video

    -
    lc
    integer
    Enum: 0 1

    Lens configuration ==> 0 for front, 1 for rear

    -
    mos
    Array of strings
    Items Enum: "app" "pc" "other"
    Example: "app,pc"

    List of offload states

    -
    prjn
    integer
    Enum: 0 1 2 3 4 5 6 7 8
    +
    +cre<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1692992748" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +
    +s<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1234567890" +
    +
    +

    File size in bytes

    +
    +
    +
    +gumi<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "12345678998765443211234567899875" +
    +
    +

    Globally Unique Media ID

    +
    +
    +
    +h<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1080" +
    +
    +

    Height of media in pixels

    +
    +
    +
    +w<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1920" +
    +
    +

    Width of media in pixels

    +
    +
    +
    +hc<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 99 ] +
    +

    Number of hilights in media

    +
    +
    +
    +eis<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if stabilized, 0 otherwise

    +
    +
    +
    +mp<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if metadata is present, 0 otherwise

    +
    +
    +
    +rot<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +

    Deprecated

    +
    +
    +
    +tr<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if file is transcoded, 0 otherwise

    +
    +
    +
    +us<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Has the file been uploaded? 0 if no, 1 if yes

    +
    +
    +
    +ao<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +
    + Enum: "auto" "wind" "stereo" "off"
    + Example: "auto" +
    +
    +

    Audio option

    +
    +
    +
    +profile<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 255 ] +
    +

    Advanced Video Codec Level

    +
    +
    +
    +avc_profile<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 255 ] +
    + Example: "0" +
    +
    +

    Advanced Video Code Profile

    +
    +
    +
    +cl<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if clipped, 0 otherwise

    +
    +
    +
    +dur<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "42" +
    +
    +

    Video duration in seconds

    +
    +
    +
    +fps<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1001" +
    +
    +

    Video frame rate numerator

    +
    +
    +
    +fps_denom<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "30000" +
    +
    +

    Video frame rate denominator

    +
    +
    +
    +ls<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ -1 .. 1234567890 ] +
    +

    Low Resolution Video file size in bytes. -1 if there is no LRV file

    +
    +
    +
    +pta<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if protune audio is present, 0 otherwise

    +
    +
    +
    +subsample<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if subsampled from other video, 0 otherwise

    +
    +
    +
    +fov + +
    +
    +string +
    +

    Field of View

    +
    +
    +
    +hi + +
    +
    +Array of integers +
    + Example: "1500,4700" +
    +
    +

    List of hilights in ms offset from start of video

    +
    +
    +
    +lc + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Lens configuration ==> 0 for front, 1 for rear

    +
    +
    +
    +mos + +
    +
    +Array of strings +
    +
    +Items Enum: "app" "pc" "other"
    + Example: "app,pc" +
    +
    +

    List of offload states

    +
    +
    +
    +prjn + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8
    Limitations <td>8</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Lens projection

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Lens projection

    @@ -1957,7 +4780,8 @@

    Limitations

    - + + @@ -1993,17 +4817,199 @@

    Limitations

    + +
    Mode
    EAC 0
    Hemisheric 8
    +
    +
    +
    +progr + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is video progressive? 1 if progressive, 0 if interlaced

    +
    +
    +
    -
    progr
    integer
    Enum: 0 1

    Is video progressive? 1 if progressive, 0 if interlaced

    -

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/info?path=100GOPRO/GOPR0002.JPG'

    Response samples

    Content type
    application/json
    Example
    {
    • "ao": "auto",
    • "avc_profile": 0,
    • "cl": 0,
    • "cre": 1692992748,
    • "ct": 0,
    • "dur": 42,
    • "eis": 0,
    • "fov": "string",
    • "fps": 1001,
    • "fps_denom": 30000,
    • "gumi": "12345678998765443211234567899875",
    • "h": 1080,
    • "hc": 99,
    • "hi": [
      ],
    • "lc": 0,
    • "ls": -1,
    • "mos": [
      ],
    • "mp": 0,
    • "prjn": 0,
    • "profile": 255,
    • "progr": 0,
    • "pta": 0,
    • "rot": "string",
    • "s": 1234567890,
    • "subsample": 0,
    • "tr": 0,
    • "us": 0,
    • "w": 1920
    }

    Get Media File Screennail

    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/info?path=100GOPRO/GOPR0002.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +Example
    + +
    +
    +
    +
    + +
    +
    {
      +
    • +"ao": "auto", +
    • +
    • +"avc_profile": 0, +
    • +
    • +"cl": 0, +
    • +
    • +"cre": 1692992748, +
    • +
    • +"ct": 0, +
    • +
    • +"dur": 42, +
    • +
    • +"eis": 0, +
    • +
    • +"fov": "string", +
    • +
    • +"fps": 1001, +
    • +
    • +"fps_denom": 30000, +
    • +
    • +"gumi": "12345678998765443211234567899875", +
    • +
    • +"h": 1080, +
    • +
    • +"hc": 99, +
    • +
    • +"hi": [
        +
      • +
      • +
      +], +
    • +
    • +"lc": 0, +
    • +
    • +"ls": -1, +
    • +
    • +"mos": [
        +
      • +
      • +
      +], +
    • +
    • +"mp": 0, +
    • +
    • +"prjn": 0, +
    • +
    • +"profile": 255, +
    • +
    • +"progr": 0, +
    • +
    • +"pta": 0, +
    • +
    • +"rot": "string", +
    • +
    • +"s": 1234567890, +
    • +
    • +"subsample": 0, +
    • +
    • +"tr": 0, +
    • +
    • +"us": 0, +
    • +
    • +"w": 1920 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media File Screennail

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -2023,18 +5030,88 @@

    Limitations


    A screennail is a low-res preview image that is higher resolution than a thumbnail.

    -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.JPG

    media file name

    -

    Responses

    Response Schema: application/octet-stream
    string <binary>

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/screennail?path=100GOPRO/GOPR0002.JPG'

    Get Media File Telemetry

    query Parameters + + + +
    +path<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: path=100GOPRO/GOPR0002.JPG +
    +
    +

    media file name

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/octet-stream +
    +
    +
    +string <binary> +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/screennail?path=100GOPRO/GOPR0002.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media File Telemetry

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -2054,29 +5132,100 @@

    Limitations


    Get Media File Telemetry track data

    -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.JPG

    media file name

    -

    Responses

    Response Schema: application/octet-stream
    string <binary>

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/telemetry?path=100GOPRO/GOPR0002.JPG'

    Get Media File Thumbnail

    +
    Response Schema: application/octet-stream +
    +
    +
    +string <binary> +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/telemetry?path=100GOPRO/GOPR0002.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media File Thumbnail

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -2087,18 +5236,88 @@

    Limitations

  • WIFI

  • -
    query Parameters
    path
    required
    string
    Example: path=100GOPRO/GOPR0002.JPG

    media file name

    -

    Responses

    Response Schema: application/octet-stream
    string <binary>

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/media/thumbnail?path=100GOPRO/GOPR0002.JPG'

    Get Media List

    query Parameters + + + +
    +path<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: path=100GOPRO/GOPR0002.JPG +
    +
    +

    media file name

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/octet-stream +
    +
    +
    +string <binary> +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/media/thumbnail?path=100GOPRO/GOPR0002.JPG'
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Media List

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -2160,7 +5380,7 @@

    Limitations

    To minimize the size of the JSON transmitted by the camera, grouped media items such as Burst Photos, Time Lapse Photos, Night Lapse Photos, etc are represented with a single item in the media list with additional keys that allow the user to extrapolate individual filenames for each member of the group.

    -

    Filenames for group media items have the form "GXXXYYYY.ZZZ" +

    Filenames for group media items have the form "GXXXYYYY.ZZZ" where XXX is the group ID, YYY is the group member ID and ZZZ is the file extension.

    For example, take the media list below, which contains a Time Lapse Photo group media item:

    {
    @@ -2198,74 +5418,800 @@ 

    Limitations

    ..., G0010394.JPG, G0010395.JPG. G0010396.JPG
    -

    Responses

    Response Schema: application/json
    id
    required
    string
    Example: "1554375628411872255"

    media list identifier

    -
    required
    Array of objects
    Array
    d
    required
    string
    Example: "100GOPRO"

    directory that the media files reside in

    -
    required
    Array of SingleMediaListItem (object) or GroupedMediaListItem (object)

    list of files

    -
    Array
    Any of
    n
    required
    string
    Example: "GOPR0001.JPG"

    Media filename

    -
    cre
    required
    integer
    Example: "1696600109"

    Creation time in seconds since epoch

    -
    mod
    required
    integer
    Example: "1696600109"

    Time file was last modified in seconds since epoch

    -
    s
    required
    integer
    Example: "2806303"

    Size of media in bytes

    -
    glrv
    integer
    Example: "817767"

    Low resolution video size

    -
    ls
    integer
    Example: "-1"

    Low resolution file size. -1 if there is no LRV file

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/media/list

    Response samples

    Content type
    application/json
    {
    • "id": "1554375628411872255",
    • "media": [
      ]
    }

    Models

    Common data models used across operations

    -

    GroupedMediaListItem

    n
    required
    string
    Example: "G0010011.MP4"

    Media filename

    -
    cre
    required
    integer
    Example: "1696600109"

    Creation time in seconds since epoch

    -
    mod
    required
    integer
    Example: "1696600109"

    Time file was last modified in seconds since epoch

    -
    g
    required
    integer
    Example: "1"

    Group Identifier

    -
    s
    required
    integer
    Example: "5"

    Number of files in the group

    -
    b
    required
    integer
    Example: "1"

    ID of first member in the group

    -
    l
    required
    integer
    Example: "6"

    ID of last member in the group

    -
    m
    required
    Array of integers
    Example: "1,2"

    File ID's that are missing or deleted

    -
    t
    required
    string
    Enum: "b" "c" "n" "t"

    Group Type (b -> burst, c -> continuous shot, n -> night lapse, t -> time lapse)

    -
    glrv
    integer
    Example: "817767"

    Low resolution video size

    -
    id
    string

    Media list session identifier

    -
    ls
    integer
    Example: "-1"

    Low resolution file size. -1 if there is no LRV file

    -
    {
    • "b": 1,
    • "cre": 1696600109,
    • "g": 1,
    • "glrv": 817767,
    • "id": "string",
    • "l": 6,
    • "ls": -1,
    • "m": [
      ],
    • "mod": 1696600109,
    • "n": "G0010011.MP4",
    • "s": 5,
    • "t": "b"
    }

    MediaList

    id
    required
    string
    Example: "1554375628411872255"

    media list identifier

    -
    required
    Array of objects
    Array
    d
    required
    string
    Example: "100GOPRO"

    directory that the media files reside in

    -
    required
    Array of SingleMediaListItem (object) or GroupedMediaListItem (object)

    list of files

    -
    Array
    Any of
    n
    required
    string
    Example: "GOPR0001.JPG"

    Media filename

    -
    cre
    required
    integer
    Example: "1696600109"

    Creation time in seconds since epoch

    -
    mod
    required
    integer
    Example: "1696600109"

    Time file was last modified in seconds since epoch

    -
    s
    required
    integer
    Example: "2806303"

    Size of media in bytes

    -
    glrv
    integer
    Example: "817767"

    Low resolution video size

    -
    ls
    integer
    Example: "-1"

    Low resolution file size. -1 if there is no LRV file

    -
    {
    • "id": "1554375628411872255",
    • "media": [
      ]
    }

    PhotoMetadata

    + + + + + + + + +
    ct
    required
    integer
    Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + +
    +id<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "1554375628411872255" +
    +
    +

    media list identifier

    +
    +
    +
    +<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +Array of objects +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + + +
    +d
    required
    +
    +
    +string +
    + Example: "100GOPRO" +
    +
    +

    directory that the media files reside in

    +
    +
    +
    required
    +
    +
    +Array of SingleMediaListItem (object) or GroupedMediaListItem (object) +
    +

    list of files

    +
    +
    +
    Array
    +
    + Any of
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    +n
    required
    +
    +
    +string +
    + Example: "GOPR0001.JPG" +
    +
    +

    Media filename

    +
    +
    +cre
    required
    +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +mod
    required
    +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Time file was last modified in seconds since epoch

    +
    +
    +s
    required
    +
    +
    +integer +
    + Example: "2806303" +
    +
    +

    Size of media in bytes

    +
    +
    +glrv +
    +
    +integer +
    + Example: "817767" +
    +
    +

    Low resolution video size

    +
    +
    +ls +
    +
    +integer +
    + Example: "-1" +
    +
    +

    Low resolution file size. -1 if there is no LRV file

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/media/list
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    + +
    +
    {
      +
    • +"id": "1554375628411872255", +
    • +
    • +"media": [
      +] +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +

    +Models

    +
    +

    Common data models used across operations

    +
    +
    +
    +

    +GroupedMediaListItem

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +n<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "G0010011.MP4" +
    +
    +

    Media filename

    +
    +
    +
    +cre<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +
    +mod<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Time file was last modified in seconds since epoch

    +
    +
    +
    +g<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1" +
    +
    +

    Group Identifier

    +
    +
    +
    +s<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "5" +
    +
    +

    Number of files in the group

    +
    +
    +
    +b<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1" +
    +
    +

    ID of first member in the group

    +
    +
    +
    +l<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "6" +
    +
    +

    ID of last member in the group

    +
    +
    +
    +m<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +Array of integers +
    + Example: "1,2" +
    +
    +

    File ID's that are missing or deleted

    +
    +
    +
    +t<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +
    + Enum: "b" "c" "n" "t"
    +

    Group Type (b -> burst, c -> continuous shot, n -> night lapse, t -> time lapse)

    +
    +
    +
    +glrv + +
    +
    +integer +
    + Example: "817767" +
    +
    +

    Low resolution video size

    +
    +
    +
    +id + +
    +
    +string +
    +

    Media list session identifier

    +
    +
    +
    +ls + +
    +
    +integer +
    + Example: "-1" +
    +
    +

    Low resolution file size. -1 if there is no LRV file

    +
    +
    +
    +
    +
    + +
    +
    {
      +
    • +"b": 1, +
    • +
    • +"cre": 1696600109, +
    • +
    • +"g": 1, +
    • +
    • +"glrv": 817767, +
    • +
    • +"id": "string", +
    • +
    • +"l": 6, +
    • +
    • +"ls": -1, +
    • +
    • +"m": [
        +
      • +
      • +
      +], +
    • +
    • +"mod": 1696600109, +
    • +
    • +"n": "G0010011.MP4", +
    • +
    • +"s": 5, +
    • +
    • +"t": "b" +
    • +
    +}
    +
    +
    +
    +
    +

    +MediaList

    +
    +
    + + + + + + + + + +
    +id<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "1554375628411872255" +
    +
    +

    media list identifier

    +
    +
    +
    +<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +Array of objects +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + + +
    +d
    required
    +
    +
    +string +
    + Example: "100GOPRO" +
    +
    +

    directory that the media files reside in

    +
    +
    +
    required
    +
    +
    +Array of SingleMediaListItem (object) or GroupedMediaListItem (object) +
    +

    list of files

    +
    +
    +
    Array
    +
    + Any of
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    +n
    required
    +
    +
    +string +
    + Example: "GOPR0001.JPG" +
    +
    +

    Media filename

    +
    +
    +cre
    required
    +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +mod
    required
    +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Time file was last modified in seconds since epoch

    +
    +
    +s
    required
    +
    +
    +integer +
    + Example: "2806303" +
    +
    +

    Size of media in bytes

    +
    +
    +glrv +
    +
    +integer +
    + Example: "817767" +
    +
    +

    Low resolution video size

    +
    +
    +ls +
    +
    +integer +
    + Example: "-1" +
    +
    +

    Low resolution file size. -1 if there is no LRV file

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    {
      +
    • +"id": "1554375628411872255", +
    • +
    • +"media": [
      +] +
    • +
    +}
    +
    +
    +
    +
    +

    +PhotoMetadata

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +ct<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    Limitations <td>12</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Media content type

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Media content type

    @@ -2330,7 +6277,8 @@

    Limitations

    - + + @@ -2378,38 +6326,269 @@

    Limitations

    -
    Mode
    Video 0
    Live Burst 12
    -
    cre
    required
    integer
    Example: "1692992748"

    Creation time in seconds since epoch

    -
    s
    required
    integer
    Example: "1234567890"

    File size in bytes

    -
    gumi
    required
    string
    Example: "12345678998765443211234567899875"

    Globally Unique Media ID

    -
    h
    required
    integer
    Example: "1080"

    Height of media in pixels

    -
    w
    required
    integer
    Example: "1920"

    Width of media in pixels

    -
    hc
    required
    integer [ 0 .. 99 ]

    Number of hilights in media

    -
    eis
    required
    integer
    Enum: 0 1

    1 if stabilized, 0 otherwise

    -
    mp
    required
    integer
    Enum: 0 1

    1 if metadata is present, 0 otherwise

    -
    rot
    required
    string

    Deprecated

    -
    tr
    required
    integer
    Enum: 0 1

    1 if file is transcoded, 0 otherwise

    -
    us
    required
    integer
    Enum: 0 1

    Has the file been uploaded? 0 if no, 1 if yes

    -
    fov
    string

    Field of View

    -
    hdr
    integer
    Enum: 0 1

    1 if photo taken with high dynamic range, 0 otherwise

    -
    lc
    integer
    Enum: 0 1

    Lens configuration ==> 0 for front, 1 for rear

    -
    mos
    Array of strings
    Items Enum: "app" "pc" "other"
    Example: "app,pc"

    List of offload states

    -
    prjn
    integer
    Enum: 0 1 2 3 4 5 6 7 8
    +
    +cre<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1692992748" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +
    +s<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1234567890" +
    +
    +

    File size in bytes

    +
    +
    +
    +gumi<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "12345678998765443211234567899875" +
    +
    +

    Globally Unique Media ID

    +
    +
    +
    +h<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1080" +
    +
    +

    Height of media in pixels

    +
    +
    +
    +w<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1920" +
    +
    +

    Width of media in pixels

    +
    +
    +
    +hc<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 99 ] +
    +

    Number of hilights in media

    +
    +
    +
    +eis<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if stabilized, 0 otherwise

    +
    +
    +
    +mp<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if metadata is present, 0 otherwise

    +
    +
    +
    +rot<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +

    Deprecated

    +
    +
    +
    +tr<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if file is transcoded, 0 otherwise

    +
    +
    +
    +us<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Has the file been uploaded? 0 if no, 1 if yes

    +
    +
    +
    +fov + +
    +
    +string +
    +

    Field of View

    +
    +
    +
    +hdr + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if photo taken with high dynamic range, 0 otherwise

    +
    +
    +
    +lc + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Lens configuration ==> 0 for front, 1 for rear

    +
    +
    +
    +mos + +
    +
    +Array of strings +
    +
    +Items Enum: "app" "pc" "other"
    + Example: "app,pc" +
    +
    +

    List of offload states

    +
    +
    +
    +prjn + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8
    Limitations <td>8</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Lens projection

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Lens projection

    @@ -2462,7 +6642,8 @@

    Limitations

    - + + @@ -2498,12 +6679,135 @@

    Limitations

    -
    Mode
    EAC 0
    Hemisheric 8
    -
    raw
    integer
    Enum: 0 1

    1 if photo has raw version, 0 otherwise

    -
    wdr
    integer
    Enum: 0 1

    1 if photo taken with wide dynamic range, 0 otherwise

    -
    {
    • "cre": 1692992748,
    • "ct": 0,
    • "eis": 0,
    • "fov": "string",
    • "gumi": "12345678998765443211234567899875",
    • "h": 1080,
    • "hc": 99,
    • "hdr": 0,
    • "lc": 0,
    • "mos": [
      ],
    • "mp": 0,
    • "prjn": 0,
    • "raw": 0,
    • "rot": "string",
    • "s": 1234567890,
    • "tr": 0,
    • "us": 0,
    • "w": 1920,
    • "wdr": 0
    }

    Preset

    + + + + + + +
    icon
    integer (EnumPresetIcon)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 89 90 91 92 93 94 95 96 97 98 99 100 101 102 1000 1001 1002
    +
    +raw + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if photo has raw version, 0 otherwise

    +
    +
    +
    +wdr + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if photo taken with wide dynamic range, 0 otherwise

    +
    +
    +
    +
    +
    + +
    +
    {
      +
    • +"cre": 1692992748, +
    • +
    • +"ct": 0, +
    • +
    • +"eis": 0, +
    • +
    • +"fov": "string", +
    • +
    • +"gumi": "12345678998765443211234567899875", +
    • +
    • +"h": 1080, +
    • +
    • +"hc": 99, +
    • +
    • +"hdr": 0, +
    • +
    • +"lc": 0, +
    • +
    • +"mos": [
        +
      • +
      • +
      +], +
    • +
    • +"mp": 0, +
    • +
    • +"prjn": 0, +
    • +
    • +"raw": 0, +
    • +
    • +"rot": "string", +
    • +
    • +"s": 1234567890, +
    • +
    • +"tr": 0, +
    • +
    • +"us": 0, +
    • +
    • +"w": 1920, +
    • +
    • +"wdr": 0 +
    • +
    +}
    +
    +
    +
    +
    +

    +Preset

    +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    +icon + +
    +
    +integer (EnumPresetIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 1000 1001
    Limitations <td></td> </tr> <tr> -<td>12</td> -<td>PRESET_ICON_360_VIDEO</td> -<td></td> -</tr> -<tr> <td>13</td> <td>PRESET_ICON_PHOTO_2</td> <td></td> @@ -2727,21 +7026,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>55</td> -<td>PRESET_ICON_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_ICON_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_ICON_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>58</td> <td>PRESET_ICON_BASIC</td> <td></td> @@ -2837,122 +7121,18 @@

    Limitations

    <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_ICON_EASY_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>81</td> -<td>PRESET_ICON_EASY_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>82</td> -<td>PRESET_ICON_EASY_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>83</td> -<td>PRESET_ICON_EASY_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>84</td> -<td>PRESET_ICON_EASY_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>85</td> -<td>PRESET_ICON_EASY_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>89</td> -<td>PRESET_ICON_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>90</td> -<td>PRESET_ICON_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>91</td> -<td>PRESET_ICON_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>92</td> -<td>PRESET_ICON_360_BURST</td> -<td></td> -</tr> -<tr> -<td>93</td> -<td>PRESET_ICON_360_PHOTO_NIGHT</td> +<td>1000</td> +<td>PRESET_ICON_TIMELAPSE_PHOTO</td> <td></td> </tr> <tr> -<td>94</td> -<td>PRESET_ICON_360_NIGHTLAPSE</td> -<td></td> -</tr> -<tr> -<td>95</td> -<td>PRESET_ICON_360_TIMELAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>96</td> -<td>PRESET_ICON_360_NIGHTLAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>97</td> -<td>PRESET_ICON_360_PHOTO</td> -<td></td> -</tr> -<tr> -<td>98</td> -<td>PRESET_ICON_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>99</td> -<td>PRESET_ICON_360_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>100</td> -<td>PRESET_ICON_EASY_STANDARD_PROFILE</td> -<td></td> -</tr> -<tr> -<td>101</td> -<td>PRESET_ICON_EASY_HDR_PROFILE</td> -<td></td> -</tr> -<tr> -<td>102</td> -<td>PRESET_ICON_BURST_SLOMO</td> -<td></td> -</tr> -<tr> -<td>1000</td> -<td>PRESET_ICON_TIMELAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>1001</td> -<td>PRESET_ICON_NIGHTLAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>1002</td> -<td>PRESET_ICON_MAX</td> +<td>1001</td> +<td>PRESET_ICON_NIGHTLAPSE_PHOTO</td> <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -2960,7 +7140,8 @@

    Limitations

    - + + @@ -3021,11 +7202,6 @@

    Limitations

    - - - - - @@ -3176,21 +7352,6 @@

    Limitations

    - - - - - - - - - - - - - - - @@ -3286,106 +7447,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3395,19 +7456,68 @@

    Limitations

    - - - - - -
    ID Summary
    0 PRESET_ICON_VIDEO
    12PRESET_ICON_360_VIDEO
    13 PRESET_ICON_PHOTO_2
    55PRESET_ICON_MAX_VIDEO
    56PRESET_ICON_MAX_PHOTO
    57PRESET_ICON_MAX_TIMEWARP
    58 PRESET_ICON_BASIC
    80PRESET_ICON_EASY_MAX_VIDEO
    81PRESET_ICON_EASY_MAX_PHOTO
    82PRESET_ICON_EASY_MAX_TIMEWARP
    83PRESET_ICON_EASY_MAX_STAR_TRAIL
    84PRESET_ICON_EASY_MAX_LIGHT_PAINTING
    85PRESET_ICON_EASY_MAX_LIGHT_TRAIL
    89PRESET_ICON_MAX_STAR_TRAIL
    90PRESET_ICON_MAX_LIGHT_PAINTING
    91PRESET_ICON_MAX_LIGHT_TRAIL
    92PRESET_ICON_360_BURST
    93PRESET_ICON_360_PHOTO_NIGHT
    94PRESET_ICON_360_NIGHTLAPSE
    95PRESET_ICON_360_TIMELAPSE_PHOTO
    96PRESET_ICON_360_NIGHTLAPSE_PHOTO
    97PRESET_ICON_360_PHOTO
    98PRESET_ICON_360_TIMELAPSE
    99PRESET_ICON_360_TIMEWARP
    100PRESET_ICON_EASY_STANDARD_PROFILE
    101PRESET_ICON_EASY_HDR_PROFILE
    102PRESET_ICON_BURST_SLOMO
    1000 PRESET_ICON_TIMELAPSE_PHOTO PRESET_ICON_NIGHTLAPSE_PHOTO
    1002PRESET_ICON_MAX
    -
    id
    integer <int32>

    Unique preset identifier

    -
    isFixed
    boolean

    Is this preset mutable?

    -
    isModified
    boolean

    Has the preset been modified from the factory defaults?

    -
    mode
    integer (EnumFlatMode)
    Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    +
    +id + +
    +
    +integer <int32> +
    +

    Unique preset identifier

    +
    +
    +
    +isFixed + +
    +
    +boolean +
    +

    Is this preset mutable?

    +
    +
    +
    +isModified + +
    +
    +boolean +
    +

    Has the preset been modified from the factory defaults?

    +
    +
    +
    +mode + +
    +
    +integer (EnumFlatMode) +
    +
    + Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    Limitations <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -3539,7 +7650,8 @@

    Limitations

    - + + @@ -3654,14 +7766,82 @@

    Limitations

    -
    ID Summary
    -1 FLAT_MODE_UNKNOWN FLAT_MODE_VIDEO_BURST_SLOMO
    -
    Array of objects (PresetSetting)
    Array
    id
    integer <int32>

    Setting identifier

    -
    isCaption
    boolean

    Does this setting appear on the Preset "pill" in the camera UI?

    -
    value
    integer <int32>

    Setting value

    -
    titleId
    integer (EnumPresetTitle)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    +
    + + +
    +
    +Array of objects (PresetSetting) +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + + + + + +
    +id +
    +
    +integer <int32> +
    +

    Setting identifier

    +
    +
    +isCaption +
    +
    +boolean +
    +

    Does this setting appear on the Preset "pill" in the camera UI?

    +
    +
    +value +
    +
    +integer <int32> +
    +

    Setting value

    +
    +
    +
    +
    +
    +titleId + +
    +
    +integer (EnumPresetTitle) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 82 83 93 94
    Limitations <td></td> </tr> <tr> -<td>12</td> -<td>PRESET_TITLE_360_VIDEO</td> -<td></td> -</tr> -<tr> <td>13</td> <td>PRESET_TITLE_PHOTO_2</td> <td></td> @@ -3745,21 +7920,11 @@

    Limitations

    <td></td> </tr> <tr> -<td>15</td> -<td>PRESET_TITLE_360_PHOTO</td> -<td></td> -</tr> -<tr> <td>16</td> <td>PRESET_TITLE_TIME_WARP_2</td> <td></td> </tr> <tr> -<td>17</td> -<td>PRESET_TITLE_360_TIME_WARP</td> -<td></td> -</tr> -<tr> <td>18</td> <td>PRESET_TITLE_CUSTOM</td> <td></td> @@ -3885,81 +8050,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>43</td> -<td>PRESET_TITLE_CUSTOM_CINEMATIC</td> -<td></td> -</tr> -<tr> -<td>44</td> -<td>PRESET_TITLE_DIVE</td> -<td></td> -</tr> -<tr> -<td>45</td> -<td>PRESET_TITLE_FPV</td> -<td></td> -</tr> -<tr> -<td>46</td> -<td>PRESET_TITLE_HDR</td> -<td></td> -</tr> -<tr> -<td>47</td> -<td>PRESET_TITLE_LANDSCAPE</td> -<td></td> -</tr> -<tr> -<td>48</td> -<td>PRESET_TITLE_LOG</td> -<td></td> -</tr> -<tr> -<td>49</td> -<td>PRESET_TITLE_CUSTOM_SLOMO</td> -<td></td> -</tr> -<tr> -<td>50</td> -<td>PRESET_TITLE_TRIPOD</td> -<td></td> -</tr> -<tr> -<td>51</td> -<td>PRESET_TITLE_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>52</td> -<td>PRESET_TITLE_360_NIGHT_LAPSE</td> -<td></td> -</tr> -<tr> -<td>53</td> -<td>PRESET_TITLE_360_NIGHT_PHOTO</td> -<td></td> -</tr> -<tr> -<td>54</td> -<td>PRESET_TITLE_PANO_TIME_LAPSE</td> -<td></td> -</tr> -<tr> -<td>55</td> -<td>PRESET_TITLE_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_TITLE_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_TITLE_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>58</td> <td>PRESET_TITLE_BASIC</td> <td></td> @@ -4070,16 +8160,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_TITLE_MAX_LENS_VIDEO</td> -<td></td> -</tr> -<tr> -<td>81</td> -<td>PRESET_TITLE_MAX_LENS_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>82</td> <td>PRESET_TITLE_STANDARD_QUALITY_VIDEO</td> <td></td> @@ -4090,51 +8170,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>84</td> -<td>PRESET_TITLE_EASY_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>85</td> -<td>PRESET_TITLE_EASY_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>86</td> -<td>PRESET_TITLE_EASY_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>87</td> -<td>PRESET_TITLE_EASY_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>88</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>89</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>90</td> -<td>PRESET_TITLE_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>91</td> -<td>PRESET_TITLE_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>92</td> -<td>PRESET_TITLE_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> <td>93</td> <td>PRESET_TITLE_HIGHEST_QUALITY_VIDEO</td> <td></td> @@ -4144,78 +8179,9 @@

    Limitations

    <td>PRESET_TITLE_USER_DEFINED_CUSTOM_NAME</td> <td></td> </tr> -<tr> -<td>95</td> -<td>PRESET_TITLE_360_DEG_BURST</td> -<td>- FW_PRESET_TITLE_360_BURST</td> -</tr> -<tr> -<td>96</td> -<td>PRESET_TITLE_360_DEG_NIGHT_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT</td> -</tr> -<tr> -<td>97</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO</td> -</tr> -<tr> -<td>98</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO</td> -</tr> -<tr> -<td>99</td> -<td>PRESET_TITLE_EASY_STANDARD_PROFILE</td> -<td></td> -</tr> -<tr> -<td>100</td> -<td>PRESET_TITLE_EASY_HDR_PROFILE</td> -<td></td> -</tr> -<tr> -<td>101</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_LAPSE</td> -</tr> -<tr> -<td>102</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE</td> -</tr> -<tr> -<td>103</td> -<td>PRESET_TITLE_360_DEG_PHOTO</td> -<td>- FW_PRESET_TITLE_MAX_2_PHOTO</td> -</tr> -<tr> -<td>104</td> -<td>PRESET_TITLE_360_DEG_TIME_WARP</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_WARP</td> -</tr> -<tr> -<td>105</td> -<td>PRESET_TITLE_360_DEG_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_VIDEO</td> -</tr> -<tr> -<td>106</td> -<td>PRESET_TITLE_BURST_SLOMO</td> -<td></td> -</tr> -<tr> -<td>107</td> -<td>PRESET_TITLE_VLOG</td> -<td></td> -</tr> -<tr> -<td>108</td> -<td>PRESET_TITLE_MAX</td> -<td></td> -</tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -4223,7 +8189,8 @@

    Limitations

    - + + @@ -4284,11 +8251,6 @@

    Limitations

    - - - - - @@ -4299,21 +8261,11 @@

    Limitations

    - - - - - - - - - - @@ -4439,81 +8391,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4624,16 +8501,6 @@

    Limitations

    - - - - - - - - - - @@ -4644,51 +8511,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4698,84 +8520,125 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ID Summary
    0 PRESET_TITLE_ACTIVITY
    12PRESET_TITLE_360_VIDEO
    13 PRESET_TITLE_PHOTO_2
    15PRESET_TITLE_360_PHOTO
    16 PRESET_TITLE_TIME_WARP_2
    17PRESET_TITLE_360_TIME_WARP
    18 PRESET_TITLE_CUSTOM
    43PRESET_TITLE_CUSTOM_CINEMATIC
    44PRESET_TITLE_DIVE
    45PRESET_TITLE_FPV
    46PRESET_TITLE_HDR
    47PRESET_TITLE_LANDSCAPE
    48PRESET_TITLE_LOG
    49PRESET_TITLE_CUSTOM_SLOMO
    50PRESET_TITLE_TRIPOD
    51PRESET_TITLE_360_TIMELAPSE
    52PRESET_TITLE_360_NIGHT_LAPSE
    53PRESET_TITLE_360_NIGHT_PHOTO
    54PRESET_TITLE_PANO_TIME_LAPSE
    55PRESET_TITLE_MAX_VIDEO
    56PRESET_TITLE_MAX_PHOTO
    57PRESET_TITLE_MAX_TIMEWARP
    58 PRESET_TITLE_BASIC
    80PRESET_TITLE_MAX_LENS_VIDEO
    81PRESET_TITLE_MAX_LENS_TIMEWARP
    82 PRESET_TITLE_STANDARD_QUALITY_VIDEO
    84PRESET_TITLE_EASY_MAX_VIDEO
    85PRESET_TITLE_EASY_MAX_PHOTO
    86PRESET_TITLE_EASY_MAX_TIMEWARP
    87PRESET_TITLE_EASY_MAX_STAR_TRAIL
    88PRESET_TITLE_EASY_MAX_LIGHT_PAINTING
    89PRESET_TITLE_EASY_MAX_LIGHT_TRAIL
    90PRESET_TITLE_MAX_STAR_TRAIL
    91PRESET_TITLE_MAX_LIGHT_PAINTING
    92PRESET_TITLE_MAX_LIGHT_TRAIL
    93 PRESET_TITLE_HIGHEST_QUALITY_VIDEO PRESET_TITLE_USER_DEFINED_CUSTOM_NAME
    95PRESET_TITLE_360_DEG_BURST- FW_PRESET_TITLE_360_BURST
    96PRESET_TITLE_360_DEG_NIGHT_PHOTO- FW_PRESET_TITLE_360_NIGHT
    97PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO
    98PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO
    99PRESET_TITLE_EASY_STANDARD_PROFILE
    100PRESET_TITLE_EASY_HDR_PROFILE
    101PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_TIME_LAPSE
    102PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE
    103PRESET_TITLE_360_DEG_PHOTO- FW_PRESET_TITLE_MAX_2_PHOTO
    104PRESET_TITLE_360_DEG_TIME_WARP- FW_PRESET_TITLE_MAX_2_TIME_WARP
    105PRESET_TITLE_360_DEG_VIDEO- FW_PRESET_TITLE_MAX_2_VIDEO
    106PRESET_TITLE_BURST_SLOMO
    107PRESET_TITLE_VLOG
    108PRESET_TITLE_MAX
    -
    titleNumber
    integer <int32>

    Preset title number

    -
    userDefined
    boolean

    Is this preset user defined?

    -
    {
    • "icon": 0,
    • "id": 0,
    • "isFixed": true,
    • "isModified": true,
    • "mode": -1,
    • "settingArray": [
      ],
    • "titleId": 0,
    • "titleNumber": 0,
    • "userDefined": true
    }

    PresetGroup

    + + + + + + +
    canAddPreset
    boolean

    Is there room in the group to add additional Presets?

    -
    icon
    integer (EnumPresetGroupIcon)
    Enum: 0 1 2 3 4 5 6 7
    +
    +titleNumber + +
    +
    +integer <int32> +
    +

    Preset title number

    +
    +
    +
    +userDefined + +
    +
    +boolean +
    +

    Is this preset user defined?

    +
    +
    +
    +
    +
    + +
    +
    {
      +
    • +"icon": 0, +
    • +
    • +"id": 0, +
    • +
    • +"isFixed": true, +
    • +
    • +"isModified": true, +
    • +
    • +"mode": -1, +
    • +
    • +"settingArray": [
      +], +
    • +
    • +"titleId": 0, +
    • +
    • +"titleNumber": 0, +
    • +
    • +"userDefined": true +
    • +
    +}
    +
    +
    +
    +
    +

    +PresetGroup

    +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    +canAddPreset + +
    +
    +boolean +
    +

    Is there room in the group to add additional Presets?

    +
    +
    +
    +icon + +
    +
    +integer (EnumPresetGroupIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7
    Limitations <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -4832,7 +8696,8 @@

    Limitations

    - + + @@ -4872,8 +8737,106 @@

    Limitations

    -
    ID Summary
    0 PRESET_GROUP_VIDEO_ICON_ID PRESET_GROUP_MAX_TIMELAPSE_ICON_ID
    -
    id
    integer (EnumPresetGroup)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 1000 1001 1002
    +
    +id + +
    +
    +integer (EnumPresetGroup) +
    +
    + Enum: 1000 1001 1002
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    IDNameSummary
    1000PRESET_GROUP_ID_VIDEO
    1001PRESET_GROUP_ID_PHOTO
    1002PRESET_GROUP_ID_TIMELAPSE
    +
    +
    +
    + + +
    +
    +Array of objects (Preset) +
    +

    Array of Presets contained in this Preset Group

    +
    +
    +
    +
    +
    Array
    +
    + + +
    +icon +
    +
    +integer (EnumPresetIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 1000 1001
    Limitations </thead> <tbody><tr> <td>0</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS</td> -<td>Single video</td> +<td>PRESET_ICON_VIDEO</td> +<td></td> </tr> <tr> <td>1</td> -<td>PRESET_GROUP_ID_PHOTO_SINGLE_LENS</td> -<td>Single photo</td> +<td>PRESET_ICON_ACTIVITY</td> +<td></td> </tr> <tr> <td>2</td> -<td>PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENS</td> -<td>Single timelapse</td> +<td>PRESET_ICON_CINEMATIC</td> +<td></td> </tr> <tr> <td>3</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS</td> -<td>Spherical video hemi lens</td> +<td>PRESET_ICON_PHOTO</td> +<td></td> </tr> <tr> <td>4</td> -<td>PRESET_GROUP_ID_PHOTO_HEMI_LENS</td> -<td>Spherical photo hemi lens</td> +<td>PRESET_ICON_LIVE_BURST</td> +<td></td> </tr> <tr> <td>5</td> -<td>PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS</td> -<td>Spherical timelapse hemi lens</td> +<td>PRESET_ICON_BURST</td> +<td></td> </tr> <tr> <td>6</td> -<td>PRESET_GROUP_ID_SPECIAL_INTERNAL</td> -<td>Special</td> +<td>PRESET_ICON_PHOTO_NIGHT</td> +<td></td> </tr> <tr> <td>7</td> -<td>PRESET_GROUP_ID_SPECIAL_HEMI</td> -<td>Special hemi lens</td> +<td>PRESET_ICON_TIMEWARP</td> +<td></td> </tr> <tr> <td>8</td> -<td>PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENS</td> -<td>Video battery endurance</td> +<td>PRESET_ICON_TIMELAPSE</td> +<td></td> </tr> <tr> <td>9</td> -<td>PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENS</td> -<td>Video longest battery</td> +<td>PRESET_ICON_NIGHTLAPSE</td> +<td></td> </tr> <tr> <td>10</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENS</td> -<td>Easy single video</td> +<td>PRESET_ICON_SNAIL</td> +<td></td> </tr> <tr> <td>11</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENS</td> -<td>Easy video battery endurance</td> -</tr> -<tr> -<td>12</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENS</td> -<td>Easy single photo</td> +<td>PRESET_ICON_VIDEO_2</td> +<td></td> </tr> <tr> <td>13</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENS</td> -<td>Easy single timelapse</td> +<td>PRESET_ICON_PHOTO_2</td> +<td></td> </tr> <tr> <td>14</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENS</td> -<td>Easy video longest battery</td> +<td>PRESET_ICON_PANORAMA</td> +<td></td> </tr> <tr> <td>15</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2</td> -<td>Hemi Lens 2 video</td> +<td>PRESET_ICON_BURST_2</td> +<td></td> </tr> <tr> <td>16</td> -<td>PRESET_GROUP_ID_PHOTO_HEMI_LENS_2</td> -<td>Hemi Lens 2 photo</td> +<td>PRESET_ICON_TIMEWARP_2</td> +<td></td> </tr> <tr> <td>17</td> -<td>PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2</td> -<td>Hemi Lens 2 timelapse</td> +<td>PRESET_ICON_TIMELAPSE_2</td> +<td></td> </tr> <tr> <td>18</td> -<td>PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2</td> -<td>Hemi Lens 2 special</td> +<td>PRESET_ICON_CUSTOM</td> +<td></td> </tr> <tr> <td>19</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS</td> -<td>Hemi Lens easy video</td> +<td>PRESET_ICON_AIR</td> +<td></td> </tr> <tr> <td>20</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS</td> -<td>Hemi Lens easy photo</td> +<td>PRESET_ICON_BIKE</td> +<td></td> </tr> <tr> <td>21</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS</td> -<td>Hemi Lens easy timelapse</td> +<td>PRESET_ICON_EPIC</td> +<td></td> </tr> <tr> <td>22</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy video</td> +<td>PRESET_ICON_INDOOR</td> +<td></td> </tr> <tr> <td>23</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy photo</td> +<td>PRESET_ICON_MOTOR</td> +<td></td> </tr> <tr> <td>24</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy timelapse</td> +<td>PRESET_ICON_MOUNTED</td> +<td></td> </tr> <tr> <td>25</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARD</td> -<td>Single video standard profile - for internal preset switch only</td> +<td>PRESET_ICON_OUTDOOR</td> +<td></td> </tr> <tr> <td>26</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDR</td> -<td>Single video hdr profile - for internal preset switch only</td> +<td>PRESET_ICON_POV</td> +<td></td> </tr> <tr> <td>27</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOG</td> -<td>Single video log profile - for internal preset switch only</td> +<td>PRESET_ICON_SELFIE</td> +<td></td> </tr> <tr> <td>28</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS</td> -<td>Spherical video mode</td> +<td>PRESET_ICON_SKATE</td> +<td></td> </tr> <tr> <td>29</td> -<td>PRESET_GROUP_ID_PHOTO_SPHERICAL_LENS</td> -<td>Spherical photo mode</td> +<td>PRESET_ICON_SNOW</td> +<td></td> </tr> <tr> <td>30</td> -<td>PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENS</td> -<td>Spherical timelapse mode</td> +<td>PRESET_ICON_TRAIL</td> +<td></td> </tr> <tr> <td>31</td> -<td>PRESET_GROUP_ID_SPECIAL_SPHERICAL</td> -<td>Special spherical lens</td> +<td>PRESET_ICON_TRAVEL</td> +<td></td> </tr> <tr> <td>32</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARD</td> -<td>Spherical video standard profile - for internal preset switch only</td> +<td>PRESET_ICON_WATER</td> +<td></td> </tr> <tr> <td>33</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOG</td> -<td>Spherical video standard profile - for internal preset switch only</td> +<td>PRESET_ICON_LOOPING</td> +<td></td> </tr> <tr> <td>34</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARD</td> -<td>Hemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch only</td> +<td>PRESET_ICON_STARS</td> +<td></td> </tr> <tr> <td>35</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOG</td> -<td>Hemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch only</td> +<td>PRESET_ICON_ACTION</td> +<td></td> </tr> <tr> <td>36</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS</td> -<td>Video macro lens</td> +<td>PRESET_ICON_FOLLOW_CAM</td> +<td></td> </tr> <tr> <td>37</td> -<td>PRESET_GROUP_ID_PHOTO_MACRO_LENS</td> -<td>Photo macro lens</td> +<td>PRESET_ICON_SURF</td> +<td></td> </tr> <tr> <td>38</td> -<td>PRESET_GROUP_ID_TIMELAPSE_MACRO_LENS</td> -<td>Timelapse macro lens</td> +<td>PRESET_ICON_CITY</td> +<td></td> </tr> <tr> <td>39</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENS</td> -<td>Easy Video macro lens</td> +<td>PRESET_ICON_SHAKY</td> +<td></td> </tr> <tr> <td>40</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENS</td> -<td>Easy Photo macro lens</td> +<td>PRESET_ICON_CHESTY</td> +<td></td> </tr> <tr> <td>41</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENS</td> -<td>Easy Timelapse macro lens</td> +<td>PRESET_ICON_HELMET</td> +<td></td> </tr> <tr> <td>42</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARD</td> -<td>Macro lens video standard profile - for internal preset switch only</td> +<td>PRESET_ICON_BITE</td> +<td></td> </tr> <tr> -<td>43</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOG</td> -<td>Macro lens video log profile - for internal preset switch only</td> +<td>58</td> +<td>PRESET_ICON_BASIC</td> +<td></td> </tr> <tr> -<td>44</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS</td> -<td>Video anamorphic lens</td> +<td>59</td> +<td>PRESET_ICON_ULTRA_SLO_MO</td> +<td></td> </tr> <tr> -<td>45</td> -<td>PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENS</td> -<td>Photo anamorphic lens</td> +<td>60</td> +<td>PRESET_ICON_STANDARD_ENDURANCE</td> +<td></td> </tr> <tr> -<td>46</td> -<td>PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENS</td> -<td>Timelapse anamorphic lens</td> +<td>61</td> +<td>PRESET_ICON_ACTIVITY_ENDURANCE</td> +<td></td> </tr> <tr> -<td>47</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENS</td> -<td>Easy Video anamorphic lens</td> +<td>62</td> +<td>PRESET_ICON_CINEMATIC_ENDURANCE</td> +<td></td> </tr> <tr> -<td>48</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENS</td> -<td>Easy Photo anamorphic lens</td> +<td>63</td> +<td>PRESET_ICON_SLOMO_ENDURANCE</td> +<td></td> </tr> <tr> -<td>49</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENS</td> -<td>Easy Timelapse anamorphic lens</td> +<td>64</td> +<td>PRESET_ICON_STATIONARY_1</td> +<td></td> </tr> <tr> -<td>50</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARD</td> -<td>Anamorphic lens video standard profile - for internal preset switch only</td> +<td>65</td> +<td>PRESET_ICON_STATIONARY_2</td> +<td></td> </tr> <tr> -<td>51</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOG</td> -<td>Anamorphic lens video log profile - for internal preset switch only</td> +<td>66</td> +<td>PRESET_ICON_STATIONARY_3</td> +<td></td> </tr> <tr> -<td>1000</td> -<td>PRESET_GROUP_ID_VIDEO</td> +<td>67</td> +<td>PRESET_ICON_STATIONARY_4</td> <td></td> </tr> <tr> -<td>1001</td> -<td>PRESET_GROUP_ID_PHOTO</td> +<td>70</td> +<td>PRESET_ICON_SIMPLE_SUPER_PHOTO</td> <td></td> </tr> <tr> -<td>1002</td> -<td>PRESET_GROUP_ID_TIMELAPSE</td> +<td>71</td> +<td>PRESET_ICON_SIMPLE_NIGHT_PHOTO</td> +<td></td> +</tr> +<tr> +<td>73</td> +<td>PRESET_ICON_HIGHEST_QUALITY_VIDEO</td> +<td></td> +</tr> +<tr> +<td>74</td> +<td>PRESET_ICON_STANDARD_QUALITY_VIDEO</td> +<td></td> +</tr> +<tr> +<td>75</td> +<td>PRESET_ICON_BASIC_QUALITY_VIDEO</td> +<td></td> +</tr> +<tr> +<td>76</td> +<td>PRESET_ICON_STAR_TRAIL</td> +<td></td> +</tr> +<tr> +<td>77</td> +<td>PRESET_ICON_LIGHT_PAINTING</td> +<td></td> +</tr> +<tr> +<td>78</td> +<td>PRESET_ICON_LIGHT_TRAIL</td> +<td></td> +</tr> +<tr> +<td>79</td> +<td>PRESET_ICON_FULL_FRAME</td> +<td></td> +</tr> +<tr> +<td>1000</td> +<td>PRESET_ICON_TIMELAPSE_PHOTO</td> +<td></td> +</tr> +<tr> +<td>1001</td> +<td>PRESET_ICON_NIGHTLAPSE_PHOTO</td> <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -5165,734 +9169,501 @@

    Limitations

    - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - + + - - + + - - + + -
    ID Summary
    0PRESET_GROUP_ID_VIDEO_SINGLE_LENSSingle videoPRESET_ICON_VIDEO
    1PRESET_GROUP_ID_PHOTO_SINGLE_LENSSingle photoPRESET_ICON_ACTIVITY
    2PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENSSingle timelapsePRESET_ICON_CINEMATIC
    3PRESET_GROUP_ID_VIDEO_HEMI_LENSSpherical video hemi lensPRESET_ICON_PHOTO
    4PRESET_GROUP_ID_PHOTO_HEMI_LENSSpherical photo hemi lensPRESET_ICON_LIVE_BURST
    5PRESET_GROUP_ID_TIMELAPSE_HEMI_LENSSpherical timelapse hemi lensPRESET_ICON_BURST
    6PRESET_GROUP_ID_SPECIAL_INTERNALSpecialPRESET_ICON_PHOTO_NIGHT
    7PRESET_GROUP_ID_SPECIAL_HEMISpecial hemi lensPRESET_ICON_TIMEWARP
    8PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENSVideo battery endurancePRESET_ICON_TIMELAPSE
    9PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENSVideo longest batteryPRESET_ICON_NIGHTLAPSE
    10PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENSEasy single videoPRESET_ICON_SNAIL
    11PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENSEasy video battery endurance
    12PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENSEasy single photoPRESET_ICON_VIDEO_2
    13PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENSEasy single timelapsePRESET_ICON_PHOTO_2
    14PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENSEasy video longest batteryPRESET_ICON_PANORAMA
    15PRESET_GROUP_ID_VIDEO_HEMI_LENS_2Hemi Lens 2 videoPRESET_ICON_BURST_2
    16PRESET_GROUP_ID_PHOTO_HEMI_LENS_2Hemi Lens 2 photoPRESET_ICON_TIMEWARP_2
    17PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 timelapsePRESET_ICON_TIMELAPSE_2
    18PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2Hemi Lens 2 specialPRESET_ICON_CUSTOM
    19PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENSHemi Lens easy videoPRESET_ICON_AIR
    20PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENSHemi Lens easy photoPRESET_ICON_BIKE
    21PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENSHemi Lens easy timelapsePRESET_ICON_EPIC
    22PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2Hemi Lens 2 easy videoPRESET_ICON_INDOOR
    23PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2Hemi Lens 2 easy photoPRESET_ICON_MOTOR
    24PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 easy timelapsePRESET_ICON_MOUNTED
    25PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARDSingle video standard profile - for internal preset switch onlyPRESET_ICON_OUTDOOR
    26PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDRSingle video hdr profile - for internal preset switch onlyPRESET_ICON_POV
    27PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOGSingle video log profile - for internal preset switch onlyPRESET_ICON_SELFIE
    28PRESET_GROUP_ID_VIDEO_SPHERICAL_LENSSpherical video modePRESET_ICON_SKATE
    29PRESET_GROUP_ID_PHOTO_SPHERICAL_LENSSpherical photo modePRESET_ICON_SNOW
    30PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENSSpherical timelapse modePRESET_ICON_TRAIL
    31PRESET_GROUP_ID_SPECIAL_SPHERICALSpecial spherical lensPRESET_ICON_TRAVEL
    32PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARDSpherical video standard profile - for internal preset switch onlyPRESET_ICON_WATER
    33PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOGSpherical video standard profile - for internal preset switch onlyPRESET_ICON_LOOPING
    34PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARDHemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch onlyPRESET_ICON_STARS
    35PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOGHemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch onlyPRESET_ICON_ACTION
    36PRESET_GROUP_ID_VIDEO_MACRO_LENSVideo macro lensPRESET_ICON_FOLLOW_CAM
    37PRESET_GROUP_ID_PHOTO_MACRO_LENSPhoto macro lensPRESET_ICON_SURF
    38PRESET_GROUP_ID_TIMELAPSE_MACRO_LENSTimelapse macro lensPRESET_ICON_CITY
    39PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENSEasy Video macro lensPRESET_ICON_SHAKY
    40PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENSEasy Photo macro lensPRESET_ICON_CHESTY
    41PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENSEasy Timelapse macro lensPRESET_ICON_HELMET
    42PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARDMacro lens video standard profile - for internal preset switch onlyPRESET_ICON_BITE
    43PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOGMacro lens video log profile - for internal preset switch only58PRESET_ICON_BASIC
    44PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENSVideo anamorphic lens59PRESET_ICON_ULTRA_SLO_MO
    45PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENSPhoto anamorphic lens60PRESET_ICON_STANDARD_ENDURANCE
    46PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENSTimelapse anamorphic lens61PRESET_ICON_ACTIVITY_ENDURANCE
    47PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENSEasy Video anamorphic lens62PRESET_ICON_CINEMATIC_ENDURANCE
    48PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENSEasy Photo anamorphic lens63PRESET_ICON_SLOMO_ENDURANCE
    49PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENSEasy Timelapse anamorphic lens64PRESET_ICON_STATIONARY_1
    50PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARDAnamorphic lens video standard profile - for internal preset switch only65PRESET_ICON_STATIONARY_2
    51PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOGAnamorphic lens video log profile - for internal preset switch only66PRESET_ICON_STATIONARY_3
    1000PRESET_GROUP_ID_VIDEO67PRESET_ICON_STATIONARY_4
    1001PRESET_GROUP_ID_PHOTO70PRESET_ICON_SIMPLE_SUPER_PHOTO
    1002PRESET_GROUP_ID_TIMELAPSE71PRESET_ICON_SIMPLE_NIGHT_PHOTO
    -
    Array of objects (Preset)

    Array of Presets contained in this Preset Group

    -
    Array
    + + + + + + + + + + + + + + + + + + +
    icon
    integer (EnumPresetIcon)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 89 90 91 92 93 94 95 96 97 98 99 100 101 102 1000 1001 1002
    +
    +id +
    +
    +integer <int32> +
    +

    Unique preset identifier

    +
    +
    +isFixed +
    +
    +boolean +
    +

    Is this preset mutable?

    +
    +
    +isModified +
    +
    +boolean +
    +

    Has the preset been modified from the factory defaults?

    +
    +
    +mode +
    +
    +integer (EnumFlatMode) +
    +
    + Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -5900,454 +9671,192 @@

    Limitations

    - - - - - - - - - - + - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ID Summary
    0PRESET_ICON_VIDEO
    1PRESET_ICON_ACTIVITY
    2PRESET_ICON_CINEMATIC
    3PRESET_ICON_PHOTO-1FLAT_MODE_UNKNOWN
    4PRESET_ICON_LIVE_BURSTFLAT_MODE_PLAYBACK
    5PRESET_ICON_BURST
    6PRESET_ICON_PHOTO_NIGHT
    7PRESET_ICON_TIMEWARP
    8PRESET_ICON_TIMELAPSE
    9PRESET_ICON_NIGHTLAPSE
    10PRESET_ICON_SNAIL
    11PRESET_ICON_VIDEO_2FLAT_MODE_SETUP
    12PRESET_ICON_360_VIDEOFLAT_MODE_VIDEO
    13PRESET_ICON_PHOTO_2
    14PRESET_ICON_PANORAMAFLAT_MODE_TIME_LAPSE_VIDEO
    15PRESET_ICON_BURST_2FLAT_MODE_LOOPING
    16PRESET_ICON_TIMEWARP_2FLAT_MODE_PHOTO_SINGLE
    17PRESET_ICON_TIMELAPSE_2FLAT_MODE_PHOTO
    18PRESET_ICON_CUSTOMFLAT_MODE_PHOTO_NIGHT
    19PRESET_ICON_AIRFLAT_MODE_PHOTO_BURST
    20PRESET_ICON_BIKEFLAT_MODE_TIME_LAPSE_PHOTO
    21PRESET_ICON_EPICFLAT_MODE_NIGHT_LAPSE_PHOTO
    22PRESET_ICON_INDOORFLAT_MODE_BROADCAST_RECORD
    23PRESET_ICON_MOTORFLAT_MODE_BROADCAST_BROADCAST
    24PRESET_ICON_MOUNTEDFLAT_MODE_TIME_WARP_VIDEO
    25PRESET_ICON_OUTDOORFLAT_MODE_LIVE_BURST
    26PRESET_ICON_POVFLAT_MODE_NIGHT_LAPSE_VIDEO
    27PRESET_ICON_SELFIEFLAT_MODE_SLOMO
    28PRESET_ICON_SKATEFLAT_MODE_IDLE
    29PRESET_ICON_SNOWFLAT_MODE_VIDEO_STAR_TRAIL
    30PRESET_ICON_TRAILFLAT_MODE_VIDEO_LIGHT_PAINTING
    31PRESET_ICON_TRAVELFLAT_MODE_VIDEO_LIGHT_TRAIL
    32PRESET_ICON_WATER
    33PRESET_ICON_LOOPING
    34PRESET_ICON_STARS
    35PRESET_ICON_ACTION
    36PRESET_ICON_FOLLOW_CAM
    37PRESET_ICON_SURF
    38PRESET_ICON_CITYFLAT_MODE_VIDEO_BURST_SLOMO
    39PRESET_ICON_SHAKY
    40PRESET_ICON_CHESTY
    41PRESET_ICON_HELMET
    42PRESET_ICON_BITE
    55PRESET_ICON_MAX_VIDEO
    56PRESET_ICON_MAX_PHOTO
    57PRESET_ICON_MAX_TIMEWARP
    58PRESET_ICON_BASIC
    59PRESET_ICON_ULTRA_SLO_MO
    60PRESET_ICON_STANDARD_ENDURANCE
    61PRESET_ICON_ACTIVITY_ENDURANCE
    62PRESET_ICON_CINEMATIC_ENDURANCE
    63PRESET_ICON_SLOMO_ENDURANCE
    64PRESET_ICON_STATIONARY_1
    65PRESET_ICON_STATIONARY_2
    66PRESET_ICON_STATIONARY_3
    67PRESET_ICON_STATIONARY_4
    70PRESET_ICON_SIMPLE_SUPER_PHOTO
    71PRESET_ICON_SIMPLE_NIGHT_PHOTO
    73PRESET_ICON_HIGHEST_QUALITY_VIDEO
    74PRESET_ICON_STANDARD_QUALITY_VIDEO
    75PRESET_ICON_BASIC_QUALITY_VIDEO
    76PRESET_ICON_STAR_TRAIL
    77PRESET_ICON_LIGHT_PAINTING
    78PRESET_ICON_LIGHT_TRAIL
    79PRESET_ICON_FULL_FRAME
    80PRESET_ICON_EASY_MAX_VIDEO
    81PRESET_ICON_EASY_MAX_PHOTO
    82PRESET_ICON_EASY_MAX_TIMEWARP
    83PRESET_ICON_EASY_MAX_STAR_TRAIL
    84PRESET_ICON_EASY_MAX_LIGHT_PAINTING
    85PRESET_ICON_EASY_MAX_LIGHT_TRAIL
    89PRESET_ICON_MAX_STAR_TRAIL
    90PRESET_ICON_MAX_LIGHT_PAINTING
    91PRESET_ICON_MAX_LIGHT_TRAIL
    92PRESET_ICON_360_BURST
    93PRESET_ICON_360_PHOTO_NIGHT
    94PRESET_ICON_360_NIGHTLAPSE
    95PRESET_ICON_360_TIMELAPSE_PHOTO
    96PRESET_ICON_360_NIGHTLAPSE_PHOTO
    97PRESET_ICON_360_PHOTO
    98PRESET_ICON_360_TIMELAPSE
    99PRESET_ICON_360_TIMEWARP
    100PRESET_ICON_EASY_STANDARD_PROFILE
    101PRESET_ICON_EASY_HDR_PROFILE
    102PRESET_ICON_BURST_SLOMO
    1000PRESET_ICON_TIMELAPSE_PHOTO
    1001PRESET_ICON_NIGHTLAPSE_PHOTO
    1002PRESET_ICON_MAX
    -
    id
    integer <int32>

    Unique preset identifier

    -
    isFixed
    boolean

    Is this preset mutable?

    -
    isModified
    boolean

    Has the preset been modified from the factory defaults?

    -
    mode
    integer (EnumFlatMode)
    Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    +
    + +
    +
    +Array of objects (PresetSetting) +
    +
    +
    Array
    +
    + + + + + + + + + + + + +
    +id +
    +
    +integer <int32> +
    +

    Setting identifier

    +
    +
    +isCaption +
    +
    +boolean +
    +

    Does this setting appear on the Preset "pill" in the camera UI?

    +
    +
    +value +
    +
    +integer <int32> +
    +

    Setting value

    +
    +
    +
    +
    +titleId +
    +
    +integer (EnumPresetTitle) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 82 83 93 94
    Limitations </tr> </thead> <tbody><tr> -<td>-1</td> -<td>FLAT_MODE_UNKNOWN</td> +<td>0</td> +<td>PRESET_TITLE_ACTIVITY</td> <td></td> </tr> <tr> -<td>4</td> -<td>FLAT_MODE_PLAYBACK</td> +<td>1</td> +<td>PRESET_TITLE_STANDARD</td> <td></td> </tr> <tr> -<td>5</td> -<td>FLAT_MODE_SETUP</td> +<td>2</td> +<td>PRESET_TITLE_CINEMATIC</td> <td></td> </tr> <tr> -<td>12</td> -<td>FLAT_MODE_VIDEO</td> +<td>3</td> +<td>PRESET_TITLE_PHOTO</td> <td></td> </tr> <tr> -<td>13</td> -<td>FLAT_MODE_TIME_LAPSE_VIDEO</td> +<td>4</td> +<td>PRESET_TITLE_LIVE_BURST</td> <td></td> </tr> <tr> -<td>15</td> -<td>FLAT_MODE_LOOPING</td> +<td>5</td> +<td>PRESET_TITLE_BURST</td> <td></td> </tr> <tr> -<td>16</td> -<td>FLAT_MODE_PHOTO_SINGLE</td> +<td>6</td> +<td>PRESET_TITLE_NIGHT</td> <td></td> </tr> <tr> -<td>17</td> -<td>FLAT_MODE_PHOTO</td> +<td>7</td> +<td>PRESET_TITLE_TIME_WARP</td> <td></td> </tr> <tr> -<td>18</td> -<td>FLAT_MODE_PHOTO_NIGHT</td> +<td>8</td> +<td>PRESET_TITLE_TIME_LAPSE</td> <td></td> </tr> <tr> -<td>19</td> -<td>FLAT_MODE_PHOTO_BURST</td> +<td>9</td> +<td>PRESET_TITLE_NIGHT_LAPSE</td> <td></td> </tr> <tr> -<td>20</td> -<td>FLAT_MODE_TIME_LAPSE_PHOTO</td> +<td>10</td> +<td>PRESET_TITLE_VIDEO</td> <td></td> </tr> <tr> -<td>21</td> -<td>FLAT_MODE_NIGHT_LAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>22</td> -<td>FLAT_MODE_BROADCAST_RECORD</td> -<td></td> -</tr> -<tr> -<td>23</td> -<td>FLAT_MODE_BROADCAST_BROADCAST</td> -<td></td> -</tr> -<tr> -<td>24</td> -<td>FLAT_MODE_TIME_WARP_VIDEO</td> -<td></td> -</tr> -<tr> -<td>25</td> -<td>FLAT_MODE_LIVE_BURST</td> -<td></td> -</tr> -<tr> -<td>26</td> -<td>FLAT_MODE_NIGHT_LAPSE_VIDEO</td> -<td></td> -</tr> -<tr> -<td>27</td> -<td>FLAT_MODE_SLOMO</td> -<td></td> -</tr> -<tr> -<td>28</td> -<td>FLAT_MODE_IDLE</td> -<td></td> -</tr> -<tr> -<td>29</td> -<td>FLAT_MODE_VIDEO_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>30</td> -<td>FLAT_MODE_VIDEO_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>31</td> -<td>FLAT_MODE_VIDEO_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>32</td> -<td>FLAT_MODE_VIDEO_BURST_SLOMO</td> -<td></td> -</tr> -</tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    IDNameSummary
    -1FLAT_MODE_UNKNOWN
    4FLAT_MODE_PLAYBACK
    5FLAT_MODE_SETUP
    12FLAT_MODE_VIDEO
    13FLAT_MODE_TIME_LAPSE_VIDEO
    15FLAT_MODE_LOOPING
    16FLAT_MODE_PHOTO_SINGLE
    17FLAT_MODE_PHOTO
    18FLAT_MODE_PHOTO_NIGHT
    19FLAT_MODE_PHOTO_BURST
    20FLAT_MODE_TIME_LAPSE_PHOTO
    21FLAT_MODE_NIGHT_LAPSE_PHOTO
    22FLAT_MODE_BROADCAST_RECORD
    23FLAT_MODE_BROADCAST_BROADCAST
    24FLAT_MODE_TIME_WARP_VIDEO
    25FLAT_MODE_LIVE_BURST
    26FLAT_MODE_NIGHT_LAPSE_VIDEO
    27FLAT_MODE_SLOMO
    28FLAT_MODE_IDLE
    29FLAT_MODE_VIDEO_STAR_TRAIL
    30FLAT_MODE_VIDEO_LIGHT_PAINTING
    31FLAT_MODE_VIDEO_LIGHT_TRAIL
    32FLAT_MODE_VIDEO_BURST_SLOMO
    -
    Array of objects (PresetSetting)
    Array
    id
    integer <int32>

    Setting identifier

    -
    isCaption
    boolean

    Does this setting appear on the Preset "pill" in the camera UI?

    -
    value
    integer <int32>

    Setting value

    -
    titleId
    integer (EnumPresetTitle)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    Limitations <td></td> </tr> <tr> -<td>15</td> -<td>PRESET_TITLE_360_PHOTO</td> -<td></td> -</tr> -<tr> <td>16</td> <td>PRESET_TITLE_TIME_WARP_2</td> <td></td> </tr> <tr> -<td>17</td> -<td>PRESET_TITLE_360_TIME_WARP</td> -<td></td> -</tr> -<tr> <td>18</td> <td>PRESET_TITLE_CUSTOM</td> <td></td> @@ -6825,83 +10065,8 @@

    Limitations

    <td></td> </tr> <tr> -<td>43</td> -<td>PRESET_TITLE_CUSTOM_CINEMATIC</td> -<td></td> -</tr> -<tr> -<td>44</td> -<td>PRESET_TITLE_DIVE</td> -<td></td> -</tr> -<tr> -<td>45</td> -<td>PRESET_TITLE_FPV</td> -<td></td> -</tr> -<tr> -<td>46</td> -<td>PRESET_TITLE_HDR</td> -<td></td> -</tr> -<tr> -<td>47</td> -<td>PRESET_TITLE_LANDSCAPE</td> -<td></td> -</tr> -<tr> -<td>48</td> -<td>PRESET_TITLE_LOG</td> -<td></td> -</tr> -<tr> -<td>49</td> -<td>PRESET_TITLE_CUSTOM_SLOMO</td> -<td></td> -</tr> -<tr> -<td>50</td> -<td>PRESET_TITLE_TRIPOD</td> -<td></td> -</tr> -<tr> -<td>51</td> -<td>PRESET_TITLE_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>52</td> -<td>PRESET_TITLE_360_NIGHT_LAPSE</td> -<td></td> -</tr> -<tr> -<td>53</td> -<td>PRESET_TITLE_360_NIGHT_PHOTO</td> -<td></td> -</tr> -<tr> -<td>54</td> -<td>PRESET_TITLE_PANO_TIME_LAPSE</td> -<td></td> -</tr> -<tr> -<td>55</td> -<td>PRESET_TITLE_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_TITLE_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_TITLE_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>58</td> -<td>PRESET_TITLE_BASIC</td> +<td>58</td> +<td>PRESET_TITLE_BASIC</td> <td></td> </tr> <tr> @@ -7010,16 +10175,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_TITLE_MAX_LENS_VIDEO</td> -<td></td> -</tr> -<tr> -<td>81</td> -<td>PRESET_TITLE_MAX_LENS_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>82</td> <td>PRESET_TITLE_STANDARD_QUALITY_VIDEO</td> <td></td> @@ -7030,51 +10185,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>84</td> -<td>PRESET_TITLE_EASY_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>85</td> -<td>PRESET_TITLE_EASY_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>86</td> -<td>PRESET_TITLE_EASY_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>87</td> -<td>PRESET_TITLE_EASY_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>88</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>89</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>90</td> -<td>PRESET_TITLE_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>91</td> -<td>PRESET_TITLE_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>92</td> -<td>PRESET_TITLE_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> <td>93</td> <td>PRESET_TITLE_HIGHEST_QUALITY_VIDEO</td> <td></td> @@ -7084,78 +10194,9 @@

    Limitations

    <td>PRESET_TITLE_USER_DEFINED_CUSTOM_NAME</td> <td></td> </tr> -<tr> -<td>95</td> -<td>PRESET_TITLE_360_DEG_BURST</td> -<td>- FW_PRESET_TITLE_360_BURST</td> -</tr> -<tr> -<td>96</td> -<td>PRESET_TITLE_360_DEG_NIGHT_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT</td> -</tr> -<tr> -<td>97</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO</td> -</tr> -<tr> -<td>98</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO</td> -</tr> -<tr> -<td>99</td> -<td>PRESET_TITLE_EASY_STANDARD_PROFILE</td> -<td></td> -</tr> -<tr> -<td>100</td> -<td>PRESET_TITLE_EASY_HDR_PROFILE</td> -<td></td> -</tr> -<tr> -<td>101</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_LAPSE</td> -</tr> -<tr> -<td>102</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE</td> -</tr> -<tr> -<td>103</td> -<td>PRESET_TITLE_360_DEG_PHOTO</td> -<td>- FW_PRESET_TITLE_MAX_2_PHOTO</td> -</tr> -<tr> -<td>104</td> -<td>PRESET_TITLE_360_DEG_TIME_WARP</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_WARP</td> -</tr> -<tr> -<td>105</td> -<td>PRESET_TITLE_360_DEG_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_VIDEO</td> -</tr> -<tr> -<td>106</td> -<td>PRESET_TITLE_BURST_SLOMO</td> -<td></td> -</tr> -<tr> -<td>107</td> -<td>PRESET_TITLE_VLOG</td> -<td></td> -</tr> -<tr> -<td>108</td> -<td>PRESET_TITLE_MAX</td> -<td></td> -</tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -7163,7 +10204,8 @@

    Limitations

    - + + @@ -7224,11 +10266,6 @@

    Limitations

    - - - - - @@ -7239,21 +10276,11 @@

    Limitations

    - - - - - - - - - - @@ -7379,81 +10406,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -7564,16 +10516,6 @@

    Limitations

    - - - - - - - - - - @@ -7584,51 +10526,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -7638,107 +10535,351 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ID Summary
    0 PRESET_TITLE_ACTIVITY
    12PRESET_TITLE_360_VIDEO
    13 PRESET_TITLE_PHOTO_2
    15PRESET_TITLE_360_PHOTO
    16 PRESET_TITLE_TIME_WARP_2
    17PRESET_TITLE_360_TIME_WARP
    18 PRESET_TITLE_CUSTOM
    43PRESET_TITLE_CUSTOM_CINEMATIC
    44PRESET_TITLE_DIVE
    45PRESET_TITLE_FPV
    46PRESET_TITLE_HDR
    47PRESET_TITLE_LANDSCAPE
    48PRESET_TITLE_LOG
    49PRESET_TITLE_CUSTOM_SLOMO
    50PRESET_TITLE_TRIPOD
    51PRESET_TITLE_360_TIMELAPSE
    52PRESET_TITLE_360_NIGHT_LAPSE
    53PRESET_TITLE_360_NIGHT_PHOTO
    54PRESET_TITLE_PANO_TIME_LAPSE
    55PRESET_TITLE_MAX_VIDEO
    56PRESET_TITLE_MAX_PHOTO
    57PRESET_TITLE_MAX_TIMEWARP
    58 PRESET_TITLE_BASIC
    80PRESET_TITLE_MAX_LENS_VIDEO
    81PRESET_TITLE_MAX_LENS_TIMEWARP
    82 PRESET_TITLE_STANDARD_QUALITY_VIDEO
    84PRESET_TITLE_EASY_MAX_VIDEO
    85PRESET_TITLE_EASY_MAX_PHOTO
    86PRESET_TITLE_EASY_MAX_TIMEWARP
    87PRESET_TITLE_EASY_MAX_STAR_TRAIL
    88PRESET_TITLE_EASY_MAX_LIGHT_PAINTING
    89PRESET_TITLE_EASY_MAX_LIGHT_TRAIL
    90PRESET_TITLE_MAX_STAR_TRAIL
    91PRESET_TITLE_MAX_LIGHT_PAINTING
    92PRESET_TITLE_MAX_LIGHT_TRAIL
    93 PRESET_TITLE_HIGHEST_QUALITY_VIDEO PRESET_TITLE_USER_DEFINED_CUSTOM_NAME
    95PRESET_TITLE_360_DEG_BURST- FW_PRESET_TITLE_360_BURST
    96PRESET_TITLE_360_DEG_NIGHT_PHOTO- FW_PRESET_TITLE_360_NIGHT
    97PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO
    98PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO
    99PRESET_TITLE_EASY_STANDARD_PROFILE
    100PRESET_TITLE_EASY_HDR_PROFILE
    101PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_TIME_LAPSE
    102PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE
    103PRESET_TITLE_360_DEG_PHOTO- FW_PRESET_TITLE_MAX_2_PHOTO
    104PRESET_TITLE_360_DEG_TIME_WARP- FW_PRESET_TITLE_MAX_2_TIME_WARP
    105PRESET_TITLE_360_DEG_VIDEO- FW_PRESET_TITLE_MAX_2_VIDEO
    106PRESET_TITLE_BURST_SLOMO
    107PRESET_TITLE_VLOG
    108PRESET_TITLE_MAX
    -
    titleNumber
    integer <int32>

    Preset title number

    -
    userDefined
    boolean

    Is this preset user defined?

    -
    {
    • "canAddPreset": true,
    • "icon": 0,
    • "id": 0,
    • "presetArray": [
      ]
    }

    PresetSetting

    id
    integer <int32>

    Setting identifier

    -
    isCaption
    boolean

    Does this setting appear on the Preset "pill" in the camera UI?

    -
    value
    integer <int32>

    Setting value

    -
    {
    • "id": 0,
    • "isCaption": true,
    • "value": 0
    }

    SingleMediaListItem

    n
    required
    string
    Example: "GOPR0001.JPG"

    Media filename

    -
    cre
    required
    integer
    Example: "1696600109"

    Creation time in seconds since epoch

    -
    mod
    required
    integer
    Example: "1696600109"

    Time file was last modified in seconds since epoch

    -
    s
    required
    integer
    Example: "2806303"

    Size of media in bytes

    -
    glrv
    integer
    Example: "817767"

    Low resolution video size

    -
    ls
    integer
    Example: "-1"

    Low resolution file size. -1 if there is no LRV file

    -
    {
    • "cre": 1696600109,
    • "glrv": 817767,
    • "ls": -1,
    • "mod": 1696600109,
    • "n": "GOPR0001.JPG",
    • "s": 2806303
    }

    State

    +
    object

    All currently known setting values indexed by setting ID

    -
    + + + + + + +
    2
    integer
    Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    +
    +titleNumber +
    +
    +integer <int32> +
    +

    Preset title number

    +
    +
    +userDefined +
    +
    +boolean +
    +

    Is this preset user defined?

    +
    +
    +
    + +
    +
    +
    + +
    +
    {
      +
    • +"canAddPreset": true, +
    • +
    • +"icon": 0, +
    • +
    • +"id": 1000, +
    • +
    • +"presetArray": [
      +] +
    • +
    +}
    +
    +
    +
    +
    +

    +PresetSetting

    +
    +
    + + + + + + + + + + + + +
    +id + +
    +
    +integer <int32> +
    +

    Setting identifier

    +
    +
    +
    +isCaption + +
    +
    +boolean +
    +

    Does this setting appear on the Preset "pill" in the camera UI?

    +
    +
    +
    +value + +
    +
    +integer <int32> +
    +

    Setting value

    +
    +
    +
    +
    +
    +
    {
      +
    • +"id": 0, +
    • +
    • +"isCaption": true, +
    • +
    • +"value": 0 +
    • +
    +}
    +
    +
    +
    +
    +

    +SingleMediaListItem

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    +n<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "GOPR0001.JPG" +
    +
    +

    Media filename

    +
    +
    +
    +cre<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +
    +mod<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1696600109" +
    +
    +

    Time file was last modified in seconds since epoch

    +
    +
    +
    +s<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "2806303" +
    +
    +

    Size of media in bytes

    +
    +
    +
    +glrv + +
    +
    +integer +
    + Example: "817767" +
    +
    +

    Low resolution video size

    +
    +
    +
    +ls + +
    +
    +integer +
    + Example: "-1" +
    +
    +

    Low resolution file size. -1 if there is no LRV file

    +
    +
    +
    +
    +
    +
    {
      +
    • +"cre": 1696600109, +
    • +
    • +"glrv": 817767, +
    • +
    • +"ls": -1, +
    • +
    • +"mod": 1696600109, +
    • +
    • +"n": "GOPR0001.JPG", +
    • +
    • +"s": 2806303 +
    • +
    +}
    +
    +
    +
    +
    +

    +State

    +
    +
    + + + + + + + + + + + +
    + + +
    +
    +object +
    +

    All currently known setting values indexed by setting ID

    +
    +
    +
    +
    + + + + + + +
    +2 +
    +
    +integer +
    +
    + Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    +

    Resolution

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -7847,20 +10989,27 @@

    Limitations

    - + + - + - + - + @@ -7870,12 +11019,16 @@

    Limitations

    - + - + @@ -7890,22 +11043,30 @@

    Limitations

    - + - + - + - + @@ -7932,13 +11093,26 @@

    Limitations

    -
    Supported Cameras
    1 4KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 2.7KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 2.7K 4:3HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7
    9 1080HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    18 4K 4:3HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    24
    26 5.3K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    27 5.3K 4:3HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    28 4K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    100 5.3KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +
    107 2.7K HERO12 Black
    -
    3
    integer
    Enum: 0 1 2 5 6 8 9 10 13
    +
    +3 +
    +
    +integer +
    +
    + Enum: 0 1 2 5 6 8 9 10 13
    +

    Frames Per Second

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8007,58 +11182,90 @@

    Limitations

    - + + - + - + - + - + - + - + - + - + - - -
    Supported Cameras
    0 240HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 120HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 100HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    5 60HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 50HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 30HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 25HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    10 24HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    13 200HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    43
    integer
    Enum: 0 2 3 4
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +43 +
    +
    +integer +
    +
    + Enum: 0 2 3 4
    +

    Webcam Digital Lenses

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8102,33 +11310,55 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    59
    integer
    Enum: 0 1 4 6 7 11 12
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +59 +
    +
    +integer +
    +
    + Enum: 0 1 4 6 7 11 12
    +

    Auto Power Down

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8187,30 +11418,41 @@

    Limitations

    - + + - + - + - + - + - + @@ -8222,11 +11464,24 @@

    Limitations

    -
    Supported Cameras
    0 NeverHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 1 MinHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    4 5 MinHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 15 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    7 30 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    11 30 Seconds HERO11 Black Mini
    -
    83
    integer
    Enum: 0 1
    +
    +83 +
    +
    +integer +
    +
    + Enum: 0 1
    +

    GPS

    HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -8258,19 +11514,37 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    0 OffHERO11 BlackHERO10 BlackHERO9 Black +HERO11 BlackHERO10 BlackHERO9 Black +
    1 OnHERO11 BlackHERO10 BlackHERO9 Black
    -
    108
    integer
    Enum: 0 1 3 4
    HERO10 BlackHERO9 Black +
    +
    +
    +108 +
    +
    +integer +
    +
    + Enum: 0 1 3 4
    +

    Aspect Ratio

    HERO12 Black

    @@ -8310,7 +11585,8 @@

    Limitations

    - + + @@ -8330,13 +11606,26 @@

    Limitations

    -
    Supported Cameras
    0 4:3 HERO12 Black 9:16 HERO12 Black
    -
    121
    integer
    Enum: 0 2 3 4 7 8 9 10 11
    +
    +121 +
    +
    +integer +
    +
    + Enum: 0 2 3 4 7 8 9 10 11
    +

    Lens

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8405,57 +11695,87 @@

    Limitations

    - + + - + - + - + - + - + - + - + - + -
    Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7 Max SuperViewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 Linear + Horizon LevelingHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 HyperViewHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    10 Linear + Horizon LockHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    11 Max HyperView HERO12 Black
    -
    122
    integer
    Enum: 19 100 101 102
    +
    +122 +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    +

    Lens

    HERO12 Black HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8498,32 +11819,54 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100 Max SuperViewHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    123
    integer
    Enum: 19 100 101 102
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +123 +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    +

    Time Lapse Digital Lenses

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -8566,10 +11910,13 @@

    Limitations

    - + + - + @@ -8579,19 +11926,36 @@

    Limitations

    - + - - -
    Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    128
    integer
    Enum: 13 20 21 26
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +128 +
    +
    +integer +
    +
    + Enum: 13 20 21 26
    +

    Media Format

    HERO12 Black HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -8634,33 +11999,55 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    13 Time Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    20 Time Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    21 Night Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    26 Night Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    134
    integer
    Enum: 2 3
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + + +134 + +
    +
    +integer +
    +
    + Enum: 2 3
    +

    Anti-Flicker

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8694,23 +12082,41 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    2 60HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 50HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    135
    integer
    Enum: 0 1 2 3 4 100
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black + + + + +
    +
    + + + +135 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 100
    +

    Hypersmooth

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -8764,39 +12171,63 @@

    Limitations

    - + + - + - + - + - + - + -
    Supported Cameras
    0 OffHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 LowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +
    2 HighHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 BoostHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 Auto BoostHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    100 Standard HERO10 Black
    -
    150
    integer
    Enum: 0 2
    + +150 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Horizon Leveling

    HERO11 Black

    @@ -8826,7 +12258,8 @@

    Limitations

    - + + @@ -8836,9 +12269,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -
    151
    integer
    Enum: 0 2
    + +151 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Horizon Leveling

    HERO11 Black

    @@ -8868,7 +12315,8 @@

    Limitations

    - + + @@ -8878,11 +12326,24 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -
    162
    integer
    Enum: 0 1
    + +162 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Max Lens

    HERO11 Black HERO10 Black HERO9 Black

    @@ -8914,22 +12376,40 @@

    Limitations

    Supported Cameras - + + 0 Off -HERO11 BlackHERO10 BlackHERO9 Black + +HERO11 BlackHERO10 BlackHERO9 Black + 1 On -HERO11 BlackHERO10 BlackHERO9 Black - - -
    167
    integer
    Enum: 2 3 4
    HERO10 BlackHERO9 Black + + + + +
    +
    + + + +167 + +
    +
    +integer +
    +
    + Enum: 2 3 4
    +

    HindSight

    HERO12 Black HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -8967,24 +12448,44 @@

    Limitations

    - + + - + - + - - -
    Supported Cameras
    2 15 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    3 30 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    4 OffHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    171
    integer
    Enum: 0 2 3 4 5 6 7 8 9 10
    HERO11 BlackHERO10 BlackHERO9 Black + + + + +
    +
    + + + +171 + +
    +
    +integer +
    +
    + Enum: 0 2 3 4 5 6 7 8 9 10
    +

    Interval

    HERO12 Black

    @@ -9054,7 +12556,8 @@

    Limitations

    - + + @@ -9104,9 +12607,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black 3s HERO12 Black
    -
    172
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9
    + +172 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9
    +

    Duration

    HERO12 Black

    @@ -9176,7 +12693,8 @@

    Limitations

    - + + @@ -9226,9 +12744,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black 3 Hours HERO12 Black
    -
    173
    integer
    Enum: 0 1 2
    + +173 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Video Performance Mode

    HERO10 Black

    @@ -9263,7 +12795,8 @@

    Limitations

    - + + @@ -9278,10 +12811,23 @@

    Limitations

    -
    Supported Cameras
    0 Maximum Video Performance HERO10 Black Tripod / Stationary Video HERO10 Black
    -
    175
    integer
    Enum: 0 1
    + +175 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Controls

    HERO12 Black HERO11 Black

    @@ -9312,20 +12859,38 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    0 EasyHERO12 BlackHERO11 Black +HERO12 BlackHERO11 Black +
    1 ProHERO12 BlackHERO11 Black
    -
    176
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    HERO11 Black + + + + +
    +
    + + + +176 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    +

    Easy Mode Speed

    HERO12 Black - HERO11 Black

    +HERO11 Black

    @@ -9676,7 +13242,8 @@

    Limitations

    - + + @@ -10006,9 +13573,22 @@

    Limitations

    -
    Supported Cameras
    0 8X Ultra Slo-Mo HERO11 Black 1X Speed (4K) (50Hz) (Full Frame) (Low Light) (V2) HERO12 Black
    -
    177
    integer
    Enum: 0 1
    + +177 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Enable Night Photo

    HERO11 Black

    @@ -10038,7 +13619,8 @@

    Limitations

    - + + @@ -10048,11 +13630,24 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black On HERO11 Black
    -
    178
    integer
    Enum: 0 1
    + +178 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Wireless Band

    HERO12 Black HERO11 Black Mini HERO11 Black

    @@ -10084,21 +13680,39 @@

    Limitations

    Supported Cameras - + + 0 2.4GHz -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 1 5GHz -HERO12 BlackHERO11 Black MiniHERO11 Black - - -
    179
    integer
    Enum: 1 2 3
    HERO11 Black MiniHERO11 Black + + + + +
    +
    + + + +179 + +
    +
    +integer +
    +
    + Enum: 1 2 3
    +

    Trail Length

    HERO12 Black HERO11 Black Mini HERO11 Black

    @@ -10135,24 +13750,44 @@

    Limitations

    Supported Cameras - + + 1 Short -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 2 Long -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 3 Max -HERO12 BlackHERO11 Black MiniHERO11 Black - - -
    180
    integer
    Enum: 0 101 102
    HERO11 Black MiniHERO11 Black + + + + +
    +
    + + + +180 + +
    +
    +integer +
    +
    + Enum: 0 101 102
    +

    Video Mode

    HERO11 Black

    @@ -10187,7 +13823,8 @@

    Limitations

    - + + @@ -10202,9 +13839,22 @@

    Limitations

    -
    Supported Cameras
    0 Highest Quality HERO11 Black Longest Battery (Green Icon) HERO11 Black
    -
    182
    integer
    Enum: 0 1
    + +182 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Bit Rate

    HERO12 Black

    @@ -10234,7 +13885,8 @@

    Limitations

    - + + @@ -10244,9 +13896,22 @@

    Limitations

    -
    Supported Cameras
    0 Standard HERO12 Black High HERO12 Black
    -
    183
    integer
    Enum: 0 2
    + +183 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Bit Depth

    HERO12 Black

    @@ -10276,7 +13942,8 @@

    Limitations

    - + + @@ -10286,9 +13953,22 @@

    Limitations

    -
    Supported Cameras
    0 8-Bit HERO12 Black 10-Bit HERO12 Black
    -
    184
    integer
    Enum: 0 1 2
    + +184 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Profiles

    HERO12 Black

    @@ -10323,7 +14004,8 @@

    Limitations

    - + + @@ -10338,9 +14020,22 @@

    Limitations

    -
    Supported Cameras
    0 Standard HERO12 Black Log HERO12 Black
    -
    186
    integer
    Enum: 0 1 2
    + +186 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Video Mode

    HERO12 Black

    @@ -10375,7 +14071,8 @@

    Limitations

    - + + @@ -10390,9 +14087,22 @@

    Limitations

    -
    Supported Cameras
    0 Highest Quality HERO12 Black Basic Quality HERO12 Black
    -
    187
    integer
    Enum: 0 1 2 3 4 5 6 7
    + +187 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7
    +

    Lapse Mode

    HERO12 Black

    @@ -10452,7 +14163,8 @@

    Limitations

    - + + @@ -10492,9 +14204,22 @@

    Limitations

    -
    Supported Cameras
    0 TimeWarp HERO12 Black Max Vehicle Lights HERO12 Black
    -
    189
    integer
    Enum: 0 1 2
    + +189 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Max Lens Mod

    HERO12 Black

    @@ -10529,7 +14255,8 @@

    Limitations

    - + + @@ -10544,9 +14271,22 @@

    Limitations

    -
    Supported Cameras
    0 None HERO12 Black Max Lens 2.0 HERO12 Black
    -
    190
    integer
    Enum: 0 1
    + +190 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Max Lens Mod Enable

    HERO12 Black

    @@ -10576,7 +14317,8 @@

    Limitations

    - + + @@ -10586,9 +14328,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black On HERO12 Black
    -
    191
    integer
    Enum: 0 1
    + +191 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Photo Mode

    HERO12 Black

    @@ -10618,7 +14374,8 @@

    Limitations

    - + + @@ -10628,9 +14385,22 @@

    Limitations

    -
    Supported Cameras
    0 Super Photo HERO12 Black Night Photo HERO12 Black
    -
    192
    integer
    Enum: 0 1 3
    + +192 + +
    +
    +integer +
    +
    + Enum: 0 1 3
    +

    Aspect Ratio

    HERO12 Black

    @@ -10665,7 +14436,8 @@

    Limitations

    - + + @@ -10680,9 +14452,22 @@

    Limitations

    -
    Supported Cameras
    0 4:3 HERO12 Black 8:7 HERO12 Black
    -
    193
    integer
    Enum: 0 1 2
    + +193 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Framing

    HERO12 Black

    @@ -10717,7 +14503,8 @@

    Limitations

    - + + @@ -10732,27 +14519,70 @@

    Limitations

    -
    Supported Cameras
    0 Widescreen HERO12 Black Full Frame HERO12 Black
    -
    object

    All currently known status values indexed by status ID

    -
    +
    1
    integer
    Enum: 0 1

    Is the system's internal battery present?

    +
    +
    +
    + +
    + + + + + + +
    +
    +object +
    +

    All currently known status values indexed by status ID

    +
    +
    + + + +
    + + + + +
    +1 +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system's internal battery present?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    2
    integer
    Enum: 0 1 2 3 4
    +
    +2 +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    Rough approximation of internal battery level in bars (or charging)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -10794,7 +14625,8 @@

    Limitations

    - + + @@ -10814,97 +14646,199 @@

    Limitations

    -
    Meaning
    0 Zero
    4 Charging
    -
    6
    integer
    Enum: 0 1

    Is the system currently overheating?

    +
    +
    +
    + + + +6 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system currently overheating?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    8
    integer
    Enum: 0 1

    Is the camera busy?

    +
    +
    + + + +8 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera busy?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    9
    integer
    Enum: 0 1

    Is Quick Capture feature enabled?

    +
    +
    + + + +9 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Quick Capture feature enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    10
    integer
    Enum: 0 1

    Is the system currently encoding?

    +
    +
    + + + +10 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system currently encoding?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    11
    integer
    Enum: 0 1

    Is LCD lock active?

    +
    +
    + + + +11 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is LCD lock active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    13
    integer

    When encoding video, this is the duration (seconds) of the video so far; 0 otherwise

    +
    +
    + + + +13 + +
    +
    +integer +
    +

    When encoding video, this is the duration (seconds) of the video so far; 0 otherwise

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    17
    integer
    Enum: 0 1

    Are Wireless Connections enabled?

    +HERO9 Black

    +
    +
    + + + +17 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Are Wireless Connections enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    19
    integer
    Enum: 0 1 2 3 4
    + +19 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    The pairing state of the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -10946,7 +14881,8 @@

    Limitations

    - + + @@ -10966,13 +14902,26 @@

    Limitations

    -
    Meaning
    0 Never Started
    4 Completed
    -
    20
    integer
    Enum: 0 1 2 3
    + +20 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    The last type of pairing in which the camera was engaged

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11010,7 +14960,8 @@

    Limitations

    - + + @@ -11026,23 +14977,47 @@

    Limitations

    -
    Meaning
    0 Not Pairing
    3 Pairing Bluetooth Device
    -
    21
    integer

    Time since boot (milliseconds) of last successful pairing complete action

    + + +
    +
    + + + +21 + +
    +
    +integer +
    +

    Time since boot (milliseconds) of last successful pairing complete action

    HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    22
    integer
    Enum: 0 1 2 3 4
    + +22 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    State of current scan for WiFi Access Points

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11084,7 +15060,8 @@

    Limitations

    - + + @@ -11104,25 +15081,49 @@

    Limitations

    -
    Meaning
    0 Never started
    4 Completed
    -
    23
    integer

    Time since boot (milliseconds) that the WiFi Access Point scan completed

    + + +
    +
    + + + +23 + +
    +
    +integer +
    +

    Time since boot (milliseconds) that the WiFi Access Point scan completed

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    24
    integer
    Enum: 0 1 2 3 4
    + +24 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    WiFi AP provisioning state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11164,7 +15166,8 @@

    Limitations

    - + + @@ -11184,93 +15187,187 @@

    Limitations

    -
    Meaning
    0 Never started
    4 Completed
    -
    26
    integer

    Wireless remote control version

    + + +
    +
    + + + +26 + +
    +
    +integer +
    +

    Wireless remote control version

    HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    27
    integer
    Enum: 0 1

    Is a wireless remote control connected?

    +HERO9 Black

    +
    +
    + + + +27 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is a wireless remote control connected?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    28
    integer

    Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)

    +
    +
    + + + +28 + +
    +
    +integer +
    +

    Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)

    HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    29
    string

    SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32

    +
    +
    + + + +29 + +
    +
    +string +
    +

    SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    30
    string

    The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32

    +
    +
    + + + +30 + +
    +
    +string +
    +

    The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    31
    integer

    The number of wireless devices connected to the camera

    +HERO9 Black

    +
    +
    + + + +31 + +
    +
    +integer +
    +

    The number of wireless devices connected to the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    32
    integer
    Enum: 0 1

    Is Preview Stream enabled?

    +
    +
    + + + +32 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Preview Stream enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    33
    integer
    Enum: -1 0 1 2 3 4 8
    + +33 + +
    +
    +integer +
    +
    + Enum: -1 0 1 2 3 4 8
    +

    Primary Storage Status

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11320,7 +15418,8 @@

    Limitations

    - + + @@ -11348,59 +15447,116 @@

    Limitations

    -
    Meaning
    -1 Unknown
    8 SD Card Swapped
    -
    34
    integer

    How many photos can be taken with current settings before sdcard is full

    + + +
    +
    + + + +34 + +
    +
    +integer +
    +

    How many photos can be taken with current settings before sdcard is full

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    35
    integer

    How many minutes of video can be captured with current settings before sdcard is full

    +HERO9 Black

    +
    +
    + + + +35 + +
    +
    +integer +
    +

    How many minutes of video can be captured with current settings before sdcard is full

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    38
    integer

    Total number of photos on sdcard

    +HERO9 Black

    +
    +
    + + + +38 + +
    +
    +integer +
    +

    Total number of photos on sdcard

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    39
    integer

    Total number of videos on sdcard

    +
    +
    + + + +39 + +
    +
    +integer +
    +

    Total number of videos on sdcard

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    41
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10
    + +41 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10
    +

    The current status of Over The Air (OTA) update

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11466,7 +15623,8 @@

    Limitations

    - + + @@ -11510,120 +15668,238 @@

    Limitations

    -
    Meaning
    0 Idle
    10 GoPro App: Ready
    -
    42
    integer
    Enum: 0 1

    Is there a pending request to cancel a firmware update download?

    + + +
    +
    + + + +42 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is there a pending request to cancel a firmware update download?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    45
    integer
    Enum: 0 1

    Is locate camera feature active?

    +
    +
    + + + +45 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is locate camera feature active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    49
    integer

    The current timelapse interval countdown value (e.g. 5...4...3...2...1...)

    +
    +
    + + + +49 + +
    +
    +integer +
    +

    The current timelapse interval countdown value (e.g. 5...4...3...2...1...)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    54
    integer

    Remaining space on the sdcard in Kilobytes

    +
    +
    + + + +54 + +
    +
    +integer +
    +

    Remaining space on the sdcard in Kilobytes

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    55
    integer
    Enum: 0 1

    Is preview stream supported in current recording/mode/secondary-stream?

    +
    +
    + + + +55 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is preview stream supported in current recording/mode/secondary-stream?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    56
    integer

    WiFi signal strength in bars

    +
    +
    + + + +56 + +
    +
    +integer +
    +

    WiFi signal strength in bars

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    58
    integer

    The number of hilights in currently-encoding video (value is set to 0 when encoding stops)

    +
    +
    + + + +58 + +
    +
    +integer +
    +

    The number of hilights in currently-encoding video (value is set to 0 when encoding stops)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    59
    integer

    Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)

    +HERO9 Black

    +
    +
    + + + +59 + +
    +
    +integer +
    +

    Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    60
    integer

    The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this

    +HERO9 Black

    +
    +
    + + + +60 + +
    +
    +integer +
    +

    The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    65
    integer
    Enum: 0 1 2 3
    + +65 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    Liveview Exposure Select Mode

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -11660,7 +15937,8 @@

    Limitations

    - + + @@ -11676,69 +15954,141 @@

    Limitations

    -
    Meaning
    0 Disabled
    3 Hemisphere
    -
    66
    integer [ 0 .. 100 ]

    Liveview Exposure Select: y-coordinate (percent)

    + + +
    +
    + + + +66 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Liveview Exposure Select: y-coordinate (percent)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    67
    integer [ 0 .. 100 ]

    Liveview Exposure Select: y-coordinate (percent)

    +HERO9 Black

    +
    +
    + + + +67 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Liveview Exposure Select: y-coordinate (percent)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    68
    integer
    Enum: 0 1

    Does the camera currently have a GPS lock?

    +HERO9 Black

    +
    +
    + + + +68 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Does the camera currently have a GPS lock?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    69
    integer
    Enum: 0 1

    Is AP mode enabled?

    +
    +
    + + + +69 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is AP mode enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    70
    integer [ 0 .. 100 ]

    Internal battery level (percent)

    +
    +
    + + + +70 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Internal battery level (percent)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    74
    integer
    Enum: 0 1 2
    + +74 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Microphone Accessory status

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11772,7 +16123,8 @@

    Limitations

    - + + @@ -11784,25 +16136,49 @@

    Limitations

    -
    Meaning
    0 Accessory not connected
    2 Accessory connected and a microphone is plugged into the accessory
    -
    75
    integer [ 0 .. 100 ]

    Digital Zoom level (percent)

    + + +
    +
    + + + +75 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Digital Zoom level (percent)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    76
    integer
    Enum: 0 1
    + +76 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Wireless Band

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11832,7 +16209,8 @@

    Limitations

    - + + @@ -11840,91 +16218,195 @@

    Limitations

    -
    Meaning
    0 2.4 GHz
    1 5 GHz
    -
    77
    integer
    Enum: 0 1

    Is Digital Zoom feature available?

    + + +
    +
    + + + +77 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Digital Zoom feature available?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    78
    integer
    Enum: 0 1

    Are current video settings mobile friendly? (related to video compression and frame rate)

    +
    +
    + + + +78 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Are current video settings mobile friendly? (related to video compression and frame rate)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    79
    integer
    Enum: 0 1

    Is the camera currently in First Time Use (FTU) UI flow?

    +HERO9 Black

    +
    +
    + + + +79 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera currently in First Time Use (FTU) UI flow?

    HERO10 Black - HERO9 Black

    -
    81
    integer
    Enum: 0 1

    Is 5GHz wireless band available?

    +HERO9 Black

    +
    +
    + + + +81 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is 5GHz wireless band available?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    82
    integer
    Enum: 0 1

    Is the system fully booted and ready to accept commands?

    +
    +
    + + + +82 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system fully booted and ready to accept commands?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    83
    integer
    Enum: 0 1

    Is the internal battery charged sufficiently to start Over The Air (OTA) update?

    +
    +
    + + + +83 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the internal battery charged sufficiently to start Over The Air (OTA) update?

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    85
    integer
    Enum: 0 1

    Is the camera getting too cold to continue recording?

    +HERO9 Black

    +
    +
    + + + +85 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera getting too cold to continue recording?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    86
    integer
    Enum: 0 1 2 3
    + +86 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    Rotational orientation of the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -11962,7 +16445,8 @@

    Limitations

    - + + @@ -11978,135 +16462,273 @@

    Limitations

    -
    Meaning
    0 0 degrees (upright)
    3 270 degrees (laying on left side)
    -
    88
    integer
    Enum: 0 1

    Is this camera model capable of zooming while encoding?

    + + +
    +
    + + + +88 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is this camera model capable of zooming while encoding?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    89
    integer

    Current Flatmode ID

    +
    +
    + + + +89 + +
    +
    +integer +
    +

    Current Flatmode ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    93
    integer

    Current Video Preset (ID)

    +
    +
    + + + +93 + +
    +
    +integer +
    +

    Current Video Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    94
    integer

    Current Photo Preset (ID)

    +
    +
    + + + +94 + +
    +
    +integer +
    +

    Current Photo Preset (ID)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    95
    integer

    Current Time Lapse Preset (ID)

    +HERO9 Black

    +
    +
    + + + +95 + +
    +
    +integer +
    +

    Current Time Lapse Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    96
    integer

    Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)

    +
    +
    + + + +96 + +
    +
    +integer +
    +

    Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    97
    integer

    Current Preset (ID)

    +
    +
    + + + +97 + +
    +
    +integer +
    +

    Current Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    98
    integer

    Preset Modified Status, which contains an event ID and a Preset (Group) ID

    +
    +
    + + + +98 + +
    +
    +integer +
    +

    Preset Modified Status, which contains an event ID and a Preset (Group) ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    99
    integer

    The number of Live Bursts can be captured with current settings before sdcard is full

    +
    +
    + + + +99 + +
    +
    +integer +
    +

    The number of Live Bursts can be captured with current settings before sdcard is full

    HERO11 Black HERO10 Black - HERO9 Black

    -
    100
    integer

    Total number of Live Bursts on sdcard

    +HERO9 Black

    +
    +
    + + + +100 + +
    +
    +integer +
    +

    Total number of Live Bursts on sdcard

    HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    101
    integer
    Enum: 0 1

    Is Capture Delay currently active (i.e. counting down)?

    +
    +
    + + + +101 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Capture Delay currently active (i.e. counting down)?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    102
    integer
    Enum: 0 2 3
    + +102 + +
    +
    +integer +
    +
    + Enum: 0 2 3
    +

    Media Mod state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -12140,7 +16763,8 @@

    Limitations

    - + + @@ -12152,13 +16776,26 @@

    Limitations

    -
    Meaning
    0 Media Mod microphone removed
    3 Media Mod microphone with external microphone
    -
    103
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    + +103 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    +

    Time Warp Speed

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -12232,7 +16870,8 @@

    Limitations

    - + + @@ -12284,19 +16923,45 @@

    Limitations

    -
    Meaning
    0 15x
    12 1/2x (slow-motion)
    -
    104
    integer
    Enum: 0 1

    Is the system's Linux core active?

    + + +
    +
    + + + +104 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system's Linux core active?

    HERO10 Black - HERO9 Black

    -
    105
    integer
    Enum: 0 1 2

    +
    +
    + + + +105 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Camera lens type (reflects changes to lens settings such as 162, 189, 194, ...)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -12330,7 +16996,8 @@

    Limitations

    - + + @@ -12342,42 +17009,92 @@

    Limitations

    -
    Meaning
    0 Default
    2 Max Lens 2.0
    -
    106
    integer
    Enum: 0 1

    Is Video Hindsight Capture Active?

    + + +
    +
    + + + +106 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Video Hindsight Capture Active?

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    107
    integer

    Scheduled Capture Preset ID

    +HERO9 Black

    +
    +
    + + + +107 + +
    +
    +integer +
    +

    Scheduled Capture Preset ID

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    108
    integer
    Enum: 0 1

    Is Scheduled Capture set?

    +HERO9 Black

    +
    +
    + + + +108 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Scheduled Capture set?

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    110
    integer
    Enum: 0 1 2 3 4 5 6 7

    +
    +
    + + + +110 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7
    +

    Display Mod Status (bitmasked)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -12430,7 +17148,8 @@

    Limitations

    - + + @@ -12462,44 +17181,94 @@

    Limitations

    -
    Meaning
    0 000 = Display Mod: 0, HDMI: 0, Display Mod Connected: False
    7 111 = Display Mod: 1, HDMI: 1, Display Mod Connected: True
    -
    111
    integer
    Enum: 0 1

    Does sdcard meet specified minimum write speed?

    + + +
    +
    + + + +111 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Does sdcard meet specified minimum write speed?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    112
    integer

    Number of sdcard write speed errors since device booted

    +HERO10 Black

    +
    +
    + + + +112 + +
    +
    +integer +
    +

    Number of sdcard write speed errors since device booted

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    113
    integer
    Enum: 0 1

    Is Turbo Transfer active?

    +HERO10 Black

    +
    +
    + + + +113 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Turbo Transfer active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    114
    integer
    Enum: 0 1 2
    + +114 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Camera control status ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    +HERO10 Black

    @@ -12532,7 +17302,8 @@

    Limitations

    - + + @@ -12544,22 +17315,48 @@

    Limitations

    -
    Meaning
    0 Camera Idle: No one is attempting to change camera settings
    2 Camera External Control: An outside entity (app) has control and is in a menu or modifying settings
    -
    115
    integer
    Enum: 0 1

    Is the camera connected to a PC via USB?

    + + +
    +
    + + + +115 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera connected to a PC via USB?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    116
    integer
    Enum: 0 1

    +
    +
    + + + +116 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Camera control over USB state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    +HERO10 Black

    @@ -12588,7 +17386,8 @@

    Limitations

    - + + @@ -12596,20 +17395,431 @@

    Limitations

    -
    Meaning
    0 Disabled
    1 Enabled
    -
    117
    integer

    Total SD card capacity in Kilobytes

    + + +
    +
    + + + +117 + +
    +
    +integer +
    +

    Total SD card capacity in Kilobytes

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black

    -
    118
    integer

    Photo interval capture count

    +
    +
    + + + +118 + +
    +
    +integer +
    +

    Photo interval capture count

    HERO12 Black

    -
    {
    • "settings": {
      },
    • "status": {
      }
    }

    VideoMetadata

    + + +
    ct
    required
    integer
    Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    +
    + +
    +
    {
      +
    • +"settings": {
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +}, +
    • +
    • +"status": {
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +} +
    • +
    +}
    +
    +
    + +
    +

    +VideoMetadata

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +ct<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 8 9 10 11 12
    Limitations <td>12</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Media content type

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Media content type

    @@ -12674,7 +17885,8 @@

    Limitations

    - + + @@ -12722,58 +17934,433 @@

    Limitations

    -
    Mode
    Video 0
    Live Burst 12
    -
    cre
    required
    integer
    Example: "1692992748"

    Creation time in seconds since epoch

    -
    s
    required
    integer
    Example: "1234567890"

    File size in bytes

    -
    gumi
    required
    string
    Example: "12345678998765443211234567899875"

    Globally Unique Media ID

    -
    h
    required
    integer
    Example: "1080"

    Height of media in pixels

    -
    w
    required
    integer
    Example: "1920"

    Width of media in pixels

    -
    hc
    required
    integer [ 0 .. 99 ]

    Number of hilights in media

    -
    eis
    required
    integer
    Enum: 0 1

    1 if stabilized, 0 otherwise

    -
    mp
    required
    integer
    Enum: 0 1

    1 if metadata is present, 0 otherwise

    -
    rot
    required
    string

    Deprecated

    -
    tr
    required
    integer
    Enum: 0 1

    1 if file is transcoded, 0 otherwise

    -
    us
    required
    integer
    Enum: 0 1

    Has the file been uploaded? 0 if no, 1 if yes

    -
    ao
    required
    string
    Enum: "auto" "wind" "stereo" "off"
    Example: "auto"

    Audio option

    -
    profile
    required
    integer [ 0 .. 255 ]

    Advanced Video Codec Level

    -
    avc_profile
    required
    integer [ 0 .. 255 ]
    Example: "0"

    Advanced Video Code Profile

    -
    cl
    required
    integer
    Enum: 0 1

    1 if clipped, 0 otherwise

    -
    dur
    required
    integer
    Example: "42"

    Video duration in seconds

    -
    fps
    required
    integer
    Example: "1001"

    Video frame rate numerator

    -
    fps_denom
    required
    integer
    Example: "30000"

    Video frame rate denominator

    -
    ls
    required
    integer [ -1 .. 1234567890 ]

    Low Resolution Video file size in bytes. -1 if there is no LRV file

    -
    pta
    required
    integer
    Enum: 0 1

    1 if protune audio is present, 0 otherwise

    -
    subsample
    required
    integer
    Enum: 0 1

    1 if subsampled from other video, 0 otherwise

    -
    fov
    string

    Field of View

    -
    hi
    Array of integers
    Example: "1500,4700"

    List of hilights in ms offset from start of video

    -
    lc
    integer
    Enum: 0 1

    Lens configuration ==> 0 for front, 1 for rear

    -
    mos
    Array of strings
    Items Enum: "app" "pc" "other"
    Example: "app,pc"

    List of offload states

    -
    prjn
    integer
    Enum: 0 1 2 3 4 5 6 7 8
    +
    +cre<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1692992748" +
    +
    +

    Creation time in seconds since epoch

    +
    +
    +
    +s<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1234567890" +
    +
    +

    File size in bytes

    +
    +
    +
    +gumi<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "12345678998765443211234567899875" +
    +
    +

    Globally Unique Media ID

    +
    +
    +
    +h<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1080" +
    +
    +

    Height of media in pixels

    +
    +
    +
    +w<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1920" +
    +
    +

    Width of media in pixels

    +
    +
    +
    +hc<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 99 ] +
    +

    Number of hilights in media

    +
    +
    +
    +eis<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if stabilized, 0 otherwise

    +
    +
    +
    +mp<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if metadata is present, 0 otherwise

    +
    +
    +
    +rot<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +

    Deprecated

    +
    +
    +
    +tr<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if file is transcoded, 0 otherwise

    +
    +
    +
    +us<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Has the file been uploaded? 0 if no, 1 if yes

    +
    +
    +
    +ao<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    +
    + Enum: "auto" "wind" "stereo" "off"
    + Example: "auto" +
    +
    +

    Audio option

    +
    +
    +
    +profile<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 255 ] +
    +

    Advanced Video Codec Level

    +
    +
    +
    +avc_profile<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ 0 .. 255 ] +
    + Example: "0" +
    +
    +

    Advanced Video Code Profile

    +
    +
    +
    +cl<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if clipped, 0 otherwise

    +
    +
    +
    +dur<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "42" +
    +
    +

    Video duration in seconds

    +
    +
    +
    +fps<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "1001" +
    +
    +

    Video frame rate numerator

    +
    +
    +
    +fps_denom<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    + Example: "30000" +
    +
    +

    Video frame rate denominator

    +
    +
    +
    +ls<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer [ -1 .. 1234567890 ] +
    +

    Low Resolution Video file size in bytes. -1 if there is no LRV file

    +
    +
    +
    +pta<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if protune audio is present, 0 otherwise

    +
    +
    +
    +subsample<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    +

    1 if subsampled from other video, 0 otherwise

    +
    +
    +
    +fov + +
    +
    +string +
    +

    Field of View

    +
    +
    +
    +hi + +
    +
    +Array of integers +
    + Example: "1500,4700" +
    +
    +

    List of hilights in ms offset from start of video

    +
    +
    +
    +lc + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Lens configuration ==> 0 for front, 1 for rear

    +
    +
    +
    +mos + +
    +
    +Array of strings +
    +
    +Items Enum: "app" "pc" "other"
    + Example: "app,pc" +
    +
    +

    List of offload states

    +
    +
    +
    +prjn + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8
    Limitations <td>8</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Lens projection

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Lens projection

    @@ -12826,7 +18414,8 @@

    Limitations

    - + + @@ -12862,44 +18451,191 @@

    Limitations

    -
    Mode
    EAC 0
    Hemisheric 8
    -
    progr
    integer
    Enum: 0 1

    Is video progressive? 1 if progressive, 0 if interlaced

    -
    {
    • "ao": "auto",
    • "avc_profile": 0,
    • "cl": 0,
    • "cre": 1692992748,
    • "ct": 0,
    • "dur": 42,
    • "eis": 0,
    • "fov": "string",
    • "fps": 1001,
    • "fps_denom": 30000,
    • "gumi": "12345678998765443211234567899875",
    • "h": 1080,
    • "hc": 99,
    • "hi": [
      ],
    • "lc": 0,
    • "ls": -1,
    • "mos": [
      ],
    • "mp": 0,
    • "prjn": 0,
    • "profile": 255,
    • "progr": 0,
    • "pta": 0,
    • "rot": "string",
    • "s": 1234567890,
    • "subsample": 0,
    • "tr": 0,
    • "us": 0,
    • "w": 1920
    }

    OTA

    +
    +progr + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is video progressive? 1 if progressive, 0 if interlaced

    +
    +
    +
    +
    +
    + +
    +
    {
      +
    • +"ao": "auto", +
    • +
    • +"avc_profile": 0, +
    • +
    • +"cl": 0, +
    • +
    • +"cre": 1692992748, +
    • +
    • +"ct": 0, +
    • +
    • +"dur": 42, +
    • +
    • +"eis": 0, +
    • +
    • +"fov": "string", +
    • +
    • +"fps": 1001, +
    • +
    • +"fps_denom": 30000, +
    • +
    • +"gumi": "12345678998765443211234567899875", +
    • +
    • +"h": 1080, +
    • +
    • +"hc": 99, +
    • +
    • +"hi": [
        +
      • +
      • +
      +], +
    • +
    • +"lc": 0, +
    • +
    • +"ls": -1, +
    • +
    • +"mos": [
        +
      • +
      • +
      +], +
    • +
    • +"mp": 0, +
    • +
    • +"prjn": 0, +
    • +
    • +"profile": 255, +
    • +
    • +"progr": 0, +
    • +
    • +"pta": 0, +
    • +
    • +"rot": "string", +
    • +
    • +"s": 1234567890, +
    • +
    • +"subsample": 0, +
    • +
    • +"tr": 0, +
    • +
    • +"us": 0, +
    • +
    • +"w": 1920 +
    • +
    +}
    +
    +
    +
    +
    +

    +OTA

    +
    +

    The Over The Air (OTA) update feature allows the user to update the camera's firmware via HTTP connection. There are two ways to perform OTA updates: Simple OTA Update and Resumable OTA Update.

    -

    Firmware update files can be obtained from GoPro's update page or programmatically +

    Firmware update files can be obtained from GoPro's update page or programmatically using the firmware catalog.

    In order to complete the firmware update process, the camera will reboot one or more times. This will cause any existing HTTP connections to be lost.

    -

    Simple OTA Update

    +

    +Simple OTA Update

    +
    +

    The simple OTA update process is done by sending an entire update file to the camera in a single HTTP/POST. Details can be found in the diagram below.

    simple ota state diagram

    -

    Resumable OTA Update

    +

    +Resumable OTA Update

    +
    +

    The resumable OTA update process involves uploading chunks (or all) of a file, marking the file complete and then telling the camera to begin the update process. Chunks are stored until they are explicitly deleted, allowing the client to stop and resume as needed. Details can be found in the diagram below.

    simple ota state diagram

    -

    Resumable OTA Update

    +
    +

    +Resumable OTA Update

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -12921,7 +18658,23 @@

    Limitations


    Perform Resumable OTA Update

    To send a portion of the OTA image as per the requestBody specification, do not use the request parameter.

    -
    query Parameters
    request
    string
    Enum: "delete" "showui" "start" "progress" "cancelled"
    Example: request=progress
    query Parameters + + + +
    +request + +
    +
    +string +
    +
    + Enum: "delete" "showui" "start" "progress" "cancelled"
    + Example: request=progress +
    +
    Limitations <td>show canceled/failed ui on the camera</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Optional request parameter to control / query OTA functionality.

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Optional request parameter to control / query OTA functionality.

    @@ -12958,7 +18712,8 @@

    Limitations

    - + + @@ -12978,18 +18733,135 @@

    Limitations

    + +
    Behavior
    delete Delete any old / cached OTA data
    cancelled show canceled/failed ui on the camera
    +
    +
    +
    +
    +
    Request Body schema: multipart/form-data +
    +
    +

    OTA image chunk used when executed with no request parameter

    +
    + + + + + + + + + + + + +
    +file + +
    +
    +string <binary> +
    +

    Binary file

    +
    +
    +
    +offset + +
    +
    +integer +
    +

    Offset (in bytes) into the file data to start reading from

    +
    +
    +
    +sha1 + +
    +
    +string +
    +

    SHA of the complete firmware upload zip file

    +
    +
    +
    -
    Request Body schema: multipart/form-data

    OTA image chunk used when executed with no request parameter

    -
    file
    string <binary>

    Binary file

    -
    offset
    integer

    Offset (in bytes) into the file data to start reading from

    -
    sha1
    string

    SHA of the complete firmware upload zip file

    -

    Responses

    Response Schema: application/json
    + + + + + + +
    bytes_complete
    integer
    complete
    boolean
    message
    string
    sha1
    string
    status
    integer (OtaStatus)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + + + + + + + + +
    +bytes_complete + +
    +
    +integer +
    +
    +
    +complete + +
    +
    +boolean +
    +
    +
    +message + +
    +
    +string +
    +
    +
    +sha1 + +
    +
    +string +
    +
    +
    +status + +
    +
    +integer (OtaStatus) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    Limitations <td>Insufficient space on the sdcard to hold decompressed update file</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    OTA Status

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    OTA Status

    @@ -13072,2248 +18945,993 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Status Description
    0OKNo errors occurred
    1Unknown RequestServer did not recognize the request
    2Bad ParamsParameter values not recognized
    3SHA1 Send MismatchSHA1 for chunk did not match SHA1 of previous chunk(s)
    4SHA1 Calculated MismatchCalculated SHA1 did not match user-specified SHA1
    5HTTP Boundary ErrorHTTP Post was malformed
    6HTTP Post ErrorUnexpected HTTP / Post Content Type
    7Server BusyHTTP server is busy
    8Offset MismatchAttempt to upload chunk with offset that did not align with previous chunk
    9Bad Post DataServer failed to parse POST data
    10File IncompleteTried to start update before server finished validating .zip file
    11Update in progressFirmware update is in progress
    12Insufficient SpaceInsufficient space on the sdcard to hold decompressed update file
    -

    Request samples

    curl --request POST \
    -  --url 'http://10.5.5.9:8080/gp/gpSoftUpdate?request=progress' \
    -  --header 'content-type: multipart/form-data'

    Response samples

    Content type
    application/json
    {
    • "bytes_complete": 0,
    • "complete": true,
    • "message": "string",
    • "sha1": "string",
    • "status": 0
    }

    Simple OTA Update

    HERO11 Black Mini -HERO11 Black - HERO10 Black -HERO9 Black

    -

    Supported Protocols:

    -
      -
    • USB
    • -
    • WIFI
    • -
    -
    -
    Request Body schema: multipart/form-data
    DirectToSD
    integer

    Always set to 1

    -
    file
    string <binary>

    Binary file

    -
    sha1
    string

    SHA of the complete firmware upload zip file

    -
    update
    integer

    Always set to 1

    -

    Responses

    Response Schema: application/json
    status
    integer (OtaStatus)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12

    OTA Status

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    IDStatusDescription
    0OKNo errors occurred
    1Unknown RequestServer did not recognize the request
    2Bad ParamsParameter values not recognized
    3SHA1 Send MismatchSHA1 for chunk did not match SHA1 of previous chunk(s)
    4SHA1 Calculated MismatchCalculated SHA1 did not match user-specified SHA1
    5HTTP Boundary ErrorHTTP Post was malformed
    6HTTP Post ErrorUnexpected HTTP / Post Content Type
    7Server BusyHTTP server is busy
    8Offset MismatchAttempt to upload chunk with offset that did not align with previous chunk
    9Bad Post DataServer failed to parse POST data
    10File IncompleteTried to start update before server finished validating .zip file
    11Update in progressFirmware update is in progress
    12Insufficient SpaceInsufficient space on the sdcard to hold decompressed update file
    -

    Request samples

    curl --request POST \
    -  --url http://10.5.5.9:8080/gp/gpUpdate \
    -  --header 'content-type: multipart/form-data'

    Response samples

    Content type
    application/json
    {
    • "status": 0
    }

    Presets

    Presets

    The camera organizes many modes of operation into Presets.

    -
    -

    Note: The Preset ID is required to load a Preset via Load Preset.

    -
    -

    Depending on the camera's state, different collections of presets will be available for immediate loading and use. -Below is a table of settings that affect the current preset collection and thereby which presets can be loaded:

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    IDSetting
    162Max Lens
    173Video Performance Mode
    175Controls
    177Enable Night Photo
    180Video Mode
    186Video Mode
    187Lapse Mode
    189Max Lens Mod
    190Max Lens Mod Enable
    191Photo Mode
    -

    Preset Groups

    Presets are organized into Preset Groups.

    -

    To find the currently available Presets / Preset Groups, use Get Preset Status.

    -

    Get Available Presets

    HERO12 Black -HERO11 Black Mini - HERO11 Black -HERO10 Black - HERO9 Black

    -

    Supported Protocols:

    -
      -
    • USB
    • -
    • WIFI
    • -
    -
    -

    Get the currently available Preset Groups and Presets, the set of which -depends on the current camera settings.

    -

    Responses

    Response Schema: application/json
    +
    Array of objects

    A list of ranges of icon ID's available for custom presets.

    -
    Array
    length
    integer
    Example: "10"

    number of items in the range

    -
    start
    integer
    Example: "0"

    start index of range

    -
    Array of objects

    A list of ranges of title ID's available for custom presets.

    -
    Array
    length
    integer
    Example: "25"

    number of items in the range

    -
    start
    integer
    Example: "18"

    start index of range

    -
    Array of objects (PresetGroup)

    Array of Preset Groups

    -
    Array
    +
    canAddPreset
    boolean

    Is there room in the group to add additional Presets?

    -
    icon
    integer (EnumPresetGroupIcon)
    Enum: 0 1 2 3 4 5 6 7
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    IDNameSummary
    0PRESET_GROUP_VIDEO_ICON_ID
    1PRESET_GROUP_PHOTO_ICON_ID
    2PRESET_GROUP_TIMELAPSE_ICON_ID
    3PRESET_GROUP_LONG_BAT_VIDEO_ICON_ID
    4PRESET_GROUP_ENDURANCE_VIDEO_ICON_ID
    5PRESET_GROUP_MAX_VIDEO_ICON_ID
    6PRESET_GROUP_MAX_PHOTO_ICON_ID
    7PRESET_GROUP_MAX_TIMELAPSE_ICON_ID
    -
    id
    integer (EnumPresetGroup)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 1000 1001 1002
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    IDNameSummary
    0PRESET_GROUP_ID_VIDEO_SINGLE_LENSSingle video
    1PRESET_GROUP_ID_PHOTO_SINGLE_LENSSingle photo
    2PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENSSingle timelapse
    3PRESET_GROUP_ID_VIDEO_HEMI_LENSSpherical video hemi lens
    4PRESET_GROUP_ID_PHOTO_HEMI_LENSSpherical photo hemi lens
    5PRESET_GROUP_ID_TIMELAPSE_HEMI_LENSSpherical timelapse hemi lens
    6PRESET_GROUP_ID_SPECIAL_INTERNALSpecial
    7PRESET_GROUP_ID_SPECIAL_HEMISpecial hemi lens
    8PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENSVideo battery endurance
    9PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENSVideo longest battery
    10PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENSEasy single video
    11PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENSEasy video battery endurance
    12PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENSEasy single photo
    13PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENSEasy single timelapse
    14PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENSEasy video longest battery
    15PRESET_GROUP_ID_VIDEO_HEMI_LENS_2Hemi Lens 2 video
    16PRESET_GROUP_ID_PHOTO_HEMI_LENS_2Hemi Lens 2 photo
    17PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 timelapse
    18PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2Hemi Lens 2 special
    19PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENSHemi Lens easy video
    20PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENSHemi Lens easy photo
    21PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENSHemi Lens easy timelapse
    22PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2Hemi Lens 2 easy video
    23PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2Hemi Lens 2 easy photo
    24PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 easy timelapse
    25PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARDSingle video standard profile - for internal preset switch only
    26PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDRSingle video hdr profile - for internal preset switch only
    27PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOGSingle video log profile - for internal preset switch only
    28PRESET_GROUP_ID_VIDEO_SPHERICAL_LENSSpherical video mode
    29PRESET_GROUP_ID_PHOTO_SPHERICAL_LENSSpherical photo mode
    30PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENSSpherical timelapse mode
    31PRESET_GROUP_ID_SPECIAL_SPHERICALSpecial spherical lens
    32PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARDSpherical video standard profile - for internal preset switch only
    33PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOGSpherical video standard profile - for internal preset switch only
    34PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARDHemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch only
    35PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOGHemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch only
    36PRESET_GROUP_ID_VIDEO_MACRO_LENSVideo macro lens
    37PRESET_GROUP_ID_PHOTO_MACRO_LENSPhoto macro lens
    38PRESET_GROUP_ID_TIMELAPSE_MACRO_LENSTimelapse macro lens
    39PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENSEasy Video macro lens
    40PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENSEasy Photo macro lens
    41PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENSEasy Timelapse macro lens
    42PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARDMacro lens video standard profile - for internal preset switch only
    43PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOGMacro lens video log profile - for internal preset switch only
    44PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENSVideo anamorphic lens
    45PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENSPhoto anamorphic lens
    46PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENSTimelapse anamorphic lens
    47PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENSEasy Video anamorphic lens
    48PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENSEasy Photo anamorphic lens
    49PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENSEasy Timelapse anamorphic lens
    50PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARDAnamorphic lens video standard profile - for internal preset switch only
    51PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOGAnamorphic lens video log profile - for internal preset switch only
    1000PRESET_GROUP_ID_VIDEO
    1001PRESET_GROUP_ID_PHOTO
    1002PRESET_GROUP_ID_TIMELAPSE
    -
    Array of objects (Preset)

    Array of Presets contained in this Preset Group

    -
    Array
    icon
    integer (EnumPresetIcon)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 89 90 91 92 93 94 95 96 97 98 99 100 101 102 1000 1001 1002
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + +
    IDNameSummary
    0PRESET_ICON_VIDEO
    1PRESET_ICON_ACTIVITY
    2PRESET_ICON_CINEMATIC
    3PRESET_ICON_PHOTO
    4PRESET_ICON_LIVE_BURST
    5PRESET_ICON_BURST
    6PRESET_ICON_PHOTO_NIGHT
    7PRESET_ICON_TIMEWARP
    8PRESET_ICON_TIMELAPSE
    9PRESET_ICON_NIGHTLAPSE
    10PRESET_ICON_SNAIL
    11PRESET_ICON_VIDEO_2
    12PRESET_ICON_360_VIDEO
    13PRESET_ICON_PHOTO_2
    14PRESET_ICON_PANORAMA
    15PRESET_ICON_BURST_2
    16PRESET_ICON_TIMEWARP_2
    17PRESET_ICON_TIMELAPSE_2
    18PRESET_ICON_CUSTOM
    19PRESET_ICON_AIR
    20PRESET_ICON_BIKE
    21PRESET_ICON_EPIC
    22PRESET_ICON_INDOOR
    23PRESET_ICON_MOTOR
    24PRESET_ICON_MOUNTED
    25PRESET_ICON_OUTDOOR
    26PRESET_ICON_POV
    27PRESET_ICON_SELFIE
    28PRESET_ICON_SKATE
    29PRESET_ICON_SNOW
    30PRESET_ICON_TRAIL
    31PRESET_ICON_TRAVEL
    32PRESET_ICON_WATER
    33PRESET_ICON_LOOPING
    34PRESET_ICON_STARS
    35PRESET_ICON_ACTION
    36PRESET_ICON_FOLLOW_CAM
    37PRESET_ICON_SURF
    38PRESET_ICON_CITY
    39PRESET_ICON_SHAKY
    40PRESET_ICON_CHESTY
    41PRESET_ICON_HELMET
    42PRESET_ICON_BITE
    55PRESET_ICON_MAX_VIDEO
    56PRESET_ICON_MAX_PHOTO
    57PRESET_ICON_MAX_TIMEWARP
    58PRESET_ICON_BASIC
    59PRESET_ICON_ULTRA_SLO_MO
    60PRESET_ICON_STANDARD_ENDURANCE
    61PRESET_ICON_ACTIVITY_ENDURANCE
    62PRESET_ICON_CINEMATIC_ENDURANCE
    63PRESET_ICON_SLOMO_ENDURANCE
    64PRESET_ICON_STATIONARY_1
    65PRESET_ICON_STATIONARY_2
    66PRESET_ICON_STATIONARY_3
    67PRESET_ICON_STATIONARY_4
    70PRESET_ICON_SIMPLE_SUPER_PHOTO
    71PRESET_ICON_SIMPLE_NIGHT_PHOTO
    73PRESET_ICON_HIGHEST_QUALITY_VIDEO
    74PRESET_ICON_STANDARD_QUALITY_VIDEO
    75PRESET_ICON_BASIC_QUALITY_VIDEO
    76PRESET_ICON_STAR_TRAIL
    77PRESET_ICON_LIGHT_PAINTING
    78PRESET_ICON_LIGHT_TRAIL
    79PRESET_ICON_FULL_FRAME
    80PRESET_ICON_EASY_MAX_VIDEO
    81PRESET_ICON_EASY_MAX_PHOTO
    82PRESET_ICON_EASY_MAX_TIMEWARP
    83PRESET_ICON_EASY_MAX_STAR_TRAIL
    84PRESET_ICON_EASY_MAX_LIGHT_PAINTING
    85PRESET_ICON_EASY_MAX_LIGHT_TRAIL
    89PRESET_ICON_MAX_STAR_TRAIL
    90PRESET_ICON_MAX_LIGHT_PAINTING
    91PRESET_ICON_MAX_LIGHT_TRAIL
    92PRESET_ICON_360_BURST
    93PRESET_ICON_360_PHOTO_NIGHT0OKNo errors occurred
    94PRESET_ICON_360_NIGHTLAPSE1Unknown RequestServer did not recognize the request
    95PRESET_ICON_360_TIMELAPSE_PHOTO2Bad ParamsParameter values not recognized
    96PRESET_ICON_360_NIGHTLAPSE_PHOTO3SHA1 Send MismatchSHA1 for chunk did not match SHA1 of previous chunk(s)
    97PRESET_ICON_360_PHOTO4SHA1 Calculated MismatchCalculated SHA1 did not match user-specified SHA1
    98PRESET_ICON_360_TIMELAPSE5HTTP Boundary ErrorHTTP Post was malformed
    99PRESET_ICON_360_TIMEWARP6HTTP Post ErrorUnexpected HTTP / Post Content Type
    100PRESET_ICON_EASY_STANDARD_PROFILE7Server BusyHTTP server is busy
    101PRESET_ICON_EASY_HDR_PROFILE8Offset MismatchAttempt to upload chunk with offset that did not align with previous chunk
    102PRESET_ICON_BURST_SLOMO9Bad Post DataServer failed to parse POST data
    1000PRESET_ICON_TIMELAPSE_PHOTO10File IncompleteTried to start update before server finished validating .zip file
    1001PRESET_ICON_NIGHTLAPSE_PHOTO11Update in progressFirmware update is in progress
    1002PRESET_ICON_MAX12Insufficient SpaceInsufficient space on the sdcard to hold decompressed update file
    +
    +
    +
    -
    id
    integer <int32>

    Unique preset identifier

    -
    isFixed
    boolean

    Is this preset mutable?

    -
    isModified
    boolean

    Has the preset been modified from the factory defaults?

    -
    mode
    integer (EnumFlatMode)
    Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request POST \
    +  --url 'http://10.5.5.9:8080/gp/gpSoftUpdate?request=progress' \
    +  --header 'content-type: multipart/form-data'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"bytes_complete": 0, +
    • +
    • +"complete": true, +
    • +
    • +"message": "string", +
    • +
    • +"sha1": "string", +
    • +
    • +"status": 0 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Simple OTA Update

    +
    +

    HERO11 Black Mini +HERO11 Black + HERO10 Black +HERO9 Black

    +

    Supported Protocols:

    +
      +
    • USB
    • +
    • WIFI
    • +
    +
    +
    +
    Request Body schema: multipart/form-data +
    +
    + + + + + + + + + + + + + + + + + +
    +DirectToSD + +
    +
    +integer +
    +

    Always set to 1

    +
    +
    +
    +file + +
    +
    +string <binary> +
    +

    Binary file

    +
    +
    +
    +sha1 + +
    +
    +string +
    +

    SHA of the complete firmware upload zip file

    +
    +
    +
    +update + +
    +
    +integer +
    +

    Always set to 1

    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    + + + +
    +status + +
    +
    +integer (OtaStatus) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    +

    OTA Status

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    IDStatusDescription
    0OKNo errors occurred
    1Unknown RequestServer did not recognize the request
    2Bad ParamsParameter values not recognized
    3SHA1 Send MismatchSHA1 for chunk did not match SHA1 of previous chunk(s)
    4SHA1 Calculated MismatchCalculated SHA1 did not match user-specified SHA1
    5HTTP Boundary ErrorHTTP Post was malformed
    6HTTP Post ErrorUnexpected HTTP / Post Content Type
    7Server BusyHTTP server is busy
    8Offset MismatchAttempt to upload chunk with offset that did not align with previous chunk
    9Bad Post DataServer failed to parse POST data
    10File IncompleteTried to start update before server finished validating .zip file
    11Update in progressFirmware update is in progress
    12Insufficient SpaceInsufficient space on the sdcard to hold decompressed update file
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request POST \
    +  --url http://10.5.5.9:8080/gp/gpUpdate \
    +  --header 'content-type: multipart/form-data'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
    • +"status": 0 +
    +}
    +
    +
    +
    +
    +
    +
    +

    +Presets

    +
    +

    +Presets

    +
    +

    The camera organizes many modes of operation into Presets.

    +
    +

    Note: The Preset ID is required to load a Preset via Load Preset.

    +
    +

    Depending on the camera's state, different collections of presets will be available for immediate loading and use. +Below is a table of settings that affect the current preset collection and thereby which presets can be loaded:

    + + + - - + - - - - + + + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + + +
    IDNameSummarySetting
    -1FLAT_MODE_UNKNOWN
    162Max Lens
    4FLAT_MODE_PLAYBACK173Video Performance Mode
    5FLAT_MODE_SETUP175Controls
    12FLAT_MODE_VIDEO177Enable Night Photo
    13FLAT_MODE_TIME_LAPSE_VIDEO180Video Mode
    15FLAT_MODE_LOOPING186Video Mode
    16FLAT_MODE_PHOTO_SINGLE187Lapse Mode
    17FLAT_MODE_PHOTO189Max Lens Mod
    18FLAT_MODE_PHOTO_NIGHT190Max Lens Mod Enable
    19FLAT_MODE_PHOTO_BURST191Photo Mode
    +
    +
    +
    +

    +Preset Groups

    +
    +

    Presets are organized into Preset Groups.

    +

    To find the currently available Presets / Preset Groups, use Get Preset Status.

    +
    +
    +
    +
    +

    +Get Available Presets

    +
    +

    HERO12 Black +HERO11 Black Mini + HERO11 Black +HERO10 Black + HERO9 Black

    +

    Supported Protocols:

    +
      +
    • USB
    • +
    • WIFI
    • +
    +
    +

    Get the currently available Preset Groups and Presets, the set of which +depends on the current camera settings.

    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + + + + +
    + + +
    +
    +Array of objects +
    +

    A list of ranges of icon ID's available for custom presets.

    +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + +
    +length +
    +
    +integer +
    + Example: "10" +
    +
    +

    number of items in the range

    +
    +
    +start +
    +
    +integer +
    + Example: "0" +
    +
    +

    start index of range

    +
    +
    +
    +
    +
    + + +
    +
    +Array of objects +
    +

    A list of ranges of title ID's available for custom presets.

    +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + +
    +length +
    +
    +integer +
    + Example: "25" +
    +
    +

    number of items in the range

    +
    +
    +start +
    +
    +integer +
    + Example: "18" +
    +
    +

    start index of range

    +
    +
    +
    +
    +
    + + +
    +
    +Array of objects (PresetGroup) +
    +

    Array of Preset Groups

    +
    +
    +
    +
    +
    Array
    +
    + + + + + + + + + + + + + +
    +canAddPreset +
    +
    +boolean +
    +

    Is there room in the group to add additional Presets?

    +
    +
    +icon +
    +
    +integer (EnumPresetGroupIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7
    + + - - - + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + + +
    20FLAT_MODE_TIME_LAPSE_PHOTOIDNameSummary
    21FLAT_MODE_NIGHT_LAPSE_PHOTO0PRESET_GROUP_VIDEO_ICON_ID
    22FLAT_MODE_BROADCAST_RECORD1PRESET_GROUP_PHOTO_ICON_ID
    23FLAT_MODE_BROADCAST_BROADCAST2PRESET_GROUP_TIMELAPSE_ICON_ID
    24FLAT_MODE_TIME_WARP_VIDEO3PRESET_GROUP_LONG_BAT_VIDEO_ICON_ID
    25FLAT_MODE_LIVE_BURST4PRESET_GROUP_ENDURANCE_VIDEO_ICON_ID
    26FLAT_MODE_NIGHT_LAPSE_VIDEO5PRESET_GROUP_MAX_VIDEO_ICON_ID
    27FLAT_MODE_SLOMO6PRESET_GROUP_MAX_PHOTO_ICON_ID
    28FLAT_MODE_IDLE7PRESET_GROUP_MAX_TIMELAPSE_ICON_ID
    +
    +
    +id +
    +
    +integer (EnumPresetGroup) +
    +
    + Enum: 1000 1001 1002
    + + - - - + + + + + - - + + - - + + - - + + -
    29FLAT_MODE_VIDEO_STAR_TRAILIDNameSummary
    30FLAT_MODE_VIDEO_LIGHT_PAINTING1000PRESET_GROUP_ID_VIDEO
    31FLAT_MODE_VIDEO_LIGHT_TRAIL1001PRESET_GROUP_ID_PHOTO
    32FLAT_MODE_VIDEO_BURST_SLOMO1002PRESET_GROUP_ID_TIMELAPSE
    -
    Array of objects (PresetSetting)
    Array
    id
    integer <int32>

    Setting identifier

    -
    isCaption
    boolean

    Does this setting appear on the Preset "pill" in the camera UI?

    -
    value
    integer <int32>

    Setting value

    -
    titleId
    integer (EnumPresetTitle)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    +
    + +
    +
    +Array of objects (Preset) +
    +

    Array of Presets contained in this Preset Group

    +
    +
    +
    Array
    +
    + + + + + + + + + + + + + + + + + + +
    +icon +
    +
    +integer (EnumPresetIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 1000 1001
    Limitations </thead> <tbody><tr> <td>0</td> -<td>PRESET_TITLE_ACTIVITY</td> +<td>PRESET_ICON_VIDEO</td> <td></td> </tr> <tr> <td>1</td> -<td>PRESET_TITLE_STANDARD</td> +<td>PRESET_ICON_ACTIVITY</td> <td></td> </tr> <tr> <td>2</td> -<td>PRESET_TITLE_CINEMATIC</td> +<td>PRESET_ICON_CINEMATIC</td> <td></td> </tr> <tr> <td>3</td> -<td>PRESET_TITLE_PHOTO</td> +<td>PRESET_ICON_PHOTO</td> <td></td> </tr> <tr> <td>4</td> -<td>PRESET_TITLE_LIVE_BURST</td> +<td>PRESET_ICON_LIVE_BURST</td> <td></td> </tr> <tr> <td>5</td> -<td>PRESET_TITLE_BURST</td> +<td>PRESET_ICON_BURST</td> <td></td> </tr> <tr> <td>6</td> -<td>PRESET_TITLE_NIGHT</td> +<td>PRESET_ICON_PHOTO_NIGHT</td> <td></td> </tr> <tr> <td>7</td> -<td>PRESET_TITLE_TIME_WARP</td> +<td>PRESET_ICON_TIMEWARP</td> <td></td> </tr> <tr> <td>8</td> -<td>PRESET_TITLE_TIME_LAPSE</td> +<td>PRESET_ICON_TIMELAPSE</td> <td></td> </tr> <tr> <td>9</td> -<td>PRESET_TITLE_NIGHT_LAPSE</td> +<td>PRESET_ICON_NIGHTLAPSE</td> <td></td> </tr> <tr> <td>10</td> -<td>PRESET_TITLE_VIDEO</td> +<td>PRESET_ICON_SNAIL</td> <td></td> </tr> <tr> <td>11</td> -<td>PRESET_TITLE_SLOMO</td> -<td></td> -</tr> -<tr> -<td>12</td> -<td>PRESET_TITLE_360_VIDEO</td> +<td>PRESET_ICON_VIDEO_2</td> <td></td> </tr> <tr> <td>13</td> -<td>PRESET_TITLE_PHOTO_2</td> +<td>PRESET_ICON_PHOTO_2</td> <td></td> </tr> <tr> <td>14</td> -<td>PRESET_TITLE_PANORAMA</td> +<td>PRESET_ICON_PANORAMA</td> <td></td> </tr> <tr> <td>15</td> -<td>PRESET_TITLE_360_PHOTO</td> +<td>PRESET_ICON_BURST_2</td> <td></td> </tr> <tr> <td>16</td> -<td>PRESET_TITLE_TIME_WARP_2</td> +<td>PRESET_ICON_TIMEWARP_2</td> <td></td> </tr> <tr> <td>17</td> -<td>PRESET_TITLE_360_TIME_WARP</td> +<td>PRESET_ICON_TIMELAPSE_2</td> <td></td> </tr> <tr> <td>18</td> -<td>PRESET_TITLE_CUSTOM</td> +<td>PRESET_ICON_CUSTOM</td> <td></td> </tr> <tr> <td>19</td> -<td>PRESET_TITLE_AIR</td> +<td>PRESET_ICON_AIR</td> <td></td> </tr> <tr> <td>20</td> -<td>PRESET_TITLE_BIKE</td> +<td>PRESET_ICON_BIKE</td> <td></td> </tr> <tr> <td>21</td> -<td>PRESET_TITLE_EPIC</td> +<td>PRESET_ICON_EPIC</td> <td></td> </tr> <tr> <td>22</td> -<td>PRESET_TITLE_INDOOR</td> +<td>PRESET_ICON_INDOOR</td> <td></td> </tr> <tr> <td>23</td> -<td>PRESET_TITLE_MOTOR</td> +<td>PRESET_ICON_MOTOR</td> <td></td> </tr> <tr> <td>24</td> -<td>PRESET_TITLE_MOUNTED</td> +<td>PRESET_ICON_MOUNTED</td> <td></td> </tr> <tr> <td>25</td> -<td>PRESET_TITLE_OUTDOOR</td> -<td></td> -</tr> -<tr> -<td>26</td> -<td>PRESET_TITLE_POV</td> -<td></td> -</tr> -<tr> -<td>27</td> -<td>PRESET_TITLE_SELFIE</td> -<td></td> -</tr> -<tr> -<td>28</td> -<td>PRESET_TITLE_SKATE</td> -<td></td> -</tr> -<tr> -<td>29</td> -<td>PRESET_TITLE_SNOW</td> -<td></td> -</tr> -<tr> -<td>30</td> -<td>PRESET_TITLE_TRAIL</td> -<td></td> -</tr> -<tr> -<td>31</td> -<td>PRESET_TITLE_TRAVEL</td> -<td></td> -</tr> -<tr> -<td>32</td> -<td>PRESET_TITLE_WATER</td> -<td></td> -</tr> -<tr> -<td>33</td> -<td>PRESET_TITLE_LOOPING</td> -<td></td> -</tr> -<tr> -<td>34</td> -<td>PRESET_TITLE_STARS</td> -<td></td> -</tr> -<tr> -<td>35</td> -<td>PRESET_TITLE_ACTION</td> -<td></td> -</tr> -<tr> -<td>36</td> -<td>PRESET_TITLE_FOLLOW_CAM</td> -<td></td> -</tr> -<tr> -<td>37</td> -<td>PRESET_TITLE_SURF</td> -<td></td> -</tr> -<tr> -<td>38</td> -<td>PRESET_TITLE_CITY</td> -<td></td> -</tr> -<tr> -<td>39</td> -<td>PRESET_TITLE_SHAKY</td> -<td></td> -</tr> -<tr> -<td>40</td> -<td>PRESET_TITLE_CHESTY</td> -<td></td> -</tr> -<tr> -<td>41</td> -<td>PRESET_TITLE_HELMET</td> -<td></td> -</tr> -<tr> -<td>42</td> -<td>PRESET_TITLE_BITE</td> -<td></td> -</tr> -<tr> -<td>43</td> -<td>PRESET_TITLE_CUSTOM_CINEMATIC</td> -<td></td> -</tr> -<tr> -<td>44</td> -<td>PRESET_TITLE_DIVE</td> -<td></td> -</tr> -<tr> -<td>45</td> -<td>PRESET_TITLE_FPV</td> -<td></td> -</tr> -<tr> -<td>46</td> -<td>PRESET_TITLE_HDR</td> -<td></td> -</tr> -<tr> -<td>47</td> -<td>PRESET_TITLE_LANDSCAPE</td> -<td></td> -</tr> -<tr> -<td>48</td> -<td>PRESET_TITLE_LOG</td> -<td></td> -</tr> -<tr> -<td>49</td> -<td>PRESET_TITLE_CUSTOM_SLOMO</td> -<td></td> -</tr> -<tr> -<td>50</td> -<td>PRESET_TITLE_TRIPOD</td> -<td></td> -</tr> -<tr> -<td>51</td> -<td>PRESET_TITLE_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>52</td> -<td>PRESET_TITLE_360_NIGHT_LAPSE</td> -<td></td> -</tr> -<tr> -<td>53</td> -<td>PRESET_TITLE_360_NIGHT_PHOTO</td> -<td></td> -</tr> -<tr> -<td>54</td> -<td>PRESET_TITLE_PANO_TIME_LAPSE</td> -<td></td> -</tr> -<tr> -<td>55</td> -<td>PRESET_TITLE_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_TITLE_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_TITLE_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>58</td> -<td>PRESET_TITLE_BASIC</td> -<td></td> -</tr> -<tr> -<td>59</td> -<td>PRESET_TITLE_ULTRA_SLO_MO</td> -<td></td> -</tr> -<tr> -<td>60</td> -<td>PRESET_TITLE_STANDARD_ENDURANCE</td> -<td></td> -</tr> -<tr> -<td>61</td> -<td>PRESET_TITLE_ACTIVITY_ENDURANCE</td> -<td></td> -</tr> -<tr> -<td>62</td> -<td>PRESET_TITLE_CINEMATIC_ENDURANCE</td> -<td></td> -</tr> -<tr> -<td>63</td> -<td>PRESET_TITLE_SLOMO_ENDURANCE</td> -<td></td> -</tr> -<tr> -<td>64</td> -<td>PRESET_TITLE_STATIONARY_1</td> -<td></td> -</tr> -<tr> -<td>65</td> -<td>PRESET_TITLE_STATIONARY_2</td> -<td></td> -</tr> -<tr> -<td>66</td> -<td>PRESET_TITLE_STATIONARY_3</td> -<td></td> -</tr> -<tr> -<td>67</td> -<td>PRESET_TITLE_STATIONARY_4</td> -<td></td> -</tr> -<tr> -<td>68</td> -<td>PRESET_TITLE_SIMPLE_VIDEO</td> -<td></td> -</tr> -<tr> -<td>69</td> -<td>PRESET_TITLE_SIMPLE_TIME_WARP</td> +<td>PRESET_ICON_OUTDOOR</td> <td></td> </tr> <tr> -<td>70</td> -<td>PRESET_TITLE_SIMPLE_SUPER_PHOTO</td> +<td>26</td> +<td>PRESET_ICON_POV</td> <td></td> </tr> <tr> -<td>71</td> -<td>PRESET_TITLE_SIMPLE_NIGHT_PHOTO</td> +<td>27</td> +<td>PRESET_ICON_SELFIE</td> <td></td> </tr> <tr> -<td>72</td> -<td>PRESET_TITLE_SIMPLE_VIDEO_ENDURANCE</td> +<td>28</td> +<td>PRESET_ICON_SKATE</td> <td></td> </tr> <tr> -<td>73</td> -<td>PRESET_TITLE_HIGHEST_QUALITY</td> +<td>29</td> +<td>PRESET_ICON_SNOW</td> <td></td> </tr> <tr> -<td>74</td> -<td>PRESET_TITLE_EXTENDED_BATTERY</td> +<td>30</td> +<td>PRESET_ICON_TRAIL</td> <td></td> </tr> <tr> -<td>75</td> -<td>PRESET_TITLE_LONGEST_BATTERY</td> +<td>31</td> +<td>PRESET_ICON_TRAVEL</td> <td></td> </tr> <tr> -<td>76</td> -<td>PRESET_TITLE_STAR_TRAIL</td> +<td>32</td> +<td>PRESET_ICON_WATER</td> <td></td> </tr> <tr> -<td>77</td> -<td>PRESET_TITLE_LIGHT_PAINTING</td> +<td>33</td> +<td>PRESET_ICON_LOOPING</td> <td></td> </tr> <tr> -<td>78</td> -<td>PRESET_TITLE_LIGHT_TRAIL</td> +<td>34</td> +<td>PRESET_ICON_STARS</td> <td></td> </tr> <tr> -<td>79</td> -<td>PRESET_TITLE_FULL_FRAME</td> +<td>35</td> +<td>PRESET_ICON_ACTION</td> <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_TITLE_MAX_LENS_VIDEO</td> +<td>36</td> +<td>PRESET_ICON_FOLLOW_CAM</td> <td></td> </tr> <tr> -<td>81</td> -<td>PRESET_TITLE_MAX_LENS_TIMEWARP</td> +<td>37</td> +<td>PRESET_ICON_SURF</td> <td></td> </tr> <tr> -<td>82</td> -<td>PRESET_TITLE_STANDARD_QUALITY_VIDEO</td> +<td>38</td> +<td>PRESET_ICON_CITY</td> <td></td> </tr> <tr> -<td>83</td> -<td>PRESET_TITLE_BASIC_QUALITY_VIDEO</td> +<td>39</td> +<td>PRESET_ICON_SHAKY</td> <td></td> </tr> <tr> -<td>84</td> -<td>PRESET_TITLE_EASY_MAX_VIDEO</td> +<td>40</td> +<td>PRESET_ICON_CHESTY</td> <td></td> </tr> <tr> -<td>85</td> -<td>PRESET_TITLE_EASY_MAX_PHOTO</td> +<td>41</td> +<td>PRESET_ICON_HELMET</td> <td></td> </tr> <tr> -<td>86</td> -<td>PRESET_TITLE_EASY_MAX_TIMEWARP</td> +<td>42</td> +<td>PRESET_ICON_BITE</td> <td></td> </tr> <tr> -<td>87</td> -<td>PRESET_TITLE_EASY_MAX_STAR_TRAIL</td> +<td>58</td> +<td>PRESET_ICON_BASIC</td> <td></td> </tr> <tr> -<td>88</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_PAINTING</td> +<td>59</td> +<td>PRESET_ICON_ULTRA_SLO_MO</td> <td></td> </tr> <tr> -<td>89</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_TRAIL</td> +<td>60</td> +<td>PRESET_ICON_STANDARD_ENDURANCE</td> <td></td> </tr> <tr> -<td>90</td> -<td>PRESET_TITLE_MAX_STAR_TRAIL</td> +<td>61</td> +<td>PRESET_ICON_ACTIVITY_ENDURANCE</td> <td></td> </tr> <tr> -<td>91</td> -<td>PRESET_TITLE_MAX_LIGHT_PAINTING</td> +<td>62</td> +<td>PRESET_ICON_CINEMATIC_ENDURANCE</td> <td></td> </tr> <tr> -<td>92</td> -<td>PRESET_TITLE_MAX_LIGHT_TRAIL</td> +<td>63</td> +<td>PRESET_ICON_SLOMO_ENDURANCE</td> <td></td> </tr> <tr> -<td>93</td> -<td>PRESET_TITLE_HIGHEST_QUALITY_VIDEO</td> +<td>64</td> +<td>PRESET_ICON_STATIONARY_1</td> <td></td> </tr> <tr> -<td>94</td> -<td>PRESET_TITLE_USER_DEFINED_CUSTOM_NAME</td> +<td>65</td> +<td>PRESET_ICON_STATIONARY_2</td> <td></td> </tr> <tr> -<td>95</td> -<td>PRESET_TITLE_360_DEG_BURST</td> -<td>- FW_PRESET_TITLE_360_BURST</td> -</tr> -<tr> -<td>96</td> -<td>PRESET_TITLE_360_DEG_NIGHT_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT</td> +<td>66</td> +<td>PRESET_ICON_STATIONARY_3</td> +<td></td> </tr> <tr> -<td>97</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO</td> +<td>67</td> +<td>PRESET_ICON_STATIONARY_4</td> +<td></td> </tr> <tr> -<td>98</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO</td> +<td>70</td> +<td>PRESET_ICON_SIMPLE_SUPER_PHOTO</td> +<td></td> </tr> <tr> -<td>99</td> -<td>PRESET_TITLE_EASY_STANDARD_PROFILE</td> +<td>71</td> +<td>PRESET_ICON_SIMPLE_NIGHT_PHOTO</td> <td></td> </tr> <tr> -<td>100</td> -<td>PRESET_TITLE_EASY_HDR_PROFILE</td> +<td>73</td> +<td>PRESET_ICON_HIGHEST_QUALITY_VIDEO</td> <td></td> </tr> <tr> -<td>101</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_LAPSE</td> +<td>74</td> +<td>PRESET_ICON_STANDARD_QUALITY_VIDEO</td> +<td></td> </tr> <tr> -<td>102</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE</td> +<td>75</td> +<td>PRESET_ICON_BASIC_QUALITY_VIDEO</td> +<td></td> </tr> <tr> -<td>103</td> -<td>PRESET_TITLE_360_DEG_PHOTO</td> -<td>- FW_PRESET_TITLE_MAX_2_PHOTO</td> +<td>76</td> +<td>PRESET_ICON_STAR_TRAIL</td> +<td></td> </tr> <tr> -<td>104</td> -<td>PRESET_TITLE_360_DEG_TIME_WARP</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_WARP</td> +<td>77</td> +<td>PRESET_ICON_LIGHT_PAINTING</td> +<td></td> </tr> <tr> -<td>105</td> -<td>PRESET_TITLE_360_DEG_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_VIDEO</td> +<td>78</td> +<td>PRESET_ICON_LIGHT_TRAIL</td> +<td></td> </tr> <tr> -<td>106</td> -<td>PRESET_TITLE_BURST_SLOMO</td> +<td>79</td> +<td>PRESET_ICON_FULL_FRAME</td> <td></td> </tr> <tr> -<td>107</td> -<td>PRESET_TITLE_VLOG</td> +<td>1000</td> +<td>PRESET_ICON_TIMELAPSE_PHOTO</td> <td></td> </tr> <tr> -<td>108</td> -<td>PRESET_TITLE_MAX</td> +<td>1001</td> +<td>PRESET_ICON_NIGHTLAPSE_PHOTO</td> <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -15875,613 +20264,694 @@

    Limitations

    - + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - + - + - - - - - - + - + - + - + - + - + - + - - - - - - + - - + + - - + + + +
    ID Summary
    0PRESET_TITLE_ACTIVITYPRESET_ICON_VIDEO
    1PRESET_TITLE_STANDARDPRESET_ICON_ACTIVITY
    2PRESET_TITLE_CINEMATICPRESET_ICON_CINEMATIC
    3PRESET_TITLE_PHOTOPRESET_ICON_PHOTO
    4PRESET_TITLE_LIVE_BURSTPRESET_ICON_LIVE_BURST
    5PRESET_TITLE_BURSTPRESET_ICON_BURST
    6PRESET_TITLE_NIGHTPRESET_ICON_PHOTO_NIGHT
    7PRESET_TITLE_TIME_WARPPRESET_ICON_TIMEWARP
    8PRESET_TITLE_TIME_LAPSEPRESET_ICON_TIMELAPSE
    9PRESET_TITLE_NIGHT_LAPSEPRESET_ICON_NIGHTLAPSE
    10PRESET_TITLE_VIDEOPRESET_ICON_SNAIL
    11PRESET_TITLE_SLOMO
    12PRESET_TITLE_360_VIDEOPRESET_ICON_VIDEO_2
    13PRESET_TITLE_PHOTO_2PRESET_ICON_PHOTO_2
    14PRESET_TITLE_PANORAMAPRESET_ICON_PANORAMA
    15PRESET_TITLE_360_PHOTOPRESET_ICON_BURST_2
    16PRESET_TITLE_TIME_WARP_2PRESET_ICON_TIMEWARP_2
    17PRESET_TITLE_360_TIME_WARPPRESET_ICON_TIMELAPSE_2
    18PRESET_TITLE_CUSTOMPRESET_ICON_CUSTOM
    19PRESET_TITLE_AIRPRESET_ICON_AIR
    20PRESET_TITLE_BIKEPRESET_ICON_BIKE
    21PRESET_TITLE_EPICPRESET_ICON_EPIC
    22PRESET_TITLE_INDOORPRESET_ICON_INDOOR
    23PRESET_TITLE_MOTORPRESET_ICON_MOTOR
    24PRESET_TITLE_MOUNTEDPRESET_ICON_MOUNTED
    25PRESET_TITLE_OUTDOORPRESET_ICON_OUTDOOR
    26PRESET_TITLE_POVPRESET_ICON_POV
    27PRESET_TITLE_SELFIEPRESET_ICON_SELFIE
    28PRESET_TITLE_SKATE
    29PRESET_TITLE_SNOW
    30PRESET_TITLE_TRAIL
    31PRESET_TITLE_TRAVEL
    32PRESET_TITLE_WATER
    33PRESET_TITLE_LOOPING
    34PRESET_TITLE_STARS
    35PRESET_TITLE_ACTION
    36PRESET_TITLE_FOLLOW_CAM
    37PRESET_TITLE_SURF
    38PRESET_TITLE_CITY
    39PRESET_TITLE_SHAKY
    40PRESET_TITLE_CHESTY
    41PRESET_TITLE_HELMET
    42PRESET_TITLE_BITE
    43PRESET_TITLE_CUSTOM_CINEMATICPRESET_ICON_SKATE
    44PRESET_TITLE_DIVE29PRESET_ICON_SNOW
    45PRESET_TITLE_FPV30PRESET_ICON_TRAIL
    46PRESET_TITLE_HDR31PRESET_ICON_TRAVEL
    47PRESET_TITLE_LANDSCAPE32PRESET_ICON_WATER
    48PRESET_TITLE_LOG33PRESET_ICON_LOOPING
    49PRESET_TITLE_CUSTOM_SLOMO34PRESET_ICON_STARS
    50PRESET_TITLE_TRIPOD35PRESET_ICON_ACTION
    51PRESET_TITLE_360_TIMELAPSE36PRESET_ICON_FOLLOW_CAM
    52PRESET_TITLE_360_NIGHT_LAPSE37PRESET_ICON_SURF
    53PRESET_TITLE_360_NIGHT_PHOTO38PRESET_ICON_CITY
    54PRESET_TITLE_PANO_TIME_LAPSE39PRESET_ICON_SHAKY
    55PRESET_TITLE_MAX_VIDEO40PRESET_ICON_CHESTY
    56PRESET_TITLE_MAX_PHOTO41PRESET_ICON_HELMET
    57PRESET_TITLE_MAX_TIMEWARP42PRESET_ICON_BITE
    58PRESET_TITLE_BASICPRESET_ICON_BASIC
    59PRESET_TITLE_ULTRA_SLO_MOPRESET_ICON_ULTRA_SLO_MO
    60PRESET_TITLE_STANDARD_ENDURANCEPRESET_ICON_STANDARD_ENDURANCE
    61PRESET_TITLE_ACTIVITY_ENDURANCEPRESET_ICON_ACTIVITY_ENDURANCE
    62PRESET_TITLE_CINEMATIC_ENDURANCEPRESET_ICON_CINEMATIC_ENDURANCE
    63PRESET_TITLE_SLOMO_ENDURANCEPRESET_ICON_SLOMO_ENDURANCE
    64PRESET_TITLE_STATIONARY_1PRESET_ICON_STATIONARY_1
    65PRESET_TITLE_STATIONARY_2PRESET_ICON_STATIONARY_2
    66PRESET_TITLE_STATIONARY_3PRESET_ICON_STATIONARY_3
    67PRESET_TITLE_STATIONARY_4
    68PRESET_TITLE_SIMPLE_VIDEO
    69PRESET_TITLE_SIMPLE_TIME_WARPPRESET_ICON_STATIONARY_4
    70PRESET_TITLE_SIMPLE_SUPER_PHOTOPRESET_ICON_SIMPLE_SUPER_PHOTO
    71PRESET_TITLE_SIMPLE_NIGHT_PHOTO
    72PRESET_TITLE_SIMPLE_VIDEO_ENDURANCEPRESET_ICON_SIMPLE_NIGHT_PHOTO
    73PRESET_TITLE_HIGHEST_QUALITYPRESET_ICON_HIGHEST_QUALITY_VIDEO
    74PRESET_TITLE_EXTENDED_BATTERYPRESET_ICON_STANDARD_QUALITY_VIDEO
    75PRESET_TITLE_LONGEST_BATTERYPRESET_ICON_BASIC_QUALITY_VIDEO
    76PRESET_TITLE_STAR_TRAILPRESET_ICON_STAR_TRAIL
    77PRESET_TITLE_LIGHT_PAINTINGPRESET_ICON_LIGHT_PAINTING
    78PRESET_TITLE_LIGHT_TRAILPRESET_ICON_LIGHT_TRAIL
    79PRESET_TITLE_FULL_FRAME
    80PRESET_TITLE_MAX_LENS_VIDEOPRESET_ICON_FULL_FRAME
    81PRESET_TITLE_MAX_LENS_TIMEWARP1000PRESET_ICON_TIMELAPSE_PHOTO
    82PRESET_TITLE_STANDARD_QUALITY_VIDEO1001PRESET_ICON_NIGHTLAPSE_PHOTO
    +
    +
    +id +
    +
    +integer <int32> +
    +

    Unique preset identifier

    +
    +
    +isFixed +
    +
    +boolean +
    +

    Is this preset mutable?

    +
    +
    +isModified +
    +
    +boolean +
    +

    Has the preset been modified from the factory defaults?

    +
    +
    +mode +
    +
    +integer (EnumFlatMode) +
    +
    + Enum: -1 4 5 12 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    + + - - - + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - + + + - - - + + + - - + + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - + + - - + + - - + + -
    83PRESET_TITLE_BASIC_QUALITY_VIDEOIDNameSummary
    84PRESET_TITLE_EASY_MAX_VIDEO-1FLAT_MODE_UNKNOWN
    85PRESET_TITLE_EASY_MAX_PHOTO4FLAT_MODE_PLAYBACK
    86PRESET_TITLE_EASY_MAX_TIMEWARP5FLAT_MODE_SETUP
    87PRESET_TITLE_EASY_MAX_STAR_TRAIL12FLAT_MODE_VIDEO
    88PRESET_TITLE_EASY_MAX_LIGHT_PAINTING13FLAT_MODE_TIME_LAPSE_VIDEO
    89PRESET_TITLE_EASY_MAX_LIGHT_TRAIL15FLAT_MODE_LOOPING
    90PRESET_TITLE_MAX_STAR_TRAIL16FLAT_MODE_PHOTO_SINGLE
    91PRESET_TITLE_MAX_LIGHT_PAINTING17FLAT_MODE_PHOTO
    92PRESET_TITLE_MAX_LIGHT_TRAIL18FLAT_MODE_PHOTO_NIGHT
    93PRESET_TITLE_HIGHEST_QUALITY_VIDEO19FLAT_MODE_PHOTO_BURST
    94PRESET_TITLE_USER_DEFINED_CUSTOM_NAME20FLAT_MODE_TIME_LAPSE_PHOTO
    95PRESET_TITLE_360_DEG_BURST- FW_PRESET_TITLE_360_BURST
    96PRESET_TITLE_360_DEG_NIGHT_PHOTO- FW_PRESET_TITLE_360_NIGHT
    97PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO21FLAT_MODE_NIGHT_LAPSE_PHOTO
    98PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO22FLAT_MODE_BROADCAST_RECORD
    99PRESET_TITLE_EASY_STANDARD_PROFILE23FLAT_MODE_BROADCAST_BROADCAST
    100PRESET_TITLE_EASY_HDR_PROFILE24FLAT_MODE_TIME_WARP_VIDEO
    101PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_TIME_LAPSE25FLAT_MODE_LIVE_BURST
    102PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE26FLAT_MODE_NIGHT_LAPSE_VIDEO
    103PRESET_TITLE_360_DEG_PHOTO- FW_PRESET_TITLE_MAX_2_PHOTO27FLAT_MODE_SLOMO
    104PRESET_TITLE_360_DEG_TIME_WARP- FW_PRESET_TITLE_MAX_2_TIME_WARP28FLAT_MODE_IDLE
    105PRESET_TITLE_360_DEG_VIDEO- FW_PRESET_TITLE_MAX_2_VIDEO29FLAT_MODE_VIDEO_STAR_TRAIL
    106PRESET_TITLE_BURST_SLOMO30FLAT_MODE_VIDEO_LIGHT_PAINTING
    107PRESET_TITLE_VLOG31FLAT_MODE_VIDEO_LIGHT_TRAIL
    108PRESET_TITLE_MAX32FLAT_MODE_VIDEO_BURST_SLOMO
    -
    titleNumber
    integer <int32>

    Preset title number

    -
    userDefined
    boolean

    Is this preset user defined?

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/presets/get

    Response samples

    Content type
    application/json
    {
    • "customIconIds": [
      ],
    • "customTitleIds": [
      ],
    • "presetGroupArray": [
      ]
    }

    Load Preset by ID

    HERO12 Black -HERO11 Black Mini - HERO11 Black -HERO10 Black - HERO9 Black

    -

    Supported Protocols:

    -
      -
    • USB
    • -
    • WIFI
    • -
    -
    -

    Preset ID's are not constant and must be retrieved via Get Preset Status

    -
    query Parameters
    id
    required
    integer

    Preset to load

    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/presets/load?id=0'

    Response samples

    Content type
    application/json
    { }

    Load Preset Group by ID

    HERO12 Black -HERO11 Black Mini - HERO11 Black -HERO10 Black - HERO9 Black

    -

    Supported Protocols:

    -
      -
    • USB
    • -
    • WIFI
    • -
    -
    -
    query Parameters
    + + + + + + + + + + + + + + + +
    id
    required
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 1000 1001 1002
    Example: id=1000
    +
    + +
    +
    +Array of objects (PresetSetting) +
    +
    +
    Array
    +
    + + + + + + + + + + + + +
    +id +
    +
    +integer <int32> +
    +

    Setting identifier

    +
    +
    +isCaption +
    +
    +boolean +
    +

    Does this setting appear on the Preset "pill" in the camera UI?

    +
    +
    +value +
    +
    +integer <int32> +
    +

    Setting value

    +
    +
    +
    +
    +titleId +
    +
    +integer (EnumPresetTitle) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 82 83 93 94
    Limitations </thead> <tbody><tr> <td>0</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS</td> -<td>Single video</td> +<td>PRESET_TITLE_ACTIVITY</td> +<td></td> </tr> <tr> <td>1</td> -<td>PRESET_GROUP_ID_PHOTO_SINGLE_LENS</td> -<td>Single photo</td> +<td>PRESET_TITLE_STANDARD</td> +<td></td> </tr> <tr> <td>2</td> -<td>PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENS</td> -<td>Single timelapse</td> +<td>PRESET_TITLE_CINEMATIC</td> +<td></td> </tr> <tr> <td>3</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS</td> -<td>Spherical video hemi lens</td> +<td>PRESET_TITLE_PHOTO</td> +<td></td> </tr> <tr> <td>4</td> -<td>PRESET_GROUP_ID_PHOTO_HEMI_LENS</td> -<td>Spherical photo hemi lens</td> +<td>PRESET_TITLE_LIVE_BURST</td> +<td></td> </tr> <tr> <td>5</td> -<td>PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS</td> -<td>Spherical timelapse hemi lens</td> +<td>PRESET_TITLE_BURST</td> +<td></td> </tr> <tr> <td>6</td> -<td>PRESET_GROUP_ID_SPECIAL_INTERNAL</td> -<td>Special</td> +<td>PRESET_TITLE_NIGHT</td> +<td></td> </tr> <tr> <td>7</td> -<td>PRESET_GROUP_ID_SPECIAL_HEMI</td> -<td>Special hemi lens</td> +<td>PRESET_TITLE_TIME_WARP</td> +<td></td> </tr> <tr> <td>8</td> -<td>PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENS</td> -<td>Video battery endurance</td> +<td>PRESET_TITLE_TIME_LAPSE</td> +<td></td> </tr> <tr> <td>9</td> -<td>PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENS</td> -<td>Video longest battery</td> +<td>PRESET_TITLE_NIGHT_LAPSE</td> +<td></td> </tr> <tr> <td>10</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENS</td> -<td>Easy single video</td> +<td>PRESET_TITLE_VIDEO</td> +<td></td> </tr> <tr> <td>11</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENS</td> -<td>Easy video battery endurance</td> -</tr> -<tr> -<td>12</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENS</td> -<td>Easy single photo</td> +<td>PRESET_TITLE_SLOMO</td> +<td></td> </tr> <tr> <td>13</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENS</td> -<td>Easy single timelapse</td> +<td>PRESET_TITLE_PHOTO_2</td> +<td></td> </tr> <tr> <td>14</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENS</td> -<td>Easy video longest battery</td> -</tr> -<tr> -<td>15</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2</td> -<td>Hemi Lens 2 video</td> +<td>PRESET_TITLE_PANORAMA</td> +<td></td> </tr> <tr> <td>16</td> -<td>PRESET_GROUP_ID_PHOTO_HEMI_LENS_2</td> -<td>Hemi Lens 2 photo</td> -</tr> -<tr> -<td>17</td> -<td>PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2</td> -<td>Hemi Lens 2 timelapse</td> +<td>PRESET_TITLE_TIME_WARP_2</td> +<td></td> </tr> <tr> <td>18</td> -<td>PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2</td> -<td>Hemi Lens 2 special</td> +<td>PRESET_TITLE_CUSTOM</td> +<td></td> </tr> <tr> <td>19</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS</td> -<td>Hemi Lens easy video</td> +<td>PRESET_TITLE_AIR</td> +<td></td> </tr> <tr> <td>20</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS</td> -<td>Hemi Lens easy photo</td> +<td>PRESET_TITLE_BIKE</td> +<td></td> </tr> <tr> <td>21</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS</td> -<td>Hemi Lens easy timelapse</td> +<td>PRESET_TITLE_EPIC</td> +<td></td> </tr> <tr> <td>22</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy video</td> +<td>PRESET_TITLE_INDOOR</td> +<td></td> </tr> <tr> <td>23</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy photo</td> +<td>PRESET_TITLE_MOTOR</td> +<td></td> </tr> <tr> <td>24</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2</td> -<td>Hemi Lens 2 easy timelapse</td> +<td>PRESET_TITLE_MOUNTED</td> +<td></td> </tr> <tr> <td>25</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARD</td> -<td>Single video standard profile - for internal preset switch only</td> +<td>PRESET_TITLE_OUTDOOR</td> +<td></td> </tr> <tr> <td>26</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDR</td> -<td>Single video hdr profile - for internal preset switch only</td> +<td>PRESET_TITLE_POV</td> +<td></td> </tr> <tr> <td>27</td> -<td>PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOG</td> -<td>Single video log profile - for internal preset switch only</td> +<td>PRESET_TITLE_SELFIE</td> +<td></td> </tr> <tr> <td>28</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS</td> -<td>Spherical video mode</td> +<td>PRESET_TITLE_SKATE</td> +<td></td> </tr> <tr> <td>29</td> -<td>PRESET_GROUP_ID_PHOTO_SPHERICAL_LENS</td> -<td>Spherical photo mode</td> +<td>PRESET_TITLE_SNOW</td> +<td></td> </tr> <tr> <td>30</td> -<td>PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENS</td> -<td>Spherical timelapse mode</td> +<td>PRESET_TITLE_TRAIL</td> +<td></td> </tr> <tr> <td>31</td> -<td>PRESET_GROUP_ID_SPECIAL_SPHERICAL</td> -<td>Special spherical lens</td> +<td>PRESET_TITLE_TRAVEL</td> +<td></td> </tr> <tr> <td>32</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARD</td> -<td>Spherical video standard profile - for internal preset switch only</td> +<td>PRESET_TITLE_WATER</td> +<td></td> </tr> <tr> <td>33</td> -<td>PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOG</td> -<td>Spherical video standard profile - for internal preset switch only</td> +<td>PRESET_TITLE_LOOPING</td> +<td></td> </tr> <tr> <td>34</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARD</td> -<td>Hemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch only</td> +<td>PRESET_TITLE_STARS</td> +<td></td> </tr> <tr> <td>35</td> -<td>PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOG</td> -<td>Hemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch only</td> +<td>PRESET_TITLE_ACTION</td> +<td></td> </tr> <tr> <td>36</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS</td> -<td>Video macro lens</td> +<td>PRESET_TITLE_FOLLOW_CAM</td> +<td></td> </tr> <tr> <td>37</td> -<td>PRESET_GROUP_ID_PHOTO_MACRO_LENS</td> -<td>Photo macro lens</td> +<td>PRESET_TITLE_SURF</td> +<td></td> </tr> <tr> <td>38</td> -<td>PRESET_GROUP_ID_TIMELAPSE_MACRO_LENS</td> -<td>Timelapse macro lens</td> +<td>PRESET_TITLE_CITY</td> +<td></td> </tr> <tr> <td>39</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENS</td> -<td>Easy Video macro lens</td> +<td>PRESET_TITLE_SHAKY</td> +<td></td> </tr> <tr> <td>40</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENS</td> -<td>Easy Photo macro lens</td> +<td>PRESET_TITLE_CHESTY</td> +<td></td> </tr> <tr> <td>41</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENS</td> -<td>Easy Timelapse macro lens</td> +<td>PRESET_TITLE_HELMET</td> +<td></td> </tr> <tr> <td>42</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARD</td> -<td>Macro lens video standard profile - for internal preset switch only</td> +<td>PRESET_TITLE_BITE</td> +<td></td> +</tr> +<tr> +<td>58</td> +<td>PRESET_TITLE_BASIC</td> +<td></td> </tr> <tr> -<td>43</td> -<td>PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOG</td> -<td>Macro lens video log profile - for internal preset switch only</td> +<td>59</td> +<td>PRESET_TITLE_ULTRA_SLO_MO</td> +<td></td> </tr> <tr> -<td>44</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS</td> -<td>Video anamorphic lens</td> +<td>60</td> +<td>PRESET_TITLE_STANDARD_ENDURANCE</td> +<td></td> </tr> <tr> -<td>45</td> -<td>PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENS</td> -<td>Photo anamorphic lens</td> +<td>61</td> +<td>PRESET_TITLE_ACTIVITY_ENDURANCE</td> +<td></td> </tr> <tr> -<td>46</td> -<td>PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENS</td> -<td>Timelapse anamorphic lens</td> +<td>62</td> +<td>PRESET_TITLE_CINEMATIC_ENDURANCE</td> +<td></td> </tr> <tr> -<td>47</td> -<td>PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENS</td> -<td>Easy Video anamorphic lens</td> +<td>63</td> +<td>PRESET_TITLE_SLOMO_ENDURANCE</td> +<td></td> </tr> <tr> -<td>48</td> -<td>PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENS</td> -<td>Easy Photo anamorphic lens</td> +<td>64</td> +<td>PRESET_TITLE_STATIONARY_1</td> +<td></td> </tr> <tr> -<td>49</td> -<td>PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENS</td> -<td>Easy Timelapse anamorphic lens</td> +<td>65</td> +<td>PRESET_TITLE_STATIONARY_2</td> +<td></td> </tr> <tr> -<td>50</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARD</td> -<td>Anamorphic lens video standard profile - for internal preset switch only</td> +<td>66</td> +<td>PRESET_TITLE_STATIONARY_3</td> +<td></td> +</tr> +<tr> +<td>67</td> +<td>PRESET_TITLE_STATIONARY_4</td> +<td></td> +</tr> +<tr> +<td>68</td> +<td>PRESET_TITLE_SIMPLE_VIDEO</td> +<td></td> +</tr> +<tr> +<td>69</td> +<td>PRESET_TITLE_SIMPLE_TIME_WARP</td> +<td></td> +</tr> +<tr> +<td>70</td> +<td>PRESET_TITLE_SIMPLE_SUPER_PHOTO</td> +<td></td> +</tr> +<tr> +<td>71</td> +<td>PRESET_TITLE_SIMPLE_NIGHT_PHOTO</td> +<td></td> +</tr> +<tr> +<td>72</td> +<td>PRESET_TITLE_SIMPLE_VIDEO_ENDURANCE</td> +<td></td> +</tr> +<tr> +<td>73</td> +<td>PRESET_TITLE_HIGHEST_QUALITY</td> +<td></td> +</tr> +<tr> +<td>74</td> +<td>PRESET_TITLE_EXTENDED_BATTERY</td> +<td></td> +</tr> +<tr> +<td>75</td> +<td>PRESET_TITLE_LONGEST_BATTERY</td> +<td></td> +</tr> +<tr> +<td>76</td> +<td>PRESET_TITLE_STAR_TRAIL</td> +<td></td> +</tr> +<tr> +<td>77</td> +<td>PRESET_TITLE_LIGHT_PAINTING</td> +<td></td> +</tr> +<tr> +<td>78</td> +<td>PRESET_TITLE_LIGHT_TRAIL</td> +<td></td> +</tr> +<tr> +<td>79</td> +<td>PRESET_TITLE_FULL_FRAME</td> +<td></td> </tr> <tr> -<td>51</td> -<td>PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOG</td> -<td>Anamorphic lens video log profile - for internal preset switch only</td> +<td>82</td> +<td>PRESET_TITLE_STANDARD_QUALITY_VIDEO</td> +<td></td> </tr> <tr> -<td>1000</td> -<td>PRESET_GROUP_ID_VIDEO</td> +<td>83</td> +<td>PRESET_TITLE_BASIC_QUALITY_VIDEO</td> <td></td> </tr> <tr> -<td>1001</td> -<td>PRESET_GROUP_ID_PHOTO</td> +<td>93</td> +<td>PRESET_TITLE_HIGHEST_QUALITY_VIDEO</td> <td></td> </tr> <tr> -<td>1002</td> -<td>PRESET_GROUP_ID_TIMELAPSE</td> +<td>94</td> +<td>PRESET_TITLE_USER_DEFINED_CUSTOM_NAME</td> <td></td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -16773,266 +21299,717 @@

    Limitations

    - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - + + - - + + - - - - - - - + + - - - - - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + +
    ID Summary
    0PRESET_GROUP_ID_VIDEO_SINGLE_LENSSingle videoPRESET_TITLE_ACTIVITY
    1PRESET_GROUP_ID_PHOTO_SINGLE_LENSSingle photoPRESET_TITLE_STANDARD
    2PRESET_GROUP_ID_TIMELAPSE_SINGLE_LENSSingle timelapsePRESET_TITLE_CINEMATIC
    3PRESET_GROUP_ID_VIDEO_HEMI_LENSSpherical video hemi lensPRESET_TITLE_PHOTO
    4PRESET_GROUP_ID_PHOTO_HEMI_LENSSpherical photo hemi lensPRESET_TITLE_LIVE_BURST
    5PRESET_GROUP_ID_TIMELAPSE_HEMI_LENSSpherical timelapse hemi lensPRESET_TITLE_BURST
    6PRESET_GROUP_ID_SPECIAL_INTERNALSpecialPRESET_TITLE_NIGHT
    7PRESET_GROUP_ID_SPECIAL_HEMISpecial hemi lensPRESET_TITLE_TIME_WARP
    8PRESET_GROUP_ID_VIDEO_ENDURANCE_SINGLE_LENSVideo battery endurancePRESET_TITLE_TIME_LAPSE
    9PRESET_GROUP_ID_VIDEO_LONGEST_BATTERY_SINGLE_LENSVideo longest batteryPRESET_TITLE_NIGHT_LAPSE
    10PRESET_GROUP_ID_EASY_VIDEO_SINGLE_LENSEasy single videoPRESET_TITLE_VIDEO
    11PRESET_GROUP_ID_EASY_VIDEO_ENDURANCE_SINGLE_LENSEasy video battery endurance
    12PRESET_GROUP_ID_EASY_PHOTO_SINGLE_LENSEasy single photoPRESET_TITLE_SLOMO
    13PRESET_GROUP_ID_EASY_TIMELAPSE_SINGLE_LENSEasy single timelapsePRESET_TITLE_PHOTO_2
    14PRESET_GROUP_ID_EASY_VIDEO_LONGEST_BATTERY_SINGLE_LENSEasy video longest battery
    15PRESET_GROUP_ID_VIDEO_HEMI_LENS_2Hemi Lens 2 videoPRESET_TITLE_PANORAMA
    16PRESET_GROUP_ID_PHOTO_HEMI_LENS_2Hemi Lens 2 photo
    17PRESET_GROUP_ID_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 timelapsePRESET_TITLE_TIME_WARP_2
    18PRESET_GROUP_ID_SPECIAL_HEMI_LENS_2Hemi Lens 2 specialPRESET_TITLE_CUSTOM
    19PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENSHemi Lens easy videoPRESET_TITLE_AIR
    20PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENSHemi Lens easy photoPRESET_TITLE_BIKE
    21PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENSHemi Lens easy timelapsePRESET_TITLE_EPIC
    22PRESET_GROUP_ID_EASY_VIDEO_HEMI_LENS_2Hemi Lens 2 easy videoPRESET_TITLE_INDOOR
    23PRESET_GROUP_ID_EASY_PHOTO_HEMI_LENS_2Hemi Lens 2 easy photoPRESET_TITLE_MOTOR
    24PRESET_GROUP_ID_EASY_TIMELAPSE_HEMI_LENS_2Hemi Lens 2 easy timelapsePRESET_TITLE_MOUNTED
    25PRESET_GROUP_ID_VIDEO_SINGLE_LENS_STANDARDSingle video standard profile - for internal preset switch onlyPRESET_TITLE_OUTDOOR
    26PRESET_GROUP_ID_VIDEO_SINGLE_LENS_HDRSingle video hdr profile - for internal preset switch onlyPRESET_TITLE_POV
    27PRESET_GROUP_ID_VIDEO_SINGLE_LENS_LOGSingle video log profile - for internal preset switch onlyPRESET_TITLE_SELFIE
    28PRESET_GROUP_ID_VIDEO_SPHERICAL_LENSSpherical video modePRESET_TITLE_SKATE
    29PRESET_GROUP_ID_PHOTO_SPHERICAL_LENSSpherical photo modePRESET_TITLE_SNOW
    30PRESET_GROUP_ID_TIMELAPSE_SPHERICAL_LENSSpherical timelapse modePRESET_TITLE_TRAIL
    31PRESET_GROUP_ID_SPECIAL_SPHERICALSpecial spherical lensPRESET_TITLE_TRAVEL
    32PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_STANDARDSpherical video standard profile - for internal preset switch onlyPRESET_TITLE_WATER
    33PRESET_GROUP_ID_VIDEO_SPHERICAL_LENS_LOGSpherical video standard profile - for internal preset switch onlyPRESET_TITLE_LOOPING
    34PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_STANDARDHemi Lens 2 video standard profile and Hemi Lens 2.5 video standard profile - for internal preset switch onlyPRESET_TITLE_STARS
    35PRESET_GROUP_ID_VIDEO_HEMI_LENS_2_LOGHemi Lens 2 video log profile and Hemi Lens 2.5 video log profile - for internal preset switch onlyPRESET_TITLE_ACTION
    36PRESET_GROUP_ID_VIDEO_MACRO_LENSVideo macro lensPRESET_TITLE_FOLLOW_CAM
    37PRESET_GROUP_ID_PHOTO_MACRO_LENSPhoto macro lensPRESET_TITLE_SURF
    38PRESET_GROUP_ID_TIMELAPSE_MACRO_LENSTimelapse macro lensPRESET_TITLE_CITY
    39PRESET_GROUP_ID_EASY_VIDEO_MACRO_LENSEasy Video macro lensPRESET_TITLE_SHAKY
    40PRESET_GROUP_ID_EASY_PHOTO_MACRO_LENSEasy Photo macro lensPRESET_TITLE_CHESTY
    41PRESET_GROUP_ID_EASY_TIMELAPSE_MACRO_LENSEasy Timelapse macro lensPRESET_TITLE_HELMET
    42PRESET_GROUP_ID_VIDEO_MACRO_LENS_STANDARDMacro lens video standard profile - for internal preset switch onlyPRESET_TITLE_BITE
    43PRESET_GROUP_ID_VIDEO_MACRO_LENS_LOGMacro lens video log profile - for internal preset switch only58PRESET_TITLE_BASIC
    44PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENSVideo anamorphic lens59PRESET_TITLE_ULTRA_SLO_MO
    45PRESET_GROUP_ID_PHOTO_ANAMORPHIC_LENSPhoto anamorphic lens60PRESET_TITLE_STANDARD_ENDURANCE
    46PRESET_GROUP_ID_TIMELAPSE_ANAMORPHIC_LENSTimelapse anamorphic lens61PRESET_TITLE_ACTIVITY_ENDURANCE
    47PRESET_GROUP_ID_EASY_VIDEO_ANAMORPHIC_LENSEasy Video anamorphic lens62PRESET_TITLE_CINEMATIC_ENDURANCE
    48PRESET_GROUP_ID_EASY_PHOTO_ANAMORPHIC_LENSEasy Photo anamorphic lens63PRESET_TITLE_SLOMO_ENDURANCE
    49PRESET_GROUP_ID_EASY_TIMELAPSE_ANAMORPHIC_LENSEasy Timelapse anamorphic lens64PRESET_TITLE_STATIONARY_1
    50PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_STANDARDAnamorphic lens video standard profile - for internal preset switch only65PRESET_TITLE_STATIONARY_2
    66PRESET_TITLE_STATIONARY_3
    67PRESET_TITLE_STATIONARY_4
    68PRESET_TITLE_SIMPLE_VIDEO
    69PRESET_TITLE_SIMPLE_TIME_WARP
    70PRESET_TITLE_SIMPLE_SUPER_PHOTO
    71PRESET_TITLE_SIMPLE_NIGHT_PHOTO
    72PRESET_TITLE_SIMPLE_VIDEO_ENDURANCE
    73PRESET_TITLE_HIGHEST_QUALITY
    74PRESET_TITLE_EXTENDED_BATTERY
    75PRESET_TITLE_LONGEST_BATTERY
    76PRESET_TITLE_STAR_TRAIL
    77PRESET_TITLE_LIGHT_PAINTING
    78PRESET_TITLE_LIGHT_TRAIL
    79PRESET_TITLE_FULL_FRAME
    82PRESET_TITLE_STANDARD_QUALITY_VIDEO
    83PRESET_TITLE_BASIC_QUALITY_VIDEO
    93PRESET_TITLE_HIGHEST_QUALITY_VIDEO
    51PRESET_GROUP_ID_VIDEO_ANAMORPHIC_LENS_LOGAnamorphic lens video log profile - for internal preset switch only94PRESET_TITLE_USER_DEFINED_CUSTOM_NAME
    +
    +
    +titleNumber +
    +
    +integer <int32> +
    +

    Preset title number

    +
    +
    +userDefined +
    +
    +boolean +
    +

    Is this preset user defined?

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/presets/get
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    + +
    +
    {
      +
    • +"customIconIds": [
      +], +
    • +
    • +"customTitleIds": [
      +], +
    • +
    • +"presetGroupArray": [
      +] +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Load Preset by ID

    +
    +

    HERO12 Black +HERO11 Black Mini + HERO11 Black +HERO10 Black + HERO9 Black

    +

    Supported Protocols:

    +
      +
    • USB
    • +
    • WIFI
    • +
    +
    +

    Preset ID's are not constant and must be retrieved via Get Preset Status

    +
    +
    +
    query Parameters
    + + + +
    +id<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +

    Preset to load

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/presets/load?id=0'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Load Preset Group by ID

    +
    +

    HERO12 Black +HERO11 Black Mini + HERO11 Black +HERO10 Black + HERO9 Black

    +

    Supported Protocols:

    +
      +
    • USB
    • +
    • WIFI
    • +
    +
    +
    +
    +
    query Parameters
    + + +
    +id<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 1000 1001 1002
    + Example: id=1000 +
    +
    + + + + + + + + @@ -17048,13 +22025,85 @@

    Limitations

    -
    IDNameSummary
    1000 PRESET_GROUP_ID_VIDEO PRESET_GROUP_ID_TIMELAPSE
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/presets/set_group?id=1000'

    Response samples

    Content type
    application/json
    { }

    Update Custom Preset

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/presets/set_group?id=1000'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Update Custom Preset

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • @@ -17094,37 +22144,55 @@

      Limitations

      Preset is not custom.

      The use cases are:

        -
      1. Update the Custom Preset Icon

        +
      2. +

        Update the Custom Preset Icon

          -
        • icon_id is always optional and can always be passed
        • +
        • +icon_id is always optional and can always be passed

      and / or

        -
      1. Update the Custom Preset Title to a...

        +
      2. +

        Update the Custom Preset Title to a...

          -
        • Factory Preset Title: Set title_id to a non-PRESET_TITLE_USER_DEFINED_CUSTOM_NAME (94) value
        • -
        • Custom Preset Name: Set title_id to PRESET_TITLE_USER_DEFINED_CUSTOM_NAME (94) and -specify a custom_name
        • +
        • +Factory Preset Title: Set title_id to a non-PRESET_TITLE_USER_DEFINED_CUSTOM_NAME (94) value
        • +
        • +Custom Preset Name: Set title_id to PRESET_TITLE_USER_DEFINED_CUSTOM_NAME (94) and +specify a custom_name +
      -

      Note! The range of acceptable custom title_id's and icon_id's can be found in the +

      Note! The range of acceptable custom title_id's and icon_id's can be found in the Get Preset Status response

      -
    Request Body schema: application/json
    required
    custom_name
    string

    UTF-8 encoded target custom preset name which obeys the following:

    -
      -
    • must be between 1 and 16 characters (inclusive)
    • -
    • No special characters outside of the following languages: English, French, -Italian, German, Spanish, Portuguese, Swedish, Russian
    • -
    -
    icon_id
    integer (EnumPresetIcon)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 89 90 91 92 93 94 95 96 97 98 99 100 101 102 1000 1001 1002
    Request Body schema: application/json
    required
    + +
    + + + + + + + + +
    +custom_name +string UTF-8 encoded target custom preset name which obeys the following +must be between 1 and 16 characters (inclusive) +No special characters outside of the following languages: English, French, +Italian, German, Spanish, Portuguese, Swedish, Russian
    +icon_id + +
    +
    +integer (EnumPresetIcon) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 78 79 1000 1001
    Limitations <td></td> </tr> <tr> -<td>12</td> -<td>PRESET_ICON_360_VIDEO</td> -<td></td> -</tr> -<tr> <td>13</td> <td>PRESET_ICON_PHOTO_2</td> <td></td> @@ -17348,21 +22411,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>55</td> -<td>PRESET_ICON_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_ICON_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_ICON_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>58</td> <td>PRESET_ICON_BASIC</td> <td></td> @@ -17458,106 +22506,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_ICON_EASY_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>81</td> -<td>PRESET_ICON_EASY_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>82</td> -<td>PRESET_ICON_EASY_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>83</td> -<td>PRESET_ICON_EASY_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>84</td> -<td>PRESET_ICON_EASY_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>85</td> -<td>PRESET_ICON_EASY_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>89</td> -<td>PRESET_ICON_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>90</td> -<td>PRESET_ICON_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>91</td> -<td>PRESET_ICON_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>92</td> -<td>PRESET_ICON_360_BURST</td> -<td></td> -</tr> -<tr> -<td>93</td> -<td>PRESET_ICON_360_PHOTO_NIGHT</td> -<td></td> -</tr> -<tr> -<td>94</td> -<td>PRESET_ICON_360_NIGHTLAPSE</td> -<td></td> -</tr> -<tr> -<td>95</td> -<td>PRESET_ICON_360_TIMELAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>96</td> -<td>PRESET_ICON_360_NIGHTLAPSE_PHOTO</td> -<td></td> -</tr> -<tr> -<td>97</td> -<td>PRESET_ICON_360_PHOTO</td> -<td></td> -</tr> -<tr> -<td>98</td> -<td>PRESET_ICON_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>99</td> -<td>PRESET_ICON_360_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>100</td> -<td>PRESET_ICON_EASY_STANDARD_PROFILE</td> -<td></td> -</tr> -<tr> -<td>101</td> -<td>PRESET_ICON_EASY_HDR_PROFILE</td> -<td></td> -</tr> -<tr> -<td>102</td> -<td>PRESET_ICON_BURST_SLOMO</td> -<td></td> -</tr> -<tr> <td>1000</td> <td>PRESET_ICON_TIMELAPSE_PHOTO</td> <td></td> @@ -17567,13 +22515,9 @@

    Limitations

    <td>PRESET_ICON_NIGHTLAPSE_PHOTO</td> <td></td> </tr> -<tr> -<td>1002</td> -<td>PRESET_ICON_MAX</td> -<td></td> -</tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -17581,7 +22525,8 @@

    Limitations

    - + + @@ -17642,11 +22587,6 @@

    Limitations

    - - - - - @@ -17786,224 +22726,109 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -18016,13 +22841,23 @@

    Limitations

    - - - - - -
    ID Summary
    0 PRESET_ICON_VIDEO
    12PRESET_ICON_360_VIDEO
    13 PRESET_ICON_PHOTO_2 PRESET_ICON_CHESTY
    41PRESET_ICON_HELMET
    42PRESET_ICON_BITE
    55PRESET_ICON_MAX_VIDEO
    56PRESET_ICON_MAX_PHOTO
    57PRESET_ICON_MAX_TIMEWARP
    58PRESET_ICON_BASIC
    59PRESET_ICON_ULTRA_SLO_MO
    60PRESET_ICON_STANDARD_ENDURANCE
    61PRESET_ICON_ACTIVITY_ENDURANCE
    62PRESET_ICON_CINEMATIC_ENDURANCE
    63PRESET_ICON_SLOMO_ENDURANCE
    64PRESET_ICON_STATIONARY_1
    65PRESET_ICON_STATIONARY_2
    66PRESET_ICON_STATIONARY_3
    67PRESET_ICON_STATIONARY_4
    70PRESET_ICON_SIMPLE_SUPER_PHOTO
    71PRESET_ICON_SIMPLE_NIGHT_PHOTO
    73PRESET_ICON_HIGHEST_QUALITY_VIDEO
    74PRESET_ICON_STANDARD_QUALITY_VIDEO
    75PRESET_ICON_BASIC_QUALITY_VIDEO
    76PRESET_ICON_STAR_TRAIL
    77PRESET_ICON_LIGHT_PAINTING
    78PRESET_ICON_LIGHT_TRAIL
    79PRESET_ICON_FULL_FRAME
    41PRESET_ICON_HELMET
    80PRESET_ICON_EASY_MAX_VIDEO42PRESET_ICON_BITE
    81PRESET_ICON_EASY_MAX_PHOTO58PRESET_ICON_BASIC
    82PRESET_ICON_EASY_MAX_TIMEWARP59PRESET_ICON_ULTRA_SLO_MO
    83PRESET_ICON_EASY_MAX_STAR_TRAIL60PRESET_ICON_STANDARD_ENDURANCE
    84PRESET_ICON_EASY_MAX_LIGHT_PAINTING61PRESET_ICON_ACTIVITY_ENDURANCE
    85PRESET_ICON_EASY_MAX_LIGHT_TRAIL62PRESET_ICON_CINEMATIC_ENDURANCE
    89PRESET_ICON_MAX_STAR_TRAIL63PRESET_ICON_SLOMO_ENDURANCE
    90PRESET_ICON_MAX_LIGHT_PAINTING64PRESET_ICON_STATIONARY_1
    91PRESET_ICON_MAX_LIGHT_TRAIL65PRESET_ICON_STATIONARY_2
    92PRESET_ICON_360_BURST66PRESET_ICON_STATIONARY_3
    93PRESET_ICON_360_PHOTO_NIGHT67PRESET_ICON_STATIONARY_4
    94PRESET_ICON_360_NIGHTLAPSE70PRESET_ICON_SIMPLE_SUPER_PHOTO
    95PRESET_ICON_360_TIMELAPSE_PHOTO71PRESET_ICON_SIMPLE_NIGHT_PHOTO
    96PRESET_ICON_360_NIGHTLAPSE_PHOTO73PRESET_ICON_HIGHEST_QUALITY_VIDEO
    97PRESET_ICON_360_PHOTO74PRESET_ICON_STANDARD_QUALITY_VIDEO
    98PRESET_ICON_360_TIMELAPSE75PRESET_ICON_BASIC_QUALITY_VIDEO
    99PRESET_ICON_360_TIMEWARP76PRESET_ICON_STAR_TRAIL
    100PRESET_ICON_EASY_STANDARD_PROFILE77PRESET_ICON_LIGHT_PAINTING
    101PRESET_ICON_EASY_HDR_PROFILE78PRESET_ICON_LIGHT_TRAIL
    102PRESET_ICON_BURST_SLOMO79PRESET_ICON_FULL_FRAME
    PRESET_ICON_NIGHTLAPSE_PHOTO
    1002PRESET_ICON_MAX
    -
    title_id
    integer (EnumPresetTitle)
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    +
    +title_id + +
    +
    +integer (EnumPresetTitle) +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 82 83 93 94
    Limitations <td></td> </tr> <tr> -<td>12</td> -<td>PRESET_TITLE_360_VIDEO</td> -<td></td> -</tr> -<tr> <td>13</td> <td>PRESET_TITLE_PHOTO_2</td> <td></td> @@ -18106,21 +22936,11 @@

    Limitations

    <td></td> </tr> <tr> -<td>15</td> -<td>PRESET_TITLE_360_PHOTO</td> -<td></td> -</tr> -<tr> <td>16</td> <td>PRESET_TITLE_TIME_WARP_2</td> <td></td> </tr> <tr> -<td>17</td> -<td>PRESET_TITLE_360_TIME_WARP</td> -<td></td> -</tr> -<tr> <td>18</td> <td>PRESET_TITLE_CUSTOM</td> <td></td> @@ -18246,81 +23066,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>43</td> -<td>PRESET_TITLE_CUSTOM_CINEMATIC</td> -<td></td> -</tr> -<tr> -<td>44</td> -<td>PRESET_TITLE_DIVE</td> -<td></td> -</tr> -<tr> -<td>45</td> -<td>PRESET_TITLE_FPV</td> -<td></td> -</tr> -<tr> -<td>46</td> -<td>PRESET_TITLE_HDR</td> -<td></td> -</tr> -<tr> -<td>47</td> -<td>PRESET_TITLE_LANDSCAPE</td> -<td></td> -</tr> -<tr> -<td>48</td> -<td>PRESET_TITLE_LOG</td> -<td></td> -</tr> -<tr> -<td>49</td> -<td>PRESET_TITLE_CUSTOM_SLOMO</td> -<td></td> -</tr> -<tr> -<td>50</td> -<td>PRESET_TITLE_TRIPOD</td> -<td></td> -</tr> -<tr> -<td>51</td> -<td>PRESET_TITLE_360_TIMELAPSE</td> -<td></td> -</tr> -<tr> -<td>52</td> -<td>PRESET_TITLE_360_NIGHT_LAPSE</td> -<td></td> -</tr> -<tr> -<td>53</td> -<td>PRESET_TITLE_360_NIGHT_PHOTO</td> -<td></td> -</tr> -<tr> -<td>54</td> -<td>PRESET_TITLE_PANO_TIME_LAPSE</td> -<td></td> -</tr> -<tr> -<td>55</td> -<td>PRESET_TITLE_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>56</td> -<td>PRESET_TITLE_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>57</td> -<td>PRESET_TITLE_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>58</td> <td>PRESET_TITLE_BASIC</td> <td></td> @@ -18431,16 +23176,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>80</td> -<td>PRESET_TITLE_MAX_LENS_VIDEO</td> -<td></td> -</tr> -<tr> -<td>81</td> -<td>PRESET_TITLE_MAX_LENS_TIMEWARP</td> -<td></td> -</tr> -<tr> <td>82</td> <td>PRESET_TITLE_STANDARD_QUALITY_VIDEO</td> <td></td> @@ -18451,51 +23186,6 @@

    Limitations

    <td></td> </tr> <tr> -<td>84</td> -<td>PRESET_TITLE_EASY_MAX_VIDEO</td> -<td></td> -</tr> -<tr> -<td>85</td> -<td>PRESET_TITLE_EASY_MAX_PHOTO</td> -<td></td> -</tr> -<tr> -<td>86</td> -<td>PRESET_TITLE_EASY_MAX_TIMEWARP</td> -<td></td> -</tr> -<tr> -<td>87</td> -<td>PRESET_TITLE_EASY_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>88</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>89</td> -<td>PRESET_TITLE_EASY_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> -<td>90</td> -<td>PRESET_TITLE_MAX_STAR_TRAIL</td> -<td></td> -</tr> -<tr> -<td>91</td> -<td>PRESET_TITLE_MAX_LIGHT_PAINTING</td> -<td></td> -</tr> -<tr> -<td>92</td> -<td>PRESET_TITLE_MAX_LIGHT_TRAIL</td> -<td></td> -</tr> -<tr> <td>93</td> <td>PRESET_TITLE_HIGHEST_QUALITY_VIDEO</td> <td></td> @@ -18505,78 +23195,9 @@

    Limitations

    <td>PRESET_TITLE_USER_DEFINED_CUSTOM_NAME</td> <td></td> </tr> -<tr> -<td>95</td> -<td>PRESET_TITLE_360_DEG_BURST</td> -<td>- FW_PRESET_TITLE_360_BURST</td> -</tr> -<tr> -<td>96</td> -<td>PRESET_TITLE_360_DEG_NIGHT_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT</td> -</tr> -<tr> -<td>97</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO</td> -</tr> -<tr> -<td>98</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO</td> -<td>- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO</td> -</tr> -<tr> -<td>99</td> -<td>PRESET_TITLE_EASY_STANDARD_PROFILE</td> -<td></td> -</tr> -<tr> -<td>100</td> -<td>PRESET_TITLE_EASY_HDR_PROFILE</td> -<td></td> -</tr> -<tr> -<td>101</td> -<td>PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_LAPSE</td> -</tr> -<tr> -<td>102</td> -<td>PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE</td> -</tr> -<tr> -<td>103</td> -<td>PRESET_TITLE_360_DEG_PHOTO</td> -<td>- FW_PRESET_TITLE_MAX_2_PHOTO</td> -</tr> -<tr> -<td>104</td> -<td>PRESET_TITLE_360_DEG_TIME_WARP</td> -<td>- FW_PRESET_TITLE_MAX_2_TIME_WARP</td> -</tr> -<tr> -<td>105</td> -<td>PRESET_TITLE_360_DEG_VIDEO</td> -<td>- FW_PRESET_TITLE_MAX_2_VIDEO</td> -</tr> -<tr> -<td>106</td> -<td>PRESET_TITLE_BURST_SLOMO</td> -<td></td> -</tr> -<tr> -<td>107</td> -<td>PRESET_TITLE_VLOG</td> -<td></td> -</tr> -<tr> -<td>108</td> -<td>PRESET_TITLE_MAX</td> -<td></td> -</tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +
    @@ -18584,7 +23205,8 @@

    Limitations

    - + + @@ -18645,11 +23267,6 @@

    Limitations

    - - - - - @@ -18660,21 +23277,11 @@

    Limitations

    - - - - - - - - - - @@ -18785,93 +23392,18 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + - - + + @@ -18985,16 +23517,6 @@

    Limitations

    - - - - - - - - - - @@ -19005,51 +23527,6 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -19059,101 +23536,134 @@

    Limitations

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +
    ID Summary
    0 PRESET_TITLE_ACTIVITY
    12PRESET_TITLE_360_VIDEO
    13 PRESET_TITLE_PHOTO_2
    15PRESET_TITLE_360_PHOTO
    16 PRESET_TITLE_TIME_WARP_2
    17PRESET_TITLE_360_TIME_WARP
    18 PRESET_TITLE_CUSTOM
    40PRESET_TITLE_CHESTY
    41PRESET_TITLE_HELMET
    42PRESET_TITLE_BITE
    43PRESET_TITLE_CUSTOM_CINEMATIC
    44PRESET_TITLE_DIVE
    45PRESET_TITLE_FPV
    46PRESET_TITLE_HDR
    47PRESET_TITLE_LANDSCAPE
    48PRESET_TITLE_LOG
    49PRESET_TITLE_CUSTOM_SLOMO
    50PRESET_TITLE_TRIPOD
    51PRESET_TITLE_360_TIMELAPSE
    52PRESET_TITLE_360_NIGHT_LAPSE
    53PRESET_TITLE_360_NIGHT_PHOTO
    54PRESET_TITLE_PANO_TIME_LAPSE
    55PRESET_TITLE_MAX_VIDEO40PRESET_TITLE_CHESTY
    56PRESET_TITLE_MAX_PHOTO41PRESET_TITLE_HELMET
    57PRESET_TITLE_MAX_TIMEWARP42PRESET_TITLE_BITE
    80PRESET_TITLE_MAX_LENS_VIDEO
    81PRESET_TITLE_MAX_LENS_TIMEWARP
    82 PRESET_TITLE_STANDARD_QUALITY_VIDEO
    84PRESET_TITLE_EASY_MAX_VIDEO
    85PRESET_TITLE_EASY_MAX_PHOTO
    86PRESET_TITLE_EASY_MAX_TIMEWARP
    87PRESET_TITLE_EASY_MAX_STAR_TRAIL
    88PRESET_TITLE_EASY_MAX_LIGHT_PAINTING
    89PRESET_TITLE_EASY_MAX_LIGHT_TRAIL
    90PRESET_TITLE_MAX_STAR_TRAIL
    91PRESET_TITLE_MAX_LIGHT_PAINTING
    92PRESET_TITLE_MAX_LIGHT_TRAIL
    93 PRESET_TITLE_HIGHEST_QUALITY_VIDEO PRESET_TITLE_USER_DEFINED_CUSTOM_NAME
    95PRESET_TITLE_360_DEG_BURST- FW_PRESET_TITLE_360_BURST
    96PRESET_TITLE_360_DEG_NIGHT_PHOTO- FW_PRESET_TITLE_360_NIGHT
    97PRESET_TITLE_360_DEG_TIME_LAPSE_PHOTO- FW_PRESET_TITLE_360_TIME_LAPSE_PHOTO
    98PRESET_TITLE_360_DEG_NIGHT_LAPSE_PHOTO- FW_PRESET_TITLE_360_NIGHT_LAPSE_PHOTO
    99PRESET_TITLE_EASY_STANDARD_PROFILE
    100PRESET_TITLE_EASY_HDR_PROFILE
    101PRESET_TITLE_360_DEG_TIME_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_TIME_LAPSE
    102PRESET_TITLE_360_DEG_NIGHT_LAPSE_VIDEO- FW_PRESET_TITLE_MAX_2_NIGHT_LAPSE
    103PRESET_TITLE_360_DEG_PHOTO- FW_PRESET_TITLE_MAX_2_PHOTO
    104PRESET_TITLE_360_DEG_TIME_WARP- FW_PRESET_TITLE_MAX_2_TIME_WARP
    105PRESET_TITLE_360_DEG_VIDEO- FW_PRESET_TITLE_MAX_2_VIDEO
    106PRESET_TITLE_BURST_SLOMO
    107PRESET_TITLE_VLOG
    108PRESET_TITLE_MAX
    +
    +
    +
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    Content type
    application/json
    {
    • "custom_name": "string",
    • "icon_id": 0,
    • "title_id": 0
    }

    Response samples

    Content type
    application/json
    { }

    Preview Stream

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"custom_name": "string", +
    • +
    • +"icon_id": 0, +
    • +
    • +"title_id": 0 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Preview Stream

    +

    When the preview stream is started, the camera starts up a UDP client and begins writing MPEG Transport +"> +

    When the preview stream is started, the camera starts up a UDP client and begins writing MPEG Transport Stream data to the client on port 8554. In order to stream this data, the client must implement a UDP connection that binds to the same port and decode the data.

    -

    Start Preview Stream

    +
    +

    +Start Preview Stream

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -19164,39 +23674,105 @@

    Limitations

  • WIFI

  • -
    query Parameters
    port
    integer
    Example: port=8556

    Port to use for Preview Stream.

    -

    Not supported on:

    -
      -
    • Hero 11 Black Mini
    • -
    • Hero 11 Black
    • -
    • Hero 10 Black
    • -
    • Hero 9 Black
    • +
    +
    +
    query Parameters
    + + + +
    +port +integer Example: port=8556Port to use for Preview Stream. +Not supported on +Hero 11 Black Mini +Hero 11 Black +Hero 10 Black +Hero 9 Black
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + +
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/stream/start?port=8556'

    Response samples

    Content type
    application/json
    { }

    Stop Preview Stream

    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/stream/start?port=8556'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Stop Preview Stream

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -19207,18 +23783,91 @@

    Limitations

  • WIFI

  • -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/stream/stop

    Response samples

    Content type
    application/json
    { }

    Query

    Get information about the camera

    -

    Get Camera State

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/stream/stop
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +

    +Query

    +
    +

    Get information about the camera

    +
    +
    +
    +
    +

    +Get Camera State

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -19238,16 +23888,49 @@

    Limitations


    Get all camera settings and statuses.

    -

    Responses

    Response Schema: application/json
    + + + + + + + + +
    object

    All currently known setting values indexed by setting ID

    -
    + + + + + + + +
    2
    integer
    Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + +
    + + +
    +
    +object +
    +

    All currently known setting values indexed by setting ID

    +
    +
    +
    +
    + + + + + + +
    +2 +
    +
    +integer +
    +
    + Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    +

    Resolution

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -19356,20 +24040,27 @@

    Limitations

    - + + - + - + - + @@ -19379,12 +24070,16 @@

    Limitations

    - + - + @@ -19399,22 +24094,30 @@

    Limitations

    - + - + - + - + @@ -19441,13 +24144,26 @@

    Limitations

    -
    Supported Cameras
    1 4KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 2.7KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 2.7K 4:3HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7
    9 1080HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    18 4K 4:3HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    24
    26 5.3K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    27 5.3K 4:3HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    28 4K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    100 5.3KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +
    107 2.7K HERO12 Black
    -
    3
    integer
    Enum: 0 1 2 5 6 8 9 10 13
    +
    +3 +
    +
    +integer +
    +
    + Enum: 0 1 2 5 6 8 9 10 13
    +

    Frames Per Second

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -19516,58 +24233,90 @@

    Limitations

    - + + - + - + - + - + - + - + - + - + - - -
    Supported Cameras
    0 240HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 120HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 100HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    5 60HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 50HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 30HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 25HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    10 24HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    13 200HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    43
    integer
    Enum: 0 2 3 4
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +43 +
    +
    +integer +
    +
    + Enum: 0 2 3 4
    +

    Webcam Digital Lenses

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -19611,33 +24361,55 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    59
    integer
    Enum: 0 1 4 6 7 11 12
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +59 +
    +
    +integer +
    +
    + Enum: 0 1 4 6 7 11 12
    +

    Auto Power Down

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -19696,30 +24469,41 @@

    Limitations

    - + + - + - + - + - + - + @@ -19731,11 +24515,24 @@

    Limitations

    -
    Supported Cameras
    0 NeverHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 1 MinHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    4 5 MinHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 15 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    7 30 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    11 30 Seconds HERO11 Black Mini
    -
    83
    integer
    Enum: 0 1
    +
    +83 +
    +
    +integer +
    +
    + Enum: 0 1
    +

    GPS

    HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -19767,19 +24565,37 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    0 OffHERO11 BlackHERO10 BlackHERO9 Black +HERO11 BlackHERO10 BlackHERO9 Black +
    1 OnHERO11 BlackHERO10 BlackHERO9 Black
    -
    108
    integer
    Enum: 0 1 3 4
    HERO10 BlackHERO9 Black +
    +
    +
    +108 +
    +
    +integer +
    +
    + Enum: 0 1 3 4
    +

    Aspect Ratio

    HERO12 Black

    @@ -19819,7 +24636,8 @@

    Limitations

    - + + @@ -19839,13 +24657,26 @@

    Limitations

    -
    Supported Cameras
    0 4:3 HERO12 Black 9:16 HERO12 Black
    -
    121
    integer
    Enum: 0 2 3 4 7 8 9 10 11
    +
    +121 +
    +
    +integer +
    +
    + Enum: 0 2 3 4 7 8 9 10 11
    +

    Lens

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -19914,57 +24746,87 @@

    Limitations

    - + + - + - + - + - + - + - + - + - + -
    Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7 Max SuperViewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 Linear + Horizon LevelingHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 HyperViewHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    10 Linear + Horizon LockHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    11 Max HyperView HERO12 Black
    -
    122
    integer
    Enum: 19 100 101 102
    +
    +122 +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    +

    Lens

    HERO12 Black HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -20007,32 +24870,54 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100 Max SuperViewHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    123
    integer
    Enum: 19 100 101 102
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +123 +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    +

    Time Lapse Digital Lenses

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -20075,10 +24961,13 @@

    Limitations

    - + + - + @@ -20088,19 +24977,36 @@

    Limitations

    - + - - -
    Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    128
    integer
    Enum: 13 20 21 26
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + + +128 + +
    +
    +integer +
    +
    + Enum: 13 20 21 26
    +

    Media Format

    HERO12 Black HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -20143,33 +25050,55 @@

    Limitations

    - + + - + - + - + - - -
    Supported Cameras
    13 Time Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    20 Time Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    21 Night Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    26 Night Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    134
    integer
    Enum: 2 3
    HERO11 BlackHERO10 BlackHERO9 Black + + + + +
    +
    + + + +134 + +
    +
    +integer +
    +
    + Enum: 2 3
    +

    Anti-Flicker

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -20203,23 +25133,41 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    2 60HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 50HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -
    135
    integer
    Enum: 0 1 2 3 4 100
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black + + + + +
    +
    + + + +135 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 100
    +

    Hypersmooth

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -20273,39 +25222,63 @@

    Limitations

    - + + - + - + - + - + - + -
    Supported Cameras
    0 OffHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 LowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +
    2 HighHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 BoostHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 Auto BoostHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    100 Standard HERO10 Black
    -
    150
    integer
    Enum: 0 2
    + +150 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Horizon Leveling

    HERO11 Black

    @@ -20335,7 +25309,8 @@

    Limitations

    - + + @@ -20345,9 +25320,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -
    151
    integer
    Enum: 0 2
    + +151 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Horizon Leveling

    HERO11 Black

    @@ -20377,7 +25366,8 @@

    Limitations

    - + + @@ -20387,11 +25377,24 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -
    162
    integer
    Enum: 0 1
    + +162 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Max Lens

    HERO11 Black HERO10 Black HERO9 Black

    @@ -20423,22 +25427,40 @@

    Limitations

    Supported Cameras - + + 0 Off -HERO11 BlackHERO10 BlackHERO9 Black + +HERO11 BlackHERO10 BlackHERO9 Black + 1 On -HERO11 BlackHERO10 BlackHERO9 Black - - -
    167
    integer
    Enum: 2 3 4
    HERO10 BlackHERO9 Black + + + + +
    +
    + + + +167 + +
    +
    +integer +
    +
    + Enum: 2 3 4
    +

    HindSight

    HERO12 Black HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -20476,24 +25499,44 @@

    Limitations

    - + + - + - + - - -
    Supported Cameras
    2 15 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    3 30 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    4 OffHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -
    171
    integer
    Enum: 0 2 3 4 5 6 7 8 9 10
    HERO11 BlackHERO10 BlackHERO9 Black + + + + +
    +
    + + + +171 + +
    +
    +integer +
    +
    + Enum: 0 2 3 4 5 6 7 8 9 10
    +

    Interval

    HERO12 Black

    @@ -20563,7 +25607,8 @@

    Limitations

    - + + @@ -20613,9 +25658,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black 3s HERO12 Black
    -
    172
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9
    + +172 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9
    +

    Duration

    HERO12 Black

    @@ -20685,7 +25744,8 @@

    Limitations

    - + + @@ -20735,9 +25795,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black 3 Hours HERO12 Black
    -
    173
    integer
    Enum: 0 1 2
    + +173 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Video Performance Mode

    HERO10 Black

    @@ -20772,7 +25846,8 @@

    Limitations

    - + + @@ -20787,10 +25862,23 @@

    Limitations

    -
    Supported Cameras
    0 Maximum Video Performance HERO10 Black Tripod / Stationary Video HERO10 Black
    -
    175
    integer
    Enum: 0 1
    + +175 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Controls

    HERO12 Black HERO11 Black

    @@ -20821,20 +25910,38 @@

    Limitations

    - + + - + - - -
    Supported Cameras
    0 EasyHERO12 BlackHERO11 Black +HERO12 BlackHERO11 Black +
    1 ProHERO12 BlackHERO11 Black
    -
    176
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    HERO11 Black + + + + +
    +
    + + + +176 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    +

    Easy Mode Speed

    HERO12 Black - HERO11 Black

    +HERO11 Black

    @@ -21185,7 +26293,8 @@

    Limitations

    - + + @@ -21515,9 +26624,22 @@

    Limitations

    -
    Supported Cameras
    0 8X Ultra Slo-Mo HERO11 Black 1X Speed (4K) (50Hz) (Full Frame) (Low Light) (V2) HERO12 Black
    -
    177
    integer
    Enum: 0 1
    + +177 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Enable Night Photo

    HERO11 Black

    @@ -21547,7 +26670,8 @@

    Limitations

    - + + @@ -21557,11 +26681,24 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO11 Black On HERO11 Black
    -
    178
    integer
    Enum: 0 1
    + +178 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Wireless Band

    HERO12 Black HERO11 Black Mini HERO11 Black

    @@ -21593,21 +26731,39 @@

    Limitations

    Supported Cameras - + + 0 2.4GHz -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 1 5GHz -HERO12 BlackHERO11 Black MiniHERO11 Black - - -
    179
    integer
    Enum: 1 2 3
    HERO11 Black MiniHERO11 Black + + + + +
    +
    + + + +179 + +
    +
    +integer +
    +
    + Enum: 1 2 3
    +

    Trail Length

    HERO12 Black HERO11 Black Mini HERO11 Black

    @@ -21644,24 +26801,44 @@

    Limitations

    Supported Cameras - + + 1 Short -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 2 Long -HERO12 BlackHERO11 Black MiniHERO11 Black + +HERO12 BlackHERO11 Black MiniHERO11 Black + 3 Max -HERO12 BlackHERO11 Black MiniHERO11 Black - - -
    180
    integer
    Enum: 0 101 102
    HERO11 Black MiniHERO11 Black + + + + +
    +
    + + + +180 + +
    +
    +integer +
    +
    + Enum: 0 101 102
    +

    Video Mode

    HERO11 Black

    @@ -21696,7 +26874,8 @@

    Limitations

    - + + @@ -21711,9 +26890,22 @@

    Limitations

    -
    Supported Cameras
    0 Highest Quality HERO11 Black Longest Battery (Green Icon) HERO11 Black
    -
    182
    integer
    Enum: 0 1
    + +182 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Bit Rate

    HERO12 Black

    @@ -21743,7 +26936,8 @@

    Limitations

    - + + @@ -21753,9 +26947,22 @@

    Limitations

    -
    Supported Cameras
    0 Standard HERO12 Black High HERO12 Black
    -
    183
    integer
    Enum: 0 2
    + +183 + +
    +
    +integer +
    +
    + Enum: 0 2
    +

    Bit Depth

    HERO12 Black

    @@ -21785,7 +26993,8 @@

    Limitations

    - + + @@ -21795,9 +27004,22 @@

    Limitations

    -
    Supported Cameras
    0 8-Bit HERO12 Black 10-Bit HERO12 Black
    -
    184
    integer
    Enum: 0 1 2
    + +184 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Profiles

    HERO12 Black

    @@ -21832,7 +27055,8 @@

    Limitations

    - + + @@ -21847,9 +27071,22 @@

    Limitations

    -
    Supported Cameras
    0 Standard HERO12 Black Log HERO12 Black
    -
    186
    integer
    Enum: 0 1 2
    + +186 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Video Mode

    HERO12 Black

    @@ -21884,7 +27122,8 @@

    Limitations

    - + + @@ -21899,9 +27138,22 @@

    Limitations

    -
    Supported Cameras
    0 Highest Quality HERO12 Black Basic Quality HERO12 Black
    -
    187
    integer
    Enum: 0 1 2 3 4 5 6 7
    + +187 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7
    +

    Lapse Mode

    HERO12 Black

    @@ -21961,7 +27214,8 @@

    Limitations

    - + + @@ -22001,9 +27255,22 @@

    Limitations

    -
    Supported Cameras
    0 TimeWarp HERO12 Black Max Vehicle Lights HERO12 Black
    -
    189
    integer
    Enum: 0 1 2
    + +189 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Max Lens Mod

    HERO12 Black

    @@ -22038,7 +27306,8 @@

    Limitations

    - + + @@ -22053,9 +27322,22 @@

    Limitations

    -
    Supported Cameras
    0 None HERO12 Black Max Lens 2.0 HERO12 Black
    -
    190
    integer
    Enum: 0 1
    + +190 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Max Lens Mod Enable

    HERO12 Black

    @@ -22085,7 +27368,8 @@

    Limitations

    - + + @@ -22095,9 +27379,22 @@

    Limitations

    -
    Supported Cameras
    0 Off HERO12 Black On HERO12 Black
    -
    191
    integer
    Enum: 0 1
    + +191 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Photo Mode

    HERO12 Black

    @@ -22127,7 +27425,8 @@

    Limitations

    - + + @@ -22137,9 +27436,22 @@

    Limitations

    -
    Supported Cameras
    0 Super Photo HERO12 Black Night Photo HERO12 Black
    -
    192
    integer
    Enum: 0 1 3
    + +192 + +
    +
    +integer +
    +
    + Enum: 0 1 3
    +

    Aspect Ratio

    HERO12 Black

    @@ -22174,7 +27487,8 @@

    Limitations

    - + + @@ -22189,9 +27503,22 @@

    Limitations

    -
    Supported Cameras
    0 4:3 HERO12 Black 8:7 HERO12 Black
    -
    193
    integer
    Enum: 0 1 2
    + +193 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Framing

    HERO12 Black

    @@ -22226,7 +27554,8 @@

    Limitations

    - + + @@ -22241,27 +27570,70 @@

    Limitations

    -
    Supported Cameras
    0 Widescreen HERO12 Black Full Frame HERO12 Black
    -
    object

    All currently known status values indexed by status ID

    -
    +
    1
    integer
    Enum: 0 1

    Is the system's internal battery present?

    +
    +
    +
    + +
    + + + + + + +
    +
    +object +
    +

    All currently known status values indexed by status ID

    +
    +
    + + + +
    + + + + +
    +1 +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system's internal battery present?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    2
    integer
    Enum: 0 1 2 3 4
    +
    +2 +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    Rough approximation of internal battery level in bars (or charging)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22303,7 +27676,8 @@

    Limitations

    - + + @@ -22323,97 +27697,199 @@

    Limitations

    -
    Meaning
    0 Zero
    4 Charging
    -
    6
    integer
    Enum: 0 1

    Is the system currently overheating?

    +
    +
    +
    + + + +6 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system currently overheating?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    8
    integer
    Enum: 0 1

    Is the camera busy?

    +
    +
    + + + +8 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera busy?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    9
    integer
    Enum: 0 1

    Is Quick Capture feature enabled?

    +
    +
    + + + +9 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Quick Capture feature enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    10
    integer
    Enum: 0 1

    Is the system currently encoding?

    +
    +
    + + + +10 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system currently encoding?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    11
    integer
    Enum: 0 1

    Is LCD lock active?

    +
    +
    + + + +11 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is LCD lock active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    13
    integer

    When encoding video, this is the duration (seconds) of the video so far; 0 otherwise

    +
    +
    + + + +13 + +
    +
    +integer +
    +

    When encoding video, this is the duration (seconds) of the video so far; 0 otherwise

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    17
    integer
    Enum: 0 1

    Are Wireless Connections enabled?

    +HERO9 Black

    +
    +
    + + + +17 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Are Wireless Connections enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    19
    integer
    Enum: 0 1 2 3 4
    + +19 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    The pairing state of the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22455,7 +27932,8 @@

    Limitations

    - + + @@ -22475,13 +27953,26 @@

    Limitations

    -
    Meaning
    0 Never Started
    4 Completed
    -
    20
    integer
    Enum: 0 1 2 3
    + +20 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    The last type of pairing in which the camera was engaged

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22519,7 +28011,8 @@

    Limitations

    - + + @@ -22535,23 +28028,47 @@

    Limitations

    -
    Meaning
    0 Not Pairing
    3 Pairing Bluetooth Device
    -
    21
    integer

    Time since boot (milliseconds) of last successful pairing complete action

    + + +
    +
    + + + +21 + +
    +
    +integer +
    +

    Time since boot (milliseconds) of last successful pairing complete action

    HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    22
    integer
    Enum: 0 1 2 3 4
    + +22 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    State of current scan for WiFi Access Points

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22593,7 +28111,8 @@

    Limitations

    - + + @@ -22613,25 +28132,49 @@

    Limitations

    -
    Meaning
    0 Never started
    4 Completed
    -
    23
    integer

    Time since boot (milliseconds) that the WiFi Access Point scan completed

    + + +
    +
    + + + +23 + +
    +
    +integer +
    +

    Time since boot (milliseconds) that the WiFi Access Point scan completed

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    24
    integer
    Enum: 0 1 2 3 4
    + +24 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4
    +

    WiFi AP provisioning state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22673,7 +28217,8 @@

    Limitations

    - + + @@ -22693,93 +28238,187 @@

    Limitations

    -
    Meaning
    0 Never started
    4 Completed
    -
    26
    integer

    Wireless remote control version

    + + +
    +
    + + + +26 + +
    +
    +integer +
    +

    Wireless remote control version

    HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    27
    integer
    Enum: 0 1

    Is a wireless remote control connected?

    +HERO9 Black

    +
    +
    + + + +27 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is a wireless remote control connected?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    28
    integer

    Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)

    +
    +
    + + + +28 + +
    +
    +integer +
    +

    Wireless Pairing State. Each bit contains state information (see WirelessPairingStateFlags)

    HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    29
    string

    SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32

    +
    +
    + + + +29 + +
    +
    +string +
    +

    SSID of the AP the camera is currently connected to. On BLE connection, value is big-endian byte-encoded int32

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    30
    string

    The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32

    +
    +
    + + + +30 + +
    +
    +string +
    +

    The camera's WiFi SSID. On BLE connection, value is big-endian byte-encoded int32

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    31
    integer

    The number of wireless devices connected to the camera

    +HERO9 Black

    +
    +
    + + + +31 + +
    +
    +integer +
    +

    The number of wireless devices connected to the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    32
    integer
    Enum: 0 1

    Is Preview Stream enabled?

    +
    +
    + + + +32 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Preview Stream enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    33
    integer
    Enum: -1 0 1 2 3 4 8
    + +33 + +
    +
    +integer +
    +
    + Enum: -1 0 1 2 3 4 8
    +

    Primary Storage Status

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22829,7 +28469,8 @@

    Limitations

    - + + @@ -22857,59 +28498,116 @@

    Limitations

    -
    Meaning
    -1 Unknown
    8 SD Card Swapped
    -
    34
    integer

    How many photos can be taken with current settings before sdcard is full

    + + +
    +
    + + + +34 + +
    +
    +integer +
    +

    How many photos can be taken with current settings before sdcard is full

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    35
    integer

    How many minutes of video can be captured with current settings before sdcard is full

    +HERO9 Black

    +
    +
    + + + +35 + +
    +
    +integer +
    +

    How many minutes of video can be captured with current settings before sdcard is full

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    38
    integer

    Total number of photos on sdcard

    +HERO9 Black

    +
    +
    + + + +38 + +
    +
    +integer +
    +

    Total number of photos on sdcard

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    39
    integer

    Total number of videos on sdcard

    +
    +
    + + + +39 + +
    +
    +integer +
    +

    Total number of videos on sdcard

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    41
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10
    + +41 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10
    +

    The current status of Over The Air (OTA) update

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -22975,7 +28674,8 @@

    Limitations

    - + + @@ -23019,120 +28719,238 @@

    Limitations

    -
    Meaning
    0 Idle
    10 GoPro App: Ready
    -
    42
    integer
    Enum: 0 1

    Is there a pending request to cancel a firmware update download?

    + + +
    +
    + + + +42 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is there a pending request to cancel a firmware update download?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    45
    integer
    Enum: 0 1

    Is locate camera feature active?

    +
    +
    + + + +45 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is locate camera feature active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    49
    integer

    The current timelapse interval countdown value (e.g. 5...4...3...2...1...)

    +
    +
    + + + +49 + +
    +
    +integer +
    +

    The current timelapse interval countdown value (e.g. 5...4...3...2...1...)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    54
    integer

    Remaining space on the sdcard in Kilobytes

    +
    +
    + + + +54 + +
    +
    +integer +
    +

    Remaining space on the sdcard in Kilobytes

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    55
    integer
    Enum: 0 1

    Is preview stream supported in current recording/mode/secondary-stream?

    +
    +
    + + + +55 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is preview stream supported in current recording/mode/secondary-stream?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    56
    integer

    WiFi signal strength in bars

    +
    +
    + + + +56 + +
    +
    +integer +
    +

    WiFi signal strength in bars

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    58
    integer

    The number of hilights in currently-encoding video (value is set to 0 when encoding stops)

    +
    +
    + + + +58 + +
    +
    +integer +
    +

    The number of hilights in currently-encoding video (value is set to 0 when encoding stops)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    59
    integer

    Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)

    +HERO9 Black

    +
    +
    + + + +59 + +
    +
    +integer +
    +

    Time since boot (milliseconds) of most recent hilight in encoding video (set to 0 when encoding stops)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    60
    integer

    The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this

    +HERO9 Black

    +
    +
    + + + +60 + +
    +
    +integer +
    +

    The minimum time between camera status updates (milliseconds). Best practice is to not poll for status more often than this

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    65
    integer
    Enum: 0 1 2 3
    + +65 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    Liveview Exposure Select Mode

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -23169,7 +28988,8 @@

    Limitations

    - + + @@ -23185,69 +29005,141 @@

    Limitations

    -
    Meaning
    0 Disabled
    3 Hemisphere
    -
    66
    integer [ 0 .. 100 ]

    Liveview Exposure Select: y-coordinate (percent)

    + + +
    +
    + + + +66 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Liveview Exposure Select: y-coordinate (percent)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    67
    integer [ 0 .. 100 ]

    Liveview Exposure Select: y-coordinate (percent)

    +HERO9 Black

    +
    +
    + + + +67 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Liveview Exposure Select: y-coordinate (percent)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    68
    integer
    Enum: 0 1

    Does the camera currently have a GPS lock?

    +HERO9 Black

    +
    +
    + + + +68 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Does the camera currently have a GPS lock?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    69
    integer
    Enum: 0 1

    Is AP mode enabled?

    +
    +
    + + + +69 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is AP mode enabled?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    70
    integer [ 0 .. 100 ]

    Internal battery level (percent)

    +
    +
    + + + +70 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Internal battery level (percent)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    74
    integer
    Enum: 0 1 2
    + +74 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Microphone Accessory status

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -23281,7 +29174,8 @@

    Limitations

    - + + @@ -23293,25 +29187,49 @@

    Limitations

    -
    Meaning
    0 Accessory not connected
    2 Accessory connected and a microphone is plugged into the accessory
    -
    75
    integer [ 0 .. 100 ]

    Digital Zoom level (percent)

    + + +
    +
    + + + +75 + +
    +
    +integer [ 0 .. 100 ] +
    +

    Digital Zoom level (percent)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    76
    integer
    Enum: 0 1
    + +76 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Wireless Band

    HERO12 Black HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -23341,7 +29260,8 @@

    Limitations

    - + + @@ -23349,91 +29269,195 @@

    Limitations

    -
    Meaning
    0 2.4 GHz
    1 5 GHz
    -
    77
    integer
    Enum: 0 1

    Is Digital Zoom feature available?

    + + +
    +
    + + + +77 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Digital Zoom feature available?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    78
    integer
    Enum: 0 1

    Are current video settings mobile friendly? (related to video compression and frame rate)

    +
    +
    + + + +78 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Are current video settings mobile friendly? (related to video compression and frame rate)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    79
    integer
    Enum: 0 1

    Is the camera currently in First Time Use (FTU) UI flow?

    +HERO9 Black

    +
    +
    + + + +79 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera currently in First Time Use (FTU) UI flow?

    HERO10 Black - HERO9 Black

    -
    81
    integer
    Enum: 0 1

    Is 5GHz wireless band available?

    +HERO9 Black

    +
    +
    + + + +81 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is 5GHz wireless band available?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    82
    integer
    Enum: 0 1

    Is the system fully booted and ready to accept commands?

    +
    +
    + + + +82 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system fully booted and ready to accept commands?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    83
    integer
    Enum: 0 1

    Is the internal battery charged sufficiently to start Over The Air (OTA) update?

    +
    +
    + + + +83 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the internal battery charged sufficiently to start Over The Air (OTA) update?

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    85
    integer
    Enum: 0 1

    Is the camera getting too cold to continue recording?

    +HERO9 Black

    +
    +
    + + + +85 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera getting too cold to continue recording?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    86
    integer
    Enum: 0 1 2 3
    + +86 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    +

    Rotational orientation of the camera

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -23471,7 +29496,8 @@

    Limitations

    - + + @@ -23487,135 +29513,273 @@

    Limitations

    -
    Meaning
    0 0 degrees (upright)
    3 270 degrees (laying on left side)
    -
    88
    integer
    Enum: 0 1

    Is this camera model capable of zooming while encoding?

    + + +
    +
    + + + +88 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is this camera model capable of zooming while encoding?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    89
    integer

    Current Flatmode ID

    +
    +
    + + + +89 + +
    +
    +integer +
    +

    Current Flatmode ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    93
    integer

    Current Video Preset (ID)

    +
    +
    + + + +93 + +
    +
    +integer +
    +

    Current Video Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    94
    integer

    Current Photo Preset (ID)

    +
    +
    + + + +94 + +
    +
    +integer +
    +

    Current Photo Preset (ID)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    95
    integer

    Current Time Lapse Preset (ID)

    +HERO9 Black

    +
    +
    + + + +95 + +
    +
    +integer +
    +

    Current Time Lapse Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    96
    integer

    Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)

    +
    +
    + + + +96 + +
    +
    +integer +
    +

    Current Preset Group (ID) (corresponds to ui_mode_groups in settings.json)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    97
    integer

    Current Preset (ID)

    +
    +
    + + + +97 + +
    +
    +integer +
    +

    Current Preset (ID)

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    98
    integer

    Preset Modified Status, which contains an event ID and a Preset (Group) ID

    +
    +
    + + + +98 + +
    +
    +integer +
    +

    Preset Modified Status, which contains an event ID and a Preset (Group) ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    99
    integer

    The number of Live Bursts can be captured with current settings before sdcard is full

    +
    +
    + + + +99 + +
    +
    +integer +
    +

    The number of Live Bursts can be captured with current settings before sdcard is full

    HERO11 Black HERO10 Black - HERO9 Black

    -
    100
    integer

    Total number of Live Bursts on sdcard

    +HERO9 Black

    +
    +
    + + + +100 + +
    +
    +integer +
    +

    Total number of Live Bursts on sdcard

    HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    101
    integer
    Enum: 0 1

    Is Capture Delay currently active (i.e. counting down)?

    +
    +
    + + + +101 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Capture Delay currently active (i.e. counting down)?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    102
    integer
    Enum: 0 2 3
    + +102 + +
    +
    +integer +
    +
    + Enum: 0 2 3
    +

    Media Mod state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -23649,7 +29814,8 @@

    Limitations

    - + + @@ -23661,13 +29827,26 @@

    Limitations

    -
    Meaning
    0 Media Mod microphone removed
    3 Media Mod microphone with external microphone
    -
    103
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    + +103 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12
    +

    Time Warp Speed

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    @@ -23741,7 +29921,8 @@

    Limitations

    - + + @@ -23793,19 +29974,45 @@

    Limitations

    -
    Meaning
    0 15x
    12 1/2x (slow-motion)
    -
    104
    integer
    Enum: 0 1

    Is the system's Linux core active?

    + + +
    +
    + + + +104 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the system's Linux core active?

    HERO10 Black - HERO9 Black

    -
    105
    integer
    Enum: 0 1 2

    +
    +
    + + + +105 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Camera lens type (reflects changes to lens settings such as 162, 189, 194, ...)

    HERO12 Black HERO11 Black Mini - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -23839,7 +30047,8 @@

    Limitations

    - + + @@ -23851,42 +30060,92 @@

    Limitations

    -
    Meaning
    0 Default
    2 Max Lens 2.0
    -
    106
    integer
    Enum: 0 1

    Is Video Hindsight Capture Active?

    + + +
    +
    + + + +106 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Video Hindsight Capture Active?

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    107
    integer

    Scheduled Capture Preset ID

    +HERO9 Black

    +
    +
    + + + +107 + +
    +
    +integer +
    +

    Scheduled Capture Preset ID

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    108
    integer
    Enum: 0 1

    Is Scheduled Capture set?

    +HERO9 Black

    +
    +
    + + + +108 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Scheduled Capture set?

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    -
    110
    integer
    Enum: 0 1 2 3 4 5 6 7

    +
    +
    + + + +110 + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7
    +

    Display Mod Status (bitmasked)

    HERO12 Black - HERO11 Black +HERO11 Black HERO10 Black - HERO9 Black

    +HERO9 Black

    @@ -23939,7 +30199,8 @@

    Limitations

    - + + @@ -23971,44 +30232,94 @@

    Limitations

    -
    Meaning
    0 000 = Display Mod: 0, HDMI: 0, Display Mod Connected: False
    7 111 = Display Mod: 1, HDMI: 1, Display Mod Connected: True
    -
    111
    integer
    Enum: 0 1

    Does sdcard meet specified minimum write speed?

    + + +
    +
    + + + +111 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Does sdcard meet specified minimum write speed?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    112
    integer

    Number of sdcard write speed errors since device booted

    +HERO10 Black

    +
    +
    + + + +112 + +
    +
    +integer +
    +

    Number of sdcard write speed errors since device booted

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    113
    integer
    Enum: 0 1

    Is Turbo Transfer active?

    +HERO10 Black

    +
    +
    + + + +113 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is Turbo Transfer active?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black +HERO10 Black HERO9 Black

    -
    114
    integer
    Enum: 0 1 2
    + +114 + +
    +
    +integer +
    +
    + Enum: 0 1 2
    +

    Camera control status ID

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    +HERO10 Black

    @@ -24041,7 +30353,8 @@

    Limitations

    - + + @@ -24053,22 +30366,48 @@

    Limitations

    -
    Meaning
    0 Camera Idle: No one is attempting to change camera settings
    2 Camera External Control: An outside entity (app) has control and is in a menu or modifying settings
    -
    115
    integer
    Enum: 0 1

    Is the camera connected to a PC via USB?

    + + +
    +
    + + + +115 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is the camera connected to a PC via USB?

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    -
    116
    integer
    Enum: 0 1

    +
    +
    + + + +116 + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Camera control over USB state

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black - HERO10 Black

    +HERO10 Black

    @@ -24097,7 +30437,8 @@

    Limitations

    - + + @@ -24105,32 +30446,478 @@

    Limitations

    -
    Meaning
    0 Disabled
    1 Enabled
    -
    117
    integer

    Total SD card capacity in Kilobytes

    + + +
    +
    + + + +117 + +
    +
    +integer +
    +

    Total SD card capacity in Kilobytes

    HERO12 Black - HERO11 Black Mini +HERO11 Black Mini HERO11 Black

    -
    118
    integer

    Photo interval capture count

    +
    +
    + + + +118 + +
    +
    +integer +
    +

    Photo interval capture count

    HERO12 Black

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/state

    Response samples

    Content type
    application/json
    {
    • "settings": {
      },
    • "status": {
      }
    }

    Get Date / Time

    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/state
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    + +
    +
    {
      +
    • +"settings": {
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +}, +
    • +
    • +"status": {
        +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      • +
      +} +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Date / Time

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black

    Supported Protocols:

    @@ -24139,51 +30926,380 @@

    Limitations

  • WIFI

  • -

    Responses

    Response Schema: application/json
    date
    required
    string
    Example: "2023_12_31"

    current date in format YYYY_MM_DD

    -
    time
    required
    string
    Example: "11_05_45"

    current time in format HH_MM_SS

    -
    dst
    integer
    Enum: 0 1

    Is daylight savings time active?

    -
    tzone
    integer
    Example: "-480"

    Timezone offset in minutes

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/get_date_time

    Response samples

    Content type
    application/json
    {
    • "date": "2023_12_31",
    • "dst": 0,
    • "time": "11_05_45",
    • "tzone": -480
    }

    Get Hardware Info

    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + + + + + + +
    +date<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "2023_12_31" +
    +
    +

    current date in format YYYY_MM_DD

    +
    +
    +
    +time<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +string +
    + Example: "11_05_45" +
    +
    +

    current time in format HH_MM_SS

    +
    +
    +
    +dst + +
    +
    +integer +
    +
    + Enum: 0 1
    +

    Is daylight savings time active?

    +
    +
    +
    +tzone + +
    +
    +integer +
    + Example: "-480" +
    +
    +

    Timezone offset in minutes

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/get_date_time
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"date": "2023_12_31", +
    • +
    • +"dst": 0, +
    • +
    • +"time": "11_05_45", +
    • +
    • +"tzone": -480 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Hardware Info

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • WIFI
    -
    -

    Responses

    Response Schema: application/json
    object
    ap_mac_addr
    string
    Example: "065747046ceb"

    Camera's Access Point MAC address

    -
    ap_ssid
    string
    Example: "GP24645504"

    Camera's ACcess Point SSID name

    -
    firmware_version
    string <version>
    Example: "H23.01.01.10.00"

    Camera Firmware version

    -
    model_name
    string
    Example: "Hero12 Black"

    Camera Model Name

    -
    model_number
    string
    Example: "62"

    Camera Model integer (as string)

    -
    serial_number
    string
    Example: "C3501324645504"

    Camera serial number

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/camera/info

    Response samples

    Content type
    application/json
    {
    • "info": {
      }
    }

    Get Last Captured Media

    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + +
    + + +
    +
    +object +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    +ap_mac_addr +
    +
    +string +
    + Example: "065747046ceb" +
    +
    +

    Camera's Access Point MAC address

    +
    +
    +ap_ssid +
    +
    +string +
    + Example: "GP24645504" +
    +
    +

    Camera's ACcess Point SSID name

    +
    +
    +firmware_version +
    +
    +string <version> +
    + Example: "H23.01.01.10.00" +
    +
    +

    Camera Firmware version

    +
    +
    +model_name +
    +
    +string +
    + Example: "Hero12 Black" +
    +
    +

    Camera Model Name

    +
    +
    +model_number +
    +
    +string +
    + Example: "62" +
    +
    +

    Camera Model integer (as string)

    +
    +
    +serial_number +
    +
    +string +
    + Example: "C3501324645504" +
    +
    +

    Camera serial number

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/camera/info
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    + +
    +
    {
    • +"info": {
        +
      • +
      • +
      • +
      • +
      • +
      • +
      +} +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Last Captured Media

    +
    +

    HERO12 Black

    Supported Protocols:

    • USB
    • @@ -24207,29 +31324,140 @@

      Limitations

    • single photo / video: The single media path
    • any grouped media: The path to the first captured media in the group
    -

    Responses

    Response Schema: application/json
    file
    string
    Example: "GOPR0002.JPG"

    Filename of media

    -
    folder
    string
    Example: "100GOPRO"

    Directory in which the media is contained in

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/media/last_captured

    Response samples

    Content type
    application/json
    {
    • "file": "GOPR0002.JPG",
    • "folder": "100GOPRO"
    }

    Get Open GoPro Version

    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + +
    +file + +
    +
    +string +
    + Example: "GOPR0002.JPG" +
    +
    +

    Filename of media

    +
    +
    +
    +folder + +
    +
    +string +
    + Example: "100GOPRO" +
    +
    +

    Directory in which the media is contained in

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/media/last_captured
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
      + + +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"file": "GOPR0002.JPG", +
    • +
    • +"folder": "100GOPRO" +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Open GoPro Version

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black @@ -24240,16 +31468,102 @@

    Limitations

  • WIFI

  • -

    Responses

    Response Schema: application/json
    version
    string <version>
    Example: "2.0"

    Open GoPro version

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/version

    Response samples

    Content type
    application/json
    {
    • "version": "2.0"
    }

    settings

    GoPro cameras have hundreds of setting options to choose from, all of which can be set using a single endpoint. The endpoint is configured with a setting id and an option value. Note that setting option values are not globally unique. While most option values are enumerated values, some are complex bit-masked values.

    -

    Capabilities

    Responses +
    +
    +
    Response Schema: application/json +
    + + + +
    +version + +
    +
    +string <version> +
    + Example: "2.0" +
    +
    +

    Open GoPro version

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/version
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
    • +"version": "2.0" +
    +}
    +
    +
    +
    +
    +
    +
    +
    +

    +settings

    +
    +

    GoPro cameras have hundreds of setting options to choose from, all of which can be set using a single endpoint. The endpoint is configured with a setting id and an option value. Note that setting option values are not globally unique. While most option values are enumerated values, some are complex bit-masked values.

    +
    +
    +
    +

    +Capabilities

    +
    +

    Camera capabilities usually change from one camera to another and often change from one release to the next. Below are documents that detail whitelists for basic video settings for every supported camera release.

    These Capability documents define supported camera states. Each state is comprised of a set of setting options that are presented in dependency order. This means each state is guaranteed to be attainable if and only if the setting options are set in the order presented. -Failure to adhere to dependency ordering may result in the camera's blacklist rules rejecting a set-setting command.

    +Failure to adhere to dependency ordering may result in the camera's blacklist rules rejecting a set-setting command.

    @@ -24318,7 +31633,8 @@

    Limitations

    - + + @@ -24336,9 +31652,10 @@

    Limitations

    -
    Guaranteed Valid?
    HERO10 Black Res: 1080 Anti-Flicker: 60Hz (NTSC) Hypersmooth: OFF
    + +

    In the example above, the first set of commands will always work for basic video presets such as Standard.

    -

    In the second example, suppose the camera's Video Resolution was previously set to 4K. +

    In the second example, suppose the camera's Video Resolution was previously set to 4K. If the user tries to set Video FPS to 240, it will fail because 4K/240fps is not supported.

    Capability documents for each camera / firmware version can be found in the following file formats:

    XLSX

    @@ -24351,17 +31668,39 @@

    JSON

    list of objects that contain setting and option IDs necessary to construct set-setting commands and are given in dependency order as outlined above. For more information on the object format, see the JSON schema

    -

    Anti-Flicker (134)

    HERO12 Black +

    +
    +
    +
    +

    +Anti-Flicker (134)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 2 3
    Example: option=2
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 2 3
    + Example: option=2 +
    +
    + @@ -24388,25 +31728,115 @@

    JSON

    - + + - + - - -
    ID Supported Cameras
    2 60HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 50HzHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=2&setting=134'

    Response samples

    Content type
    application/json
    { }

    Aspect Ratio (108)

    HERO12 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1 3 4
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=2&setting=134'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Aspect Ratio (108)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 3 4
    + @@ -24443,7 +31874,8 @@

    JSON

    - + + @@ -24463,15 +31895,100 @@

    JSON

    -
    ID Supported Cameras
    0 4:3 HERO12 Black 9:16 HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=108'

    Response samples

    Content type
    application/json
    { }

    Aspect Ratio (192)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 3
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=108'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Aspect Ratio (192)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 3
    + @@ -24503,7 +32021,8 @@

    JSON

    - + + @@ -24518,23 +32037,111 @@

    JSON

    -
    ID Supported Cameras
    0 4:3 HERO12 Black 8:7 HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=192'

    Response samples

    Content type
    application/json
    { }

    Auto Power Down (59)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=192'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Auto Power Down (59)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 4 6 7 11 12
    Example: option=11
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 4 6 7 11 12
    + Example: option=11 +
    +
    + @@ -24586,30 +32194,41 @@

    JSON

    - + + - + - + - + - + - + @@ -24621,15 +32240,100 @@

    JSON

    -
    ID Supported Cameras
    0 NeverHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 1 MinHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    4 5 MinHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 15 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    7 30 MinHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    11 30 Seconds HERO11 Black Mini
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=11&setting=59'

    Response samples

    Content type
    application/json
    { }

    Bit Depth (183)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 2
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=11&setting=59'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Bit Depth (183)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2
    + @@ -24656,7 +32361,8 @@

    JSON

    - + + @@ -24666,15 +32372,103 @@

    JSON

    -
    ID Supported Cameras
    0 8-Bit HERO12 Black 10-Bit HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=183'

    Response samples

    Content type
    application/json
    { }

    Bit Rate (182)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1
    Example: option=1
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=183'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Bit Rate (182)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + Example: option=1 +
    +
    + @@ -24701,7 +32496,8 @@

    JSON

    - + + @@ -24711,17 +32507,102 @@

    JSON

    -
    ID Supported Cameras
    0 Standard HERO12 Black High HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=1&setting=182'

    Response samples

    Content type
    application/json
    { }

    Controls (175)

    HERO12 Black +

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=1&setting=182'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Controls (175)

    +
    +

    HERO12 Black HERO11 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -24748,25 +32630,115 @@

    JSON

    - + + - + - - -
    ID Supported Cameras
    0 EasyHERO12 BlackHERO11 Black +HERO12 BlackHERO11 Black +
    1 ProHERO12 BlackHERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=175'

    Response samples

    Content type
    application/json
    { }

    Duration (172)

    HERO12 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9
    HERO11 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=175'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Duration (172)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9
    + @@ -24833,7 +32806,8 @@

    JSON

    - + + @@ -24883,17 +32857,102 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO12 Black 3 Hours HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=172'

    Response samples

    Content type
    application/json
    { }

    Easy Mode Speed (176)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=172'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Easy Mode Speed (176)

    +
    +

    HERO12 Black HERO11 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    + @@ -25240,7 +33300,8 @@

    JSON

    - + + @@ -25570,15 +33631,100 @@

    JSON

    -
    ID Supported Cameras
    0 8X Ultra Slo-Mo HERO11 Black 1X Speed (4K) (50Hz) (Full Frame) (Low Light) (V2) HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=176'

    Response samples

    Content type
    application/json
    { }

    Enable Night Photo (177)

    HERO11 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=176'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Enable Night Photo (177)

    +
    +

    HERO11 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -25605,7 +33752,8 @@

    JSON

    - + + @@ -25615,23 +33763,108 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO11 Black On HERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=177'

    Response samples

    Content type
    application/json
    { }

    Frames Per Second (3)

    HERO12 Black +

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=177'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Frames Per Second (3)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2 5 6 8 9 10 13
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 5 6 8 9 10 13
    + @@ -25693,60 +33927,164 @@

    JSON

    - + + - + - + - + - + - + - + - + - + - - -
    ID Supported Cameras
    0 240HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 120HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 100HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    5 60HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 50HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 30HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 25HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    10 24HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    13 200HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=3'

    Response samples

    Content type
    application/json
    { }

    Framing (193)

    HERO12 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1 2
    HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=3'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Framing (193)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    + @@ -25778,7 +34117,8 @@

    JSON

    - + + @@ -25793,19 +34133,107 @@

    JSON

    -
    ID Supported Cameras
    0 Widescreen HERO12 Black Full Frame HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=193'

    Response samples

    Content type
    application/json
    { }

    GPS (83)

    HERO11 Black + + +

    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=193'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +GPS (83)

    +
    +

    HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1
    Example: option=1
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + Example: option=1 +
    +
    + @@ -25832,31 +34261,124 @@

    JSON

    - + + - + - - -
    ID Supported Cameras
    0 OffHERO11 BlackHERO10 BlackHERO9 Black +HERO11 BlackHERO10 BlackHERO9 Black +
    1 OnHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=1&setting=83'

    Response samples

    Content type
    application/json
    { }

    HindSight (167)

    HERO12 Black +

    +HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=1&setting=83'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +HindSight (167)

    +
    +

    HERO12 Black HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 2 3 4
    Example: option=2
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 2 3 4
    + Example: option=2 +
    +
    + @@ -25888,30 +34411,122 @@

    JSON

    - + + - + - + - - -
    ID Supported Cameras
    2 15 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    3 30 SecondsHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    4 OffHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=2&setting=167'

    Response samples

    Content type
    application/json
    { }

    Horizon Leveling (150)

    HERO11 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 2
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=2&setting=167'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Horizon Leveling (150)

    +
    +

    HERO11 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2
    + @@ -25938,7 +34554,8 @@

    JSON

    - + + @@ -25948,15 +34565,100 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=150'

    Response samples

    Content type
    application/json
    { }

    Horizon Leveling (151)

    HERO11 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 2
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=150'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Horizon Leveling (151)

    +
    +

    HERO11 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2
    + @@ -25983,7 +34686,8 @@

    JSON

    - + + @@ -25993,23 +34697,111 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO11 Black Locked HERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=151'

    Response samples

    Content type
    application/json
    { }

    Hypersmooth (135)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=151'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Hypersmooth (135)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2 3 4 100
    Example: option=4
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 100
    + Example: option=4 +
    +
    + @@ -26056,45 +34849,141 @@

    JSON

    - + + - + - + - + - + - + -
    ID Supported Cameras
    0 OffHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    1 LowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO9 Black +
    2 HighHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 BoostHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 Auto BoostHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    100 Standard HERO10 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=4&setting=135'

    Response samples

    Content type
    application/json
    { }

    Interval (171)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 2 3 4 5 6 7 8 9 10
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=4&setting=135'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Interval (171)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2 3 4 5 6 7 8 9 10
    + @@ -26161,7 +35051,8 @@

    JSON

    - + + @@ -26211,15 +35102,100 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO12 Black 3s HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=171'

    Response samples

    Content type
    application/json
    { }

    Lapse Mode (187)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2 3 4 5 6 7
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=171'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Lapse Mode (187)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7
    + @@ -26276,7 +35253,8 @@

    JSON

    - + + @@ -26316,23 +35294,111 @@

    JSON

    -
    ID Supported Cameras
    0 TimeWarp HERO12 Black Max Vehicle Lights HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=187'

    Response samples

    Content type
    application/json
    { }

    Lens (121)

    HERO12 Black +

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=187'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Lens (121)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 2 3 4 7 8 9 10 11
    Example: option=7
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2 3 4 7 8 9 10 11
    + Example: option=7 +
    +
    + @@ -26394,66 +35461,171 @@

    JSON

    - + + - + - + - + - + - + - + - + - + -
    ID Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7 Max SuperViewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    8 Linear + Horizon LevelingHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    9 HyperViewHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    10 Linear + Horizon LockHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    11 Max HyperView HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=7&setting=121'

    Response samples

    Content type
    application/json
    { }

    Lens (122)

    HERO12 Black +

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=7&setting=121'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Lens (122)

    +
    +

    HERO12 Black HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 19 100 101 102
    Example: option=100
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    + Example: option=100 +
    +
    + @@ -26490,39 +35663,133 @@

    JSON

    - + + - + - + - + - - -
    ID Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100 Max SuperViewHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=100&setting=122'

    Response samples

    Content type
    application/json
    { }

    Max Lens (162)

    HERO11 Black +

    +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=100&setting=122'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Max Lens (162)

    +
    +

    HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -26549,25 +35817,115 @@

    JSON

    - + + - + - - -
    ID Supported Cameras
    0 OffHERO11 BlackHERO10 BlackHERO9 Black +HERO11 BlackHERO10 BlackHERO9 Black +
    1 OnHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=162'

    Response samples

    Content type
    application/json
    { }

    Max Lens Mod (189)

    HERO12 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1 2
    HERO10 BlackHERO9 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=162'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Max Lens Mod (189)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    + @@ -26599,7 +35958,8 @@

    JSON

    - + + @@ -26614,15 +35974,100 @@

    JSON

    -
    ID Supported Cameras
    0 None HERO12 Black Max Lens 2.0 HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=189'

    Response samples

    Content type
    application/json
    { }

    Max Lens Mod Enable (190)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=189'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Max Lens Mod Enable (190)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -26649,7 +36095,8 @@

    JSON

    - + + @@ -26659,21 +36106,109 @@

    JSON

    -
    ID Supported Cameras
    0 Off HERO12 Black On HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=190'

    Response samples

    Content type
    application/json
    { }

    Media Format (128)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=190'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Media Format (128)

    +
    +

    HERO12 Black HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 13 20 21 26
    Example: option=13
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 13 20 21 26
    + Example: option=13 +
    +
    + @@ -26710,35 +36246,129 @@

    JSON

    - + + - + - + - + - - -
    ID Supported Cameras
    13 Time Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    20 Time Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    21 Night Lapse PhotoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    26 Night Lapse VideoHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=13&setting=128'

    Response samples

    Content type
    application/json
    { }

    Photo Mode (191)

    HERO12 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1
    HERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=13&setting=128'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Photo Mode (191)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -26765,7 +36396,8 @@

    JSON

    - + + @@ -26775,15 +36407,100 @@

    JSON

    -
    ID Supported Cameras
    0 Super Photo HERO12 Black Night Photo HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=191'

    Response samples

    Content type
    application/json
    { }

    Profiles (184)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=191'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Profiles (184)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    + @@ -26815,7 +36533,8 @@

    JSON

    - + + @@ -26830,23 +36549,111 @@

    JSON

    -
    ID Supported Cameras
    0 Standard HERO12 Black Log HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=184'

    Response samples

    Content type
    application/json
    { }

    Resolution (2)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=184'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Resolution (2)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    Example: option=100
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 1 4 6 7 9 18 24 25 26 27 28 100 107 108 109 110 111
    + Example: option=100 +
    +
    + @@ -26948,20 +36756,27 @@

    JSON

    - + + - + - + - + @@ -26971,12 +36786,16 @@

    JSON

    - + - + @@ -26991,22 +36810,30 @@

    JSON

    - + - + - + - + @@ -27033,21 +36860,109 @@

    JSON

    -
    ID Supported Cameras
    1 4KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 2.7KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    6 2.7K 4:3HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    7
    9 1080HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    18 4K 4:3HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    24
    26 5.3K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    27 5.3K 4:3HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    28 4K 8:7HERO11 Black MiniHERO11 Black +HERO11 Black MiniHERO11 Black +
    100 5.3KHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 Black +
    107 2.7K HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=100&setting=2'

    Response samples

    Content type
    application/json
    { }

    Time Lapse Digital Lenses (123)

    HERO12 Black +

    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=100&setting=2'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Time Lapse Digital Lenses (123)

    +
    +

    HERO12 Black HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 19 100 101 102
    Example: option=101
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 19 100 101 102
    + Example: option=101 +
    +
    + @@ -27084,10 +37000,13 @@

    JSON

    - + + - + @@ -27097,26 +37016,118 @@

    JSON

    - + - - -
    ID Supported Cameras
    19 NarrowHERO10 BlackHERO9 Black +HERO10 BlackHERO9 Black +
    100
    101 WideHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    102 LinearHERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=101&setting=123'

    Response samples

    Content type
    application/json
    { }

    Trail Length (179)

    HERO12 Black +

    +HERO12 BlackHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=101&setting=123'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Trail Length (179)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 1 2 3
    Example: option=3
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 1 2 3
    + Example: option=3 +
    +
    + @@ -27148,30 +37160,122 @@

    JSON

    - + + - + - + - - -
    ID Supported Cameras
    1 ShortHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    2 LongHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    3 MaxHERO12 BlackHERO11 Black MiniHERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=3&setting=179'

    Response samples

    Content type
    application/json
    { }

    Video Mode (180)

    HERO11 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 101 102
    HERO11 Black MiniHERO11 Black +
    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=3&setting=179'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Video Mode (180)

    +
    +

    HERO11 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 101 102
    + @@ -27203,7 +37308,8 @@

    JSON

    - + + @@ -27218,15 +37324,100 @@

    JSON

    -
    ID Supported Cameras
    0 Highest Quality HERO11 Black Longest Battery (Green Icon) HERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=180'

    Response samples

    Content type
    application/json
    { }

    Video Mode (186)

    HERO12 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=180'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Video Mode (186)

    +
    +

    HERO12 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    + @@ -27258,7 +37450,8 @@

    JSON

    - + + @@ -27273,15 +37466,100 @@

    JSON

    -
    ID Supported Cameras
    0 Highest Quality HERO12 Black Basic Quality HERO12 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=186'

    Response samples

    Content type
    application/json
    { }

    Video Performance Mode (173)

    HERO10 Black

    -
    query Parameters
    +
    option
    required
    integer
    Enum: 0 1 2
    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=186'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Video Performance Mode (173)

    +
    +

    HERO10 Black

    +
    +
    +
    query Parameters
    + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1 2
    + @@ -27313,7 +37592,8 @@

    JSON

    - + + @@ -27328,23 +37608,111 @@

    JSON

    -
    ID Supported Cameras
    0 Maximum Video Performance HERO10 Black Tripod / Stationary Video HERO10 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=173'

    Response samples

    Content type
    application/json
    { }

    Webcam Digital Lenses (43)

    HERO12 Black +

    +
    +
    +
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=173'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Webcam Digital Lenses (43)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black HERO10 Black HERO9 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 2 3 4
    Example: option=3
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 2 3 4
    + Example: option=3 +
    +
    + @@ -27381,39 +37750,133 @@

    JSON

    - + + - + - + - + - - -
    ID Supported Cameras
    0 WideHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    2 NarrowHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    3 SuperviewHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    4 LinearHERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=3&setting=43'

    Response samples

    Content type
    application/json
    { }

    Wireless Band (178)

    HERO12 Black +

    +HERO12 BlackHERO11 Black MiniHERO11 BlackHERO10 BlackHERO9 Black +
    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=3&setting=43'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Wireless Band (178)

    +
    +

    HERO12 Black HERO11 Black Mini HERO11 Black

    -
    query Parameters
    + + +
    option
    required
    integer
    Enum: 0 1
    query Parameters + + +
    +option<div class="sc-gUjWJS sc-eKzvBH itHPsH ciWJhv">required</div> +
    +
    +integer +
    +
    + Enum: 0 1
    + @@ -27440,23 +37904,99 @@

    JSON

    - + + - + - - -
    ID Supported Cameras
    0 2.4GHzHERO12 BlackHERO11 Black MiniHERO11 Black +HERO12 BlackHERO11 Black MiniHERO11 Black +
    1 5GHzHERO12 BlackHERO11 Black MiniHERO11 Black
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=178'

    Response samples

    Content type
    application/json
    { }

    Webcam

    HERO11 Black MiniHERO11 Black +
    +
    +
    + + +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/camera/setting?option=0&setting=178'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +

    +Webcam

    +
    +

    The webcam feature enables developers who are interested in writing custom drivers to broadcast the camera's video preview with a limited set of resolution, field of view, port, and protocol options.

    While active, the webcam feature sends raw data to the connected client using a supported protocol. To enable multi-cam support, some cameras support running on a user-specified port. Protocol and port details are provided in a @@ -27506,7 +38047,8 @@

    JSON

    Port - + + TS udp://@:{PORT} @@ -27514,7 +38056,8 @@

    JSON

    RTSP rtsp://{CAMERA_IP}:554/live - + +

    For readers interested in using a GoPro camera as a webcam with preexisting tools, please see How to use GoPro as a Webcam.

    Webcam via USB

    @@ -27530,9 +38073,15 @@

    Webcam Stabilization

    Note! The Low Hypersmooth option provides lower/lighter stabilization when used in Webcam mode vs other camera modes.

    -

    Enter Webcam Preview

    +
    +

    +Enter Webcam Preview

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -27562,14 +38112,81 @@

    Webcam Stabilization

  • Hero 10 Black
  • Hero 9 Black
  • -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/webcam/preview

    Response samples

    Content type
    application/json
    { }

    Exit Webcam Mode

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/webcam/preview
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Exit Webcam Mode

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -27599,21 +38217,89 @@

    Webcam Stabilization

  • Hero 10 Black
  • Hero 9 Black
  • -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/webcam/exit

    Response samples

    Content type
    application/json
    { }

    Get Webcam Status

    Responses +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/webcam/exit
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Webcam Status

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -27622,9 +38308,28 @@

    Webcam Stabilization

  • WIFI

  • -

    Responses

    Response Schema: application/json
    error
    integer
    Enum: 0 1 2 3 4 5 6 7 8
    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + +
    +error + +
    +
    +integer +
    +
    + Enum: 0 1 2 3 4 5 6 7 8
    Webcam Stabilization <td>Exit</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Current webcam error (if status was not successful)

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Current webcam error (if status was not successful)

    @@ -27677,7 +38383,8 @@

    Webcam Stabilization

    - + + @@ -27713,8 +38420,23 @@

    Webcam Stabilization

    -
    Status
    0 None
    8 Exit
    -
    status
    integer
    Enum: 0 1 2 3
    +
    +status + +
    +
    +integer +
    +
    + Enum: 0 1 2 3
    Webcam Stabilization <td>Low Power Preview</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Current webcam status

    +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Current webcam status

    @@ -27747,7 +38470,8 @@

    Webcam Stabilization

    - + + @@ -27763,20 +38487,89 @@

    Webcam Stabilization

    + +
    Status
    0 Off
    3 Low Power Preview
    +
    +
    +
    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/webcam/status

    Response samples

    Content type
    application/json
    {
    • "error": 0,
    • "status": 0
    }

    Get Webcam Version

    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/webcam/status
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"error": 0, +
    • +
    • +"status": 0 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Get Webcam Version

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -27785,20 +38578,134 @@

    Webcam Stabilization

  • WIFI

  • -

    Responses

    Response Schema: application/json
    max_lens_support
    boolean

    Does the webcam support Max Lens Mod?

    -
    usb_3_1_compatible
    boolean

    Is the webcam USB 3.1 compatible?

    -
    version
    integer

    Current webcam version

    -

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/webcam/version

    Response samples

    Content type
    application/json
    {
    • "max_lens_support": true,
    • "usb_3_1_compatible": true,
    • "version": 0
    }

    Start Webcam

    Responses +
    +
    +
    Response Schema: application/json +
    + + + + + + + + + + + + + +
    +max_lens_support + +
    +
    +boolean +
    +

    Does the webcam support Max Lens Mod?

    +
    +
    +
    +usb_3_1_compatible + +
    +
    +boolean +
    +

    Is the webcam USB 3.1 compatible?

    +
    +
    +
    +version + +
    +
    +integer +
    +

    Current webcam version

    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/webcam/version
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    {
      +
    • +"max_lens_support": true, +
    • +
    • +"usb_3_1_compatible": true, +
    • +
    • +"version": 0 +
    • +
    +}
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Start Webcam

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -27828,10 +38736,23 @@

    Webcam Stabilization

  • Hero 10 Black
  • Hero 9 Black
  • -
    query Parameters
    res
    integer
    Example: res=12
    query Parameters + + + + + + + + + + + + + +
    +res + +
    +
    +integer +
    + Example: res=12 +
    +
    Webcam Stabilization <td>Hero 12 Black, Hero 9 Black, Hero 10 Black, Hero 11 Black</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Webcam Resolution

    - - - +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Webcam Resolution

    +
    @@ -27866,7 +38786,8 @@

    Webcam Stabilization

    - + + @@ -27881,11 +38802,22 @@

    Webcam Stabilization

    -
    ID Supported Cameras
    4 480p Hero 10 Black, Hero 9 Black 1080p Hero 12 Black, Hero 9 Black, Hero 10 Black, Hero 11 Black
    -
    fov
    integer
    +
    +fov + +
    +
    +integer +
    Webcam Stabilization <td>Hero 12 Black, Hero 9 Black, Hero 10 Black, Hero 11 Black</td> </tr> </tbody></table> -" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg">

    Webcam Field-of-View

    - - - +" class="sc-iKOmoZ sc-cCzLxZ WVNwY jaVotg"> +

    Webcam Field-of-View

    +
    @@ -27925,7 +38856,8 @@

    Webcam Stabilization

    - + + @@ -27945,45 +38877,109 @@

    Webcam Stabilization

    + +
    ID Supported Cameras
    0 Wide Hero 12 Black, Hero 9 Black, Hero 10 Black, Hero 11 Black Linear Hero 12 Black, Hero 9 Black, Hero 10 Black, Hero 11 Black
    +
    +
    +
    +port +integer Default: 8554 Example: port=8556Port to use for Webcam Stream. Defaults to 8554 if not set +Not supported on +Hero 11 Black Mini +Hero 10 Black +Hero 9 Black
    +protocol +string Enum: “RTSP” “TS” Example: protocol=RTSPStreaming protocol to use. +Not supported on +Hero 11 Black Mini +Hero 11 Black +Hero 10 Black +Hero 9 Black
    -
    port
    integer
    Default: 8554
    Example: port=8556

    Port to use for Webcam Stream. Defaults to 8554 if not set

    -

    Not supported on:

    -
      -
    • Hero 11 Black Mini
    • -
    • Hero 10 Black
    • -
    • Hero 9 Black
    • -
    -
    protocol
    string
    Enum: "RTSP" "TS"
    Example: protocol=RTSP

    Streaming protocol to use.

    -

    Not supported on:

    -
      -
    • Hero 11 Black Mini
    • -
    • Hero 11 Black
    • -
    • Hero 10 Black
    • -
    • Hero 9 Black
    • +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + +
    -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url 'http://10.5.5.9:8080/gopro/webcam/start?res=12&fov=0&port=8556&protocol=RTSP'

    Response samples

    Content type
    application/json
    { }

    Stop Webcam

    +
    +
    curl --request GET \
    +  --url 'http://10.5.5.9:8080/gopro/webcam/start?res=12&fov=0&port=8556&protocol=RTSP'
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +

    +Stop Webcam

    +
    +

    HERO12 Black HERO11 Black HERO10 Black

    Supported Protocols:

    @@ -28013,19 +39010,86 @@

    Webcam Stabilization

  • Hero 10 Black
  • Hero 9 Black
  • -

    Responses

    Response Schema: application/json
    object

    Request samples

    curl --request GET \
    -  --url http://10.5.5.9:8080/gopro/webcam/stop

    Response samples

    Content type
    application/json
    { }
    +
    +
    +

    Responses

    +
    +
    +
    Response Schema: application/json +
    +
    +
    +object +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +

    Request samples

    +
    +
      + + + + + +
    +
    +
    +
    curl --request GET \
    +  --url http://10.5.5.9:8080/gopro/webcam/stop
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Response samples

    +
    +
    +
    +
    +Content type
    application/json
    +
    +
    +
    +
    { }
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - + - \ No newline at end of file + + + diff --git a/sitemap.xml b/sitemap.xml index 7f33ff93..bebeca3e 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,39 +2,39 @@ https://gopro.github.io/OpenGoPro/tutorials/connect-ble -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/send-ble-commands -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/parse-ble-responses -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/ble-queries -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/ble-protobuf -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/connect-wifi -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/send-wifi-commands -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/camera-media-list -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/tutorials/cohn -2024-04-19T12:03:54-07:00 +2024-04-19T13:41:07-07:00 https://gopro.github.io/OpenGoPro/contribution.html @@ -43,17 +43,96 @@ https://gopro.github.io/OpenGoPro/faq +https://gopro.github.io/OpenGoPro/http.html + + https://gopro.github.io/OpenGoPro/ https://gopro.github.io/OpenGoPro/tutorials/ +https://gopro.github.io/OpenGoPro/ble/features/access_points.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/cohn.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/control.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/hilights.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/live_streaming.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/presets.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/query.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/settings.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/features/statuses.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/genindex.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/ +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/operation-operation_index.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol/ble_setup.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol/data_protocol.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol/id_tables.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol/protobuf.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/protocol/state_management.html +2024-04-19T13:40:38-07:00 + + +https://gopro.github.io/OpenGoPro/ble/search.html +2024-04-19T13:40:38-07:00 + + https://gopro.github.io/OpenGoPro/ble_2_0.html -2024-04-19T12:03:32-07:00 +2024-04-19T13:37:14-07:00 https://gopro.github.io/OpenGoPro/http_2_0.html -2024-04-19T12:03:32-07:00 +2024-04-19T13:37:14-07:00 diff --git a/tutorials/ble-protobuf.html b/tutorials/ble-protobuf.html index d0e88e7d..5e39b0f8 100644 --- a/tutorials/ble-protobuf.html +++ b/tutorials/ble-protobuf.html @@ -34,7 +34,7 @@ - + @@ -438,7 +438,7 @@

    GoPro

    - +
    @@ -534,7 +534,7 @@

    Requirements

    Just Show me the Demo(s)!!

    -
      +
      • python @@ -545,7 +545,7 @@

        Just Show me the Demo(s)!!

      -
        +
        • Each of the scripts for this tutorial can be found in the Tutorial 5 @@ -688,7 +688,7 @@

          Protobuf Message Example

    -
      +
      • python @@ -699,7 +699,7 @@

        Protobuf Message Example

      -
        +
        • from tutorial_modules import proto
          @@ -733,7 +733,7 @@ 

          Protobuf Message Example

          ResponseGeneric object.

          -
            +
            • python @@ -744,7 +744,7 @@

              Protobuf Message Example

            -
              +
              • response_bytes = proto.ResponseGeneric(result=proto.EnumResultGeneric.RESULT_SUCCESS).SerializeToString()
                @@ -820,7 +820,7 @@ 

                Protobuf Response Parser

                -
                  +
                  • python @@ -831,7 +831,7 @@

                    Protobuf Response Parser

                  -
                    +
                    • @@ -868,7 +868,7 @@

                      Set Turbo Transfer

                      Feature ID, Action ID, and length bytes:

                      -
                        +
                        • python @@ -879,7 +879,7 @@

                          Set Turbo Transfer

                        -
                          +
                          • turbo_mode_request = bytearray(
                            @@ -906,7 +906,7 @@ 

                            Set Turbo Transfer

                            from the Set Turbo Mode Documentation: ResponseGeneric.

                            -
                              +
                              • python @@ -917,7 +917,7 @@

                                Set Turbo Transfer

                              -
                                +
                                • await client.write_gatt_char(request_uuid.value, turbo_mode_request, response=True)
                                  @@ -979,7 +979,7 @@ 

                                  Response Manager

                                  parsing of all response types:

                                  -
                                    +
                                    • python @@ -990,7 +990,7 @@

                                      Response Manager

                                    -
                                      +
                                      • @@ -1073,7 +1073,7 @@

                                        Examples of Each Response Type

                                        Now let’s perform operations that will demonstrate each response type:

                                        -
                                          +
                                          • python @@ -1084,7 +1084,7 @@

                                            Examples of Each Response Type

                                          -
                                            +
                                            • # TLV Command (Setting)
                                              @@ -1167,7 +1167,7 @@ 

                                              Good Job!

                                              -

                                              Updated:

                                              +

                                              Updated:

                                              diff --git a/tutorials/ble-queries.html b/tutorials/ble-queries.html index bdb7d4ce..1ae62885 100644 --- a/tutorials/ble-queries.html +++ b/tutorials/ble-queries.html @@ -34,7 +34,7 @@ - + @@ -438,7 +438,7 @@

                                              GoPro

                                              - +
                                              @@ -531,7 +531,7 @@

                                              Requirements

                                              Just Show me the Demo(s)!!

                                              -
                                                +
                                                • python @@ -542,7 +542,7 @@

                                                  Just Show me the Demo(s)!!

                                                -
                                                  +
                                                  • Each of the scripts for this tutorial can be found in the Tutorial 4 @@ -668,7 +668,7 @@

                                                    Setup

                                                    connecting BLE tutorial.

                                                    -
                                                      + -
                                                        +
                                                        • We have slightly updated the notification handler from the previous tutorial to handle a QueryResponse instead of @@ -830,7 +830,7 @@

                                                          Parsing a Query Response

                                                          storing each value in a hash map indexed by ID for later access.

                                                          -
                                                            +
                                                            • python @@ -841,7 +841,7 @@

                                                              Parsing a Query Response

                                                            -
                                                              +
                                                              • class QueryResponse(TlvResponse):
                                                                @@ -897,10 +897,10 @@ 

                                                                Parsing a Query Response

                                                                -
                                                                +
                                                                -
                                                                How many packets are query responses?
                                                                -
                                                                +
                                                                How many packets are query responses?
                                                                +

                                                                @@ -913,19 +913,19 @@

                                                                Parsing a Query Response

                                                                - - -
                                                                +
                                                                -
                                                                Which field is not common to all TLV responses?
                                                                -
                                                                +
                                                                Which field is not common to all TLV responses?
                                                                +

                                                                @@ -941,10 +941,10 @@

                                                                Parsing a Query Response

                                                                - - @@ -1000,7 +1000,7 @@

                                                                Individual Query Poll

                                                                First we send the query:

                                                                -
                                                                  +
                                                                  • python @@ -1011,7 +1011,7 @@

                                                                    Individual Query Poll

                                                                  -
                                                                    +
                                                                    • @@ -1039,7 +1039,7 @@

                                                                      Individual Query Poll

                                                                      QueryResponse class and extract the new resolution value.

                                                                      -
                                                                        +
                                                                        • python @@ -1050,7 +1050,7 @@

                                                                          Individual Query Poll

                                                                        -
                                                                          +
                                                                          • # Wait to receive the notification response
                                                                            @@ -1097,7 +1097,7 @@ 

                                                                            Individual Query Poll

                                                                            has changed:

                                                                            -
                                                                              +
                                                                              • python @@ -1108,7 +1108,7 @@

                                                                                Individual Query Poll

                                                                              -
                                                                                +
                                                                                • while resolution is not target_resolution:
                                                                                  @@ -1178,7 +1178,7 @@ 

                                                                                  Multiple Simultaneous Query Polls

                                                                                  FOV.

                                                                                  -
                                                                                    +
                                                                                    • python @@ -1189,7 +1189,7 @@

                                                                                      Multiple Simultaneous Query Polls

                                                                                    -
                                                                                      +
                                                                                      • RESOLUTION_ID = 2
                                                                                        @@ -1217,7 +1217,7 @@ 

                                                                                        Multiple Simultaneous Query Polls

                                                                                        We are also parsing the response to get all 3 values:

                                                                                        -
                                                                                          +
                                                                                          • python @@ -1228,7 +1228,7 @@

                                                                                            Multiple Simultaneous Query Polls

                                                                                          -
                                                                                            +
                                                                                            • response.parse()
                                                                                              @@ -1255,7 +1255,7 @@ 

                                                                                              Multiple Simultaneous Query Polls

                                                                                              They are then printed to the log which will look like the following:

                                                                                              -
                                                                                                +
                                                                                                • python @@ -1266,7 +1266,7 @@

                                                                                                  Multiple Simultaneous Query Polls

                                                                                                -
                                                                                                  +
                                                                                                  • Getting the current resolution, fps, and fov.
                                                                                                    @@ -1326,10 +1326,10 @@ 

                                                                                                    Query All

                                                                                                    Quiz time! 📚 ✏️

                                                                                                    -
                                                                                                    +
                                                                                                    -
                                                                                                    How can we poll the encoding status and the resolution setting using one query?
                                                                                                    -
                                                                                                    +
                                                                                                    How can we poll the encoding status and the resolution setting using one query?
                                                                                                    +

                                                                                                    @@ -1342,10 +1342,10 @@

                                                                                                    Query All

                                                                                                    - -