dmix icon indicating copy to clipboard operation
dmix copied to clipboard

Support for HTTPS audio stream

Open khogeland opened this issue 7 years ago • 1 comments

I am trying to set up MPD behind a SSL-enabled proxy. Unfortunately, the prefix http:// is hard-coded:

    /** Get the current server streaming URL. */
    private String getStreamSource() {
        return "http://" + mConnectionInfo.streamServer + ':'
                + mConnectionInfo.streamPort + '/' + mConnectionInfo.streamSuffix;
    }

https://github.com/abarisain/dmix/blob/1618ad4bdffd7bb80fe987d03b999d17b1bea8ee/MPDroid/src/main/java/com/namelessdev/mpdroid/service/StreamHandler.java#L276

Can this be configurable? In fact, why is this made up of three different settings, instead of letting the user specify the full address to their stream?

khogeland avatar Feb 14 '17 01:02 khogeland

Hi! This is already implemented in branch 'develop'.

sludgefeast avatar Feb 14 '17 07:02 sludgefeast