sony

QX1, Manual Shoot mode (M) via API

不问归期 提交于 2020-01-01 00:49:10
问题 Very need M (Manual) Exposure mode on QX1. I was searching for an answer to the my question, but don't found the exact answer. Can I choose the full manual Exposure mode on QX1 via API? 回答1: No, you can't set Manual mode with the current firmware on a QX1 camera. You are supposed to use the getAvailableExposureMode or getSupportedExposureMode API methods to retrieve the supported modes (and optionally display them to the user), then use one of only those modes in setExposureMode . But Manual

Sony, Camera Remote API

与世无争的帅哥 提交于 2019-12-30 12:20:55
问题 I have a Sony Alpha 5000 ILCE-5000 camera and I've been working on a web project with it. I haven't had any problem integrating that camera using JSON through wifi, but I don't want to depend on wifi camera. Is it possible for my web project to connect to the camera through USB like a remote camera control program? I read the documentation but it's related to how to connect the camera via wifi using JSON to an Android app. 回答1: The Camera Remote API is based on HTTP and JSON like you

Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY : smartwatch app

落花浮王杯 提交于 2019-12-25 19:03:45
问题 I want to make a smartwach app. I used the instructions on this site: http://developer.sonymobile.com/knowledge-base/tutorials/android_tutorial/how-to-create-an-app-extension-for-sony-smartwatch-2/ I want to run the app in my phone with the usb cable, like in the website above. This the output from the console: [2014-04-06 09:54:21 - SmallAppSample] ------------------------------ [2014-04-06 09:54:21 - SmallAppSample] Android Launch! [2014-04-06 09:54:21 - SmallAppSample] adb is running

Sony QX10 - Remote API SDK

半城伤御伤魂 提交于 2019-12-25 12:14:42
问题 Is it possible to control the Sony QX10/100, using the Sony’s Camera Remote API SDK from C++ Windows program? Thank you for your patience and time... 回答1: Yes, that should be possible. See https://developer.sony.com/develop/cameras/ for more details. 回答2: I answered your question on this related other question, maybe you would want to check it out ? Windows compatibility with the Sony Camera Remote API 回答3: The API works with any device on any OS and programming language, it's just http calls

Sony QX10 - Remote API SDK

筅森魡賤 提交于 2019-12-25 12:14:31
问题 Is it possible to control the Sony QX10/100, using the Sony’s Camera Remote API SDK from C++ Windows program? Thank you for your patience and time... 回答1: Yes, that should be possible. See https://developer.sony.com/develop/cameras/ for more details. 回答2: I answered your question on this related other question, maybe you would want to check it out ? Windows compatibility with the Sony Camera Remote API 回答3: The API works with any device on any OS and programming language, it's just http calls

Cannot immediately connect to the server when android device is on sleep even though my app gets the PARTIAL_WAKE_LOCK at PowerManager (Sony Xperia)

岁酱吖の 提交于 2019-12-25 06:37:11
问题 [Abstract of my android app] My app monitors the server at fixed intervals (30 seconds). [Results(Issue)] 18[h] 00[m] 00[s] server check ok. 18[h] 00[m] 30[s] server check ok. 18[h] 03 [m] 14 [s] server check ok. <= This is issue. My app should check the server at 18:01:00. My app cannot connect the server at fixed intervals at Sony xperia. [Expected results] 18[h] 00[m] 00[s] server check ok. 18[h] 00[m] 30[s] server check ok. 18[h] 01 [m] 00 [s] server check ok. [About my program] My app

android dev : is any specific multithreading coding with Sony Xperia?

风流意气都作罢 提交于 2019-12-25 02:46:54
问题 my android project ( sensors capture , multithreads processing, and output writing into csv file ) is working fine on Nexus and other devices ( 4.4 kitkat, 4.3 / 4.2 Jellybean) ... but when testing it on Sony Xperia Z, it crashes... tip: it doesn't crash running in Debugging Mode .... I guess it's related to a multithreading issue, as dat are captured, processed and written into the output csv file , and the crash happens after running few secs... is anything specific to Sony implementation I

Unable to find BLE device when type is STEP_COUNT_DELTA

♀尐吖头ヾ 提交于 2019-12-25 01:44:52
问题 I am using the Google fit API to connect with a Sony Smartband2 band. All I am trying to do right now, is scan and claim a device. (Following This Fitness ble guide ) I can find and claim my device, when I set the data type as TYPE_HEART_RATE_BPM. However, when I set it to TYPE_STEP_COUNT_DELTA or TYPE_STEP_COUNT_CUMULATIVE, I am unable to find the device. What maybe the issue? I know that later I will also need to use the Sensors API, but to find the device, I do not need it, right? To build

Sony Camera API Wifi, is it possible to connect the camera as a wifi client to an access point?

删除回忆录丶 提交于 2019-12-24 12:03:11
问题 The device that will act as the remote-control(Ipad) for the camera (QX10) has to be connected to the internet to upload or sync photos as they are taken from the remote camera. The challenge is that the ipad has to connect to the QX10 as a client. Is is possible to have the QX10 and ipad connect to the same access point and they would still communicate? so ideally can the QX10 be a client and not the access point on the network? 回答1: With the Sony QX1 the device is only able to act as a WiFi

Android webview javascript seems not working on Sony Xperia

自作多情 提交于 2019-12-24 07:18:09
问题 I have tested my app on HTC and MI2 and some samsung devices, and it worked fine. However on Sony devices, it is not working at all. Java Code: mWebView.getSettings().setJavaScriptEnabled(true); mWebView.addJavascriptInterface(new TestInterface(), "jsjava"); public class TestInterface { @JavascriptInterface public void login() { Log.d("TEST", "js call java ok"); } } Html and js code: <script> function login(response){ window.jsjava.login(); } </script> <div class="land"><a href="javascript