@jfg @DusX @Woland @liminal_andy
So, I wanted to try the PoseOSC to see what it could do. This required manually configuring the camera because I have several camera drivers installed and it was picking the wrong one. Here's how to fix that on macOS:
Choose "About this Mac" and click "System Report"Go to the sections labeled "Cameras". Find your camera and look for the item labeled "Unique ID". On my computer, for the internal camera, it was something like 0x8033000455aca514. Right click the PoseOSC app and go into
Contents >
Resources >
app. There you will find the file settings.jsonAt the bottom you'll find the "cameraConfig" item. You will want to change it as shown in the code snippet below. You need to replace device_id_found_in_system_report with the ID you found in step 2 above.Reboot PoseOSC and you should now get the camera you want.
CODE SNIPPET
"cameraConfig":{
"deviceId":"device_id_found_in_system_report",
"width": 640,
"height":480
}
That said, my quick trial showed that the response was quite jittery. But also I was not in an optimum environment. If others give this a try, I'd be curious to hear how it worked for you.
Best Wishes,
Mark