Skip to content
forked from petabyt/camlib

Picture Transfer Protocol (PTP) Library for USB and WiFi cameras

License

Notifications You must be signed in to change notification settings

MerrickZ/camlib

 
 

Repository files navigation

camlib

This is a portable PTP/USB library written in C99. This isn't a fork of gphoto2, libptp, or libmtp.
This is a complete rewrite from the ground up, and is written to be maintainable and platform independent.

You can read the latest up-to-date documentation here.

Design

  • Data parsing, packet building, and packet sending/recieving is all done in a single buffer
  • Core library will perform almost no memory allocation, to reduce complexity
  • No platform specific code at the core
  • No macros, only clean C API - everything is a function that can be accessed from other languages
  • Reverse-engineering isn't done just through packet analysis - it's also done by reimplementing the camera PTP server, which is important for reliability and regression testing.

Checklist

  • Complete working implemention of PTP as per ISO 15740
  • Working Linux, Android, and Windows backends
  • JSON bindings for high level languages
  • Real time camera previews (EOS, Magic Lantern)
  • Implement most EOS/Canon vendor OCs
  • ISO PTP/IP WiFi implementation
  • Fuji WiFi and USB support
  • Lua bindings
  • Javascript bindings (browser, BunJS)
  • Sony support

Sample

Get device info:

#include <camlib.h>

int main() {
	struct PtpRuntime r;
	ptp_generic_init(&r);

	if (ptp_device_init(&r)) {
		puts("Device connection error");
		return 0;
	}

	struct PtpDeviceInfo di;

	char buffer[2048];
	ptp_get_device_info(&r, &di);
	ptp_device_info_json(&di, buffer, sizeof(buffer));
	printf("%s\n", buffer);

	ptp_device_close(&r);
	ptp_generic_close(&r);
	return 0;
}

Calling a custom opcode:

// Send a command, and recieve packet(s)
struct PtpCommand cmd;
cmd.code = 0x1234;
cmd.param_length = 3;
cmd.params[0] = 420;
cmd.params[1] = 420;
cmd.params[2] = 420;
return ptp_generic_send(r, &cmd);

// Send a command with data payload
struct PtpCommand cmd;
cmd.code = 0x1234;
cmd.param_length = 1;
cmd.params[0] = 1234;
uint32_t dat[2] = {123, 123};
return ptp_generic_send_data(r, &cmd, dat, sizeof(dat));

Explore the filesystem:

struct UintArray *arr;
int rc = ptp_get_storage_ids(&r, &arr);
int id = arr->data[0];

rc = ptp_get_object_handles(&r, id, PTP_OF_JPEG, 0, &arr);
arr = ptp_dup_uint_array(arr);

for (int i = 0; i < arr->length; i++) {
	struct PtpObjectInfo oi;
	ptp_get_object_info(&r, arr->data[i], &oi);
	printf("Filename: %s\n", oi.filename);
}

free(arr);

License

Camlib is licensed under the Apache License 2.0.
lua-cjson: http://tools.ietf.org/html/rfc4627 (MIT License)

About

Picture Transfer Protocol (PTP) Library for USB and WiFi cameras

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.5%
  • Other 1.5%