NEX-6 UDP Client
table:対訳
スマートフォン転送 View on Smartphone
パソコン保存 Send to Computer
Camera Remote API は多分関係ない
https://web.archive.org/web/20150702015326/https://developer.sony.com/develop/cameras/
https://web.archive.org/web/20140714220657/http://dl.developer.sony.com/cameras/sdks/CameraRemoteAPIbeta_SDK_1.60.zip
https://stackoverflow.com/questions/21340286/windows-compatibility-with-the-sony-camera-remote-api
https://www.personal-view.com/faqs/sony-hack/server
10.0.0.1
Requests
first: GET http://10.0.0.1:64321/upnp/control/ContentDirectory
second: 何度かPOSTする必要あり。1#Browseの例:
code:sh
curl -v -X POST "http://10.0.0.1:64321/upnp/control/ContentDirectory" \
-H 'Content-Type: text/xml; charset=utf-8' \
-H 'SOAPAction: "urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' \
--data-binary @- <<'EOF'
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:Browse xmlns:u="urn:schemas-upnp-org:service:ContentDirectory:1">
<ObjectID>0</ObjectID>
<BrowseFlag>BrowseDirectChildren</BrowseFlag>
<Filter>*</Filter>
<StartingIndex>0</StartingIndex>
<RequestedCount>100</RequestedCount>
<SortCriteria></SortCriteria>
</u:Browse>
</s:Body>
</s:Envelope>
EOF