diff --git a/libarmbox/playback_gst.cpp b/libarmbox/playback_gst.cpp index 079074e..4108a39 100644 --- a/libarmbox/playback_gst.cpp +++ b/libarmbox/playback_gst.cpp @@ -401,6 +401,10 @@ bool cPlayback::Start(char *filename, int /*vpid*/, int /*vtype*/, int /*apid*/, { isHTTP = true; } + else if(!strncmp("https://", filename, 8)) + { + isHTTP = true; + } else if(!strncmp("file://", filename, 7)) { isHTTP = false;