question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Smart Remote: Video not supported on a5000 - workaround attached

See original GitHub issue

Having 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:open
  • Created 6 years ago
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
mungewellcommented, Dec 20, 2017

So what happens if I just change the model name?

$ telnet 192.168.1.102
Trying 192.168.1.102...
Connected to 192.168.1.102.
Escape character is '^]'.

BusyBox v1.13.4 (2012-07-17 15:11:04 JST) built-in shell (ash)
Enter 'help' for a list of built-in commands.

/ # bk.elf r 0x003e0005
id:003e0005 size:16 data:
49,4C,43,45,2D,35,30,30,30,00,00,00,00,00,00,00,
/ # bk.elf w 0x003e0005 49 4C 43 45 2D 35 30 30 31
id:003e0005 size:16 data:49, 4C, 43, 45, 2D, 35, 30, 30, 31, 00, 00, 00, 00, 00, 00, 00, 
/ # bk.elf r 0x003e0005
id:003e0005 size:16 data:
49,4C,43,45,2D,35,30,30,31,00,00,00,00,00,00,00,

Yep, and remote movie function works…

0reactions
tengine525commented, Jun 8, 2020

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found