diff --git a/src/process/process_exec.h b/src/process/process_exec.h index 9e98ca28..ae806e40 100644 --- a/src/process/process_exec.h +++ b/src/process/process_exec.h @@ -46,7 +46,7 @@ namespace Mist{ streamName = opt["sink"].asString(); if (!streamName.size()){streamName = opt["source"].asString();} Util::streamVariables(streamName, opt["source"].asString()); - Util::Config::streamName = opt["source"].asString() + "➡️" + streamName; + Util::Config::streamName = opt["source"].asString() + "→" + streamName; } bool needsLock(){return false;} bool isSingular(){return false;} diff --git a/src/process/process_ffmpeg.cpp b/src/process/process_ffmpeg.cpp index 37ffe4ed..05a50291 100644 --- a/src/process/process_ffmpeg.cpp +++ b/src/process/process_ffmpeg.cpp @@ -389,7 +389,7 @@ namespace Mist{ streamName = opt["sink"].asString(); if (!streamName.size()){streamName = opt["source"].asString();} Util::streamVariables(streamName, opt["source"].asString()); - Util::Config::streamName = opt["source"].asString() + "➡️" + streamName; + Util::Config::streamName = opt["source"].asString() + "→" + streamName; } std::string EncodeOutputEBML::getTrackType(int tid){return M.getType(tid);} diff --git a/src/process/process_livepeer.cpp b/src/process/process_livepeer.cpp index 894038a0..4ec8ab3e 100644 --- a/src/process/process_livepeer.cpp +++ b/src/process/process_livepeer.cpp @@ -227,7 +227,7 @@ namespace Mist{ streamName = opt["sink"].asString(); if (!streamName.size()){streamName = opt["source"].asString();} Util::streamVariables(streamName, opt["source"].asString()); - Util::Config::streamName = opt["source"].asString() + "➡️" + streamName; + Util::Config::streamName = opt["source"].asString() + "→" + streamName; preRun(); }; virtual bool needsLock(){return false;}