KonradIT / gopro-py-api

Unofficial GoPro API Library for Python - connect to GoPro via WiFi.
MIT License
1.38k stars 211 forks source link

GoPro Max 360 Images and Videos #205

Closed emaadparacha closed 1 year ago

emaadparacha commented 1 year ago

Thank you for this! Is it possible to take 360 images and videos on the Max and toggle between Hero mode and 360 mode? I couldn't find anything in the code for that, but I could be mistaken.

KonradIT commented 1 year ago
gpMax = GoProCamera.GoPro()
gpMax.gpControlSet(constants.Lens.MODE, constants.Lens.Mode.Single) # Set to HERO Mode
gpMax.take_photo()
gpMax.gpControlSet(constants.Lens.MODE, constants.Lens.Mode.Dual) # Set to 360 mode
gpMax.take_photo()
emaadparacha commented 1 year ago

Thank you Konrad! That works!