Fixed friendly name for FLV, JSON and RAW

This commit is contained in:
Thulinma 2019-01-06 14:54:37 +01:00
parent 4517e19786
commit 104e5ed550
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ namespace Mist {
void OutJSON::init(Util::Config * cfg){
HTTPOutput::init(cfg);
capa["name"] = "JSON";
capa["name"] = "JSON over HTTP";
capa["friendly"] = "JSON over HTTP";
capa["desc"] = "Pseudostreaming in JSON format over HTTP";
capa["url_match"] = "/$.json";
capa["codecs"][0u][0u].append("@+meta");

View file

@ -6,7 +6,7 @@ namespace Mist {
void OutProgressiveFLV::init(Util::Config * cfg){
HTTPOutput::init(cfg);
capa["name"] = "FLV";
capa["name"] = "Flash progressive over HTTP (FLV)";
capa["friendly"] = "Flash progressive over HTTP (FLV)";
capa["desc"] = "Pseudostreaming in Adobe Flash FLV format over HTTP";
capa["url_rel"] = "/$.flv";
capa["url_match"] = "/$.flv";

View file

@ -32,7 +32,7 @@ namespace Mist {
void OutRaw::init(Util::Config * cfg){
Output::init(cfg);
capa["name"] = "RAW";
capa["name"] = "DTSC over stdout";
capa["friendly"] = "DTSC over stdout";
capa["desc"] = "Pseudostreaming in DTSC format over standard output";
capa["deps"] = "";
capa["required"]["streamname"]["name"] = "Stream";