How to download RAW files from A7 API?

寵の児 提交于 2019-12-03 09:04:57

After installing v4 of Smart Remote Control on A7ii I can now list the contents of SD Card and download RAW files and image previews. The sequence is roughly

1 move camera to recording mode (API does not work before this)

POST http://192.168.122.1:8080/sony/camera
{ "method": "startRecMode",
"params": [],
"id" : 1,
"version" : "1.0"}

2 move camera to contents transfer

POST http://192.168.122.1:8080/sony/camera
{ "method": "setCameraFunction",
"params": ["Contents Transfer"],
"id" : 1,
"version" : "1.0"}

3 list the 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 is new Camera Remote SDK v2.20

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!