camera - How to download RAW files from A7 API? -
i working on simple desktop tethering app a7 using wi fi based json api.
https://developer.sony.com/develop/cameras/
all works except cannot download raw files. can tweak things full size jpg file seems served file system on camera. example following url seems address jpg sd card.
http://mya7camera.info:8080/postview/memory/1000/dcim/100msdcf/dsc01353.jpg
this url coming acttakepciture
call (i had give camera real url satisfy stackoverflow posting requirements. in reality camera ip addresss there). although camera set deliver raw+jpeg
, raw
file indeed written card, file not accessible download. tried changing extension.
i tried plugging camera usb while working through api able detect new files via filesystem monitoring , download them while controlling camera via wifi - no luck - usb connection terminates remote camera control app.
as cannot set camera raw mode while in remote control app.
i browsed "guide" , "accesscontrol" api facets these not seem yield file download locations....
any clues or ideas how hands on raw files? great have tethered shooting via wifi , lightroom, no?
after installing v4 of smart remote control on a7ii can list contents of sd card , download raw files , image previews. sequence roughly
1 move camera recording mode (api not work before this)
post http://192.168.122.1:8080/sony/camera { "method": "startrecmode", "params": [], "id" : 1, "version" : "1.0"}
2 move camera contents transfer
post http://192.168.122.1:8080/sony/camera { "method": "setcamerafunction", "params": ["contents transfer"], "id" : 1, "version" : "1.0"}
3 list images
http://192.168.122.1:8080/sony/avcontent {"method": "getcontentlist", "params": [{ "uri": "storage:memorycard1", "stidx": 0, "cnt": 500, "view": "flat", "sort": ""}], "id": 1, "version": "1.3"}
there new camera remote sdk v2.20
Comments
Post a Comment