OK, I’m sorry for being totally ignorant about zmq but I need help. I’m trying to enable liveview and take a photo from python and I can’t get anything to happen. I am able to run the example script that listens for and prints messages so I think everything is setup correctly. I just don’t know how to format a request. I want to do something like this:
The message needs to be in JSON format.
For python, the easiest thing is to use the “json” import from the python standard library.
You can then construct the message as a python object, and convert it to JSON using the json.dumps() function.
But the return value just says “message_result” : False.
Ultimately, I’m looking for some software that will allow me to connect, identify the ‘CameraKey’ for connected cameras, enable liveview and then get the live view data for display in my application. Is this possible?