From 7bbec5323e4f6a6ef62502b4fc2c7e2ee689728f Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 7 Jun 2017 15:02:50 +0200 Subject: [PATCH] HLS input can now be set to always on --- src/input/input_hls.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input/input_hls.cpp b/src/input/input_hls.cpp index 646a735d..b1fc1fe3 100644 --- a/src/input/input_hls.cpp +++ b/src/input/input_hls.cpp @@ -269,6 +269,9 @@ namespace Mist{ capa["decs"] = "Enables HLS Input"; capa["source_match"].append("/*.m3u8"); capa["source_match"].append("http://*.m3u8"); + //These two can/may be set to always-on mode + capa["always_match"].append("/*.m3u8"); + capa["always_match"].append("http://*.m3u8"); capa["priority"] = 9ll; capa["codecs"][0u][0u].append("H264");