sony

Can I connect Sony HDR-AS100 to existing access point

耗尽温柔 提交于 2019-12-19 09:33:55
问题 I would like to use the camera API to access the live view of a Sony HDR-AS100V camera. I also need my WIFI adaptor to connect to an existing access point. I cannot to the AP provided by the camera. Can I connect the camera to an external access point and access the API over this network connection? 回答1: This functionality is not officially supported!! HDR-AS100V can connect to an external Wi-Fi access point and be controlled from your app using Camera Remote API over that connection. But

How to add a notification badge/count to application icon on Sony Xperia devices?

怎甘沉沦 提交于 2019-12-17 02:29:25
问题 With Sony's Xperia Home, certain apps have the ability to display a count bubble or badge on the app icon. Facebook and Facebook Messenger both do this, as well as the built in Email app. This has been solved for Samsung's launcher, but I have not come across any documentation on how to do it for Sony's launcher. How can it be done? 回答1: After having seen Daniel Ochoa's solution for Samsung's launcher, which uses a BadgeProvider to handle the badges, I set out to do the same for Sony's Xperia

Is there a way to send multiple wifi camera a signal to take a picture at the same time?

心不动则不痛 提交于 2019-12-13 03:43:09
问题 I have 20 wifi cameras that are compatible with the camera remote api (all identical). Using the API, is it possible to trigger all of them over wifi to take a picture at the same time? I would basically like to trigger all 20 over wifi and then fetch the pictures from all of them. So any suggestions for how to do that would be appreciated. Mainly just triggering them together would be a great start. Also, is it possible to send commands to the camera with the API when the camera is connected

Get files from multiple Sony A7RII Cameras with the Sony Camera Remote API

此生再无相见时 提交于 2019-12-12 06:54:30
问题 I would like to download images from 20 Sony A7RII cameras, to a computer, without having to get the memory cards from the 20 cameras. I do not need to synchronize the triggering, I know this is not possible via software. I do not need the discovery service, I can figure the ip addresses myself. I need to be able to read the image list and download images. Even better would be to get a notification when new images are available. Is the Sony SDK limited to a single camera? Is there really only

Download postview image in original size

感情迁移 提交于 2019-12-12 06:12:29
问题 Trying to download the postview image in original size I'm getting an error on setting "Postview image size" parameter to "Original". Downloading (and setting) the postview image with "2M" size is working well. Are there any undocumented limitations on downloading original sized postview images? My camera model is ILCE 5100 with latest firmware installed. Edit: json request: {'method': 'setPostviewImageSize', 'params': ["Original"], 'id': 1, 'version': '1.0'} response: {'id': 1, 'error': [1,

IOException Unable to resolve host,No address associated with hostname

半城伤御伤魂 提交于 2019-12-12 04:24:38
问题 I am working on Sony Remote camera which is connected using WiFi.I need to click a picture using a camera and then upload it to my FTP server which is in another activity.for than I need to disconnect my camera wifi and connect to the another wifi network or mobile data.when I connect to the another wifi/mobile data and going to upload the picture on FTP server I got this error. IOException Unable to resolve host No address associated with hostname When a close application and start again,

Lifelog API Explorer: Authorization request could not be completed

坚强是说给别人听的谎言 提交于 2019-12-12 02:56:59
问题 I'd like to use the lifelog api for my own webapplication to store my own data and adapt it to my needs. I tried looking into it but unfortunately I'm not able to get the api explorer (to see how it works) to work. When I try to use the Authenthication OAuth2 and log in to my google account it constantly gives me the following error: Authorization request could not be completed. Reason: Access token request to API provider failed. If the problem persists, please contact Customer Support.

Tap on SmartWatch screen in code

末鹿安然 提交于 2019-12-12 01:33:11
问题 When I touch the SmartWatch screen it wakes up from dimmed state. How can I in code do the same thing? 回答1: Refer to section 6.2 of the "SmartExtension API Specification" document that comes with the SmartExtension SDK: Extensions implementing the Control API also have the possibility to control the state of the accessory display. The display can be controlled via the CONTROL_SET_SCREEN_STATE_INTENT. As part of the Intent, you also need to specify what state you want to set. The following

Sony Smartwatch - update text in multiple TextViews simultaneously

故事扮演 提交于 2019-12-12 01:28:08
问题 I would like to update the text in the two TextViews on the Watch simultaneously. main_layout.xml <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/text1" android:layout_width="220px" android:layout_height="50px" /> <TextView android:id="@+id/text2" android:layout_width="220px" android:layout_height="50px" /> </LinearLayout> Now I'm doing it this way: sendText(R.id.text1, "Hello world 1"); sendText(R.id.text2, "Hello world 2");

Sony RemoteAPI delays after starting Liveview

一世执手 提交于 2019-12-12 01:21:52
问题 Good worktime! I'm writing C# warp around Sony Remote API, using Android test app as an example. There became a problem with Liveview. I start liveview streaming by the API method "startLiveview". Liveview data consumer works in a separate thread and it simply passes through frames if there's no time to draw them all (just like in the test app, as far as i understand). However, after the startLiveview method is processed and fetching stream is started, the camera experience some difficulties