Smart Remote: Video not supported on a5000 - workaround attached
See original GitHub issueHaving just purchased an A5000 I was a little disappointed that the movie function is not available via the Sony Remote API.
So I poked around and found this in “com/sony/imaging/app/srctrl/util/ModelInfo.java”
public boolean isMovieRecSupported() {
if (!Environment.isMovieAPISupported()) {
return false;
}
if (this.modelName == null) {
Log.e(TAG, "ModelInfo is NULL");
return false;
} else if (movieRecNotSupportedModelName.contains(this.modelName)) {
return false;
} else {
if ("DSC-15-03".equals(ScalarProperties.getString("ui.model.mame"))) {
return false;
}
return true;
}
}
and this
private static final List<String> movieRecNotSupportedModelName = Collections.unmodifiableList(new C01921());
private String modelName = null;
static class C01921 extends ArrayList<String> {
C01921() {
add("ILCE-7");
add("ILCE-7R");
add("ILCE-5000");
add("ILCE-6000");
}
}
Now, I’m just pissed!
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
The Live-View Remote cannot be connected to the camera via ...
The Live-View Remote control will not connect to a camera if an error message is displayed on the remote's LCD screen.
Read more >Zhiyun Support - If your SONY camera cannot connect to the ...
The above fix works for my A6000 but movie feature is not enabled with Smart Remote Embedded. It will only shoot stills. 2...
Read more >Sony Smart Remote Control Update 3.10 - Brian Smith
Sorry but WiFi apps including Smart Remote are not compatible with wired USB tethering and you can only connect one WiFi device at...
Read more >FieldMonitor: Support - Adam Wilt
A Wireless Video Monitor for iPhone. ... Sony A7, A99, A6000, A5000, NEX series, and earlier cameras do not support remote control or ......
Read more >HT-A5000/A5000M | TV remote control does not work.
TV remote control does not work. This problem might be solved by enabling the IR repeater function.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So what happens if I just change the model name?
Yep, and remote movie function works…
mungewell,
Hello. I was wondering if you could help me with telnet into my Sony a6000 to change the device ID? I’ve ran the GUI and installed a few tweaks, however I’m trying to possibly unlock the ‘live view’ on the a6000 as you did with the a5000.
I can get remote view for the a6000 to work on my phone, however it does not seem to work inside of Sony’s Imaging Edge software. My goal is to basically use it as a webcam (without external dongles) if I can unlock the live view.
I realize there are better options, but I have this cam sitting here and if I’d love to use it if I could instead of spending another $100+ on a webcam that is very difficult to find right now.
Thanks.
-edit- I realize this is an old post.