Skip to main content

APIs to interact with insta360 cameras.

Project description

insta360-api

This python package implements both RTMP (Real-Time Messaging Protocol) and OSC (Open Spherical Camera) protocols for interacting with Insta360 cameras.

While OSC is an open standard for controlling spherical cameras, RTMP is a proprietary protocol used by Insta360 cameras for many of its core functionalities. This package aims to provide a unified interface for interacting with Insta360 cameras by reverse engineering the proprietary RTMP protocol and implementing the open OSC protocol.

The RTMP protocol is implemented by reverse engineering the communication between Insta360 cameras and the official Android app. OSC is implemented with respect to the official OSC API v2 specification.

More info here: Insta360: WiFi protocol reverse engineering.

Compatibility

While the package is developed and tested with Insta360 X3 and X4, it should work with other Insta360 cameras as well. If you find any compatibility issues, please open an issue. PRs are also welcome to improve the compatibility with other Insta360 cameras.

Here is a list all the functions that are implemented and tested and their compatibility with different Insta360 cameras:

RTMP Module:

Functionality Implemented X3 X4
sync_local_time_to_camera
get_camera_info
take_picture
get_camera_files_list
set_normal_video_options
get_normal_video_options
start_capture
stop_capture
get_capture_current_status
start_live_stream
start_preview_stream
stop_live_stream
get_camera_type
get_serial_number
get_exposure_settings
set_exposure_settings
set_capture_settings
get_capture_settings
get_camera_uuid
set_time_lapse_options
start_time_lapse
stop_time_lapse
is_camera_connected
get_battery_status
get_storage_state

OSC Module:

Functionality Implemented X3 X4
list_files
delete_files
download_file
take_picture
process_picture
start_capture
stop_capture
get_live_preview
set_options
get_options
reset
switch_wifi
upload_file

Installation

Currently, the package is not available on PyPi. To install the package, clone the repository and run the following command:

  1. Make sure poetry is installed.
  2. Run: poetry config virtualenvs.in-project true
  3. Ensure you are using supported python version (3.8 and above): poetry env use 3.8
  4. Run: poetry install

Usage

First make sure you are connected to the camera's WiFi network.

The package provides two modules, rtmp and osc, for interacting with Insta360 cameras using RTMP and OSC protocols, respectively. OSC being an open standard, could be considered as more reliable and stable compared to RTMP. However, RTMP provides some functionalities that are not available in OSC. Depending on your use case, you can choose to use either of the modules.

Here is an example of how to use the rtmp module:

import time
from insta360.rtmp import Client

# Create an RTMP client
client = Client()

# Start capturing video
client.start_capture()
time.sleep(10)

# Stop capturing video
client.stop_capture()
time.sleep(5)

# Close the client
client.close()

And here is an example of how to use the osc module:

import time
from insta360.osc import Client

# Create an OSC client
client = Client()

# List all files on the camera
files = client.list_files()
print(files)

# Download the first file
file = files.results.entries[0]
self.osc_client.download_file(file.fileUrl, f"./{file.name}")

# Delete the first file
client.delete_files([file.fileUrl])

Connecting to the WiFi

Start your camera and soon after you will see a WiFi network with the name YOUR_CAMERA_MODEL_NAME.OSC. Connect to this network using the password 88888888. If you are using Insta360 X4, the password is randomly generated during the device setup. In this case, you can find the password on your camera by navigating to Settings > WiFi Settings > Password.

Although the security issue of having a fixed password is no longer present in recent models like the Insta360 X4 and you can change the wifi password on cameras like this Insta360 X3, this is an huge security hole for older models.

Any host in the nearby can connect to these older models as soon they are turned on; once estabilished the connection they can also do a telnet into the Insta360's GNU/Linux operating system as root (the IP address of the camera is 192.168.42.1) and do whaterver they want, even to damage permanently (brick) the camera.

The Protobuf problem

The messages exchanged from the Android app and the camera use the Protocol Buffers, which is an open standard by Google.

Unfortunately the protobuf messages are not self-describing; that is, there is no way to tell the names, meaning, or full datatypes of exchanged messages without an external specification. To write an understandable source code you need to extract the specific language description files from a compiled binary file, e.g. a library from the Android app. To run the insta360.py module you need such files compiled for Python. Follow the link at the bottom of this page to get more instructions.

The insta360_cmd program

The insta360_cmd is a somewhat working example using the insta360.py module. It has the basic functionality required for a remote control: start and stop recording, get livestream or preview stream. You can run it from an Android smartphone if you install the Termux app and the required Python libraries.

We are working to make installing this program easier, but for now you can clone the repository and run the following command to install the required packages:

pip3 install -r ./requirements.txt

Then, run the following command to run the program:

# Previw and capture simultaneously
python3 insta360_cmd -o ./output/dump.mp4 -c preview -c capture

# Get live stream
python3 insta360_cmd -o ./output/dump.mp4 -c livestream

# Start recording
python3 insta360_cmd -c capture

# Know all the options
python3 insta360_cmd -h

insta360_cmd screenshot

Docs

Documentation is auto-generated generated with MkDocs. While contributing, make sure to follow google docstring conventions when documenting the code.

To generate the docs, first install the required packages:

pip3 install -r ./requirements/requirements.docs.txt

Then, run the following command to run the server:

mkdocs serve

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

insta360-0.1.0.tar.gz (77.9 kB view details)

Uploaded Source

Built Distribution

insta360-0.1.0-py3-none-any.whl (153.7 kB view details)

Uploaded Python 3

File details

Details for the file insta360-0.1.0.tar.gz.

File metadata

  • Download URL: insta360-0.1.0.tar.gz
  • Upload date:
  • Size: 77.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.6 Linux/6.5.0-27-generic

File hashes

Hashes for insta360-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4a3ef5649f92b14dbe8079b7dcf8438438579551cbbbe833a154b5a977a4487d
MD5 fea92fb622a5e0294edbc1f2a39df94f
BLAKE2b-256 f9fddfe5b8d331fc381ba6a797bf9764f9e1ed27a14a0bfe3d7bd01c9ad217a0

See more details on using hashes here.

File details

Details for the file insta360-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: insta360-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.6 Linux/6.5.0-27-generic

File hashes

Hashes for insta360-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2e72ee86dd8775f920c6027c217d26921e48dd62422837bcaa8cacc3813924ab
MD5 7412b6d537ed8faeccf8f3eaf3e613d3
BLAKE2b-256 0135a9102b1f8525cbde493de29834f936157c09e31631ea746e721a3cd948f8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page