Merge branch 'development' into LTS_development
This commit is contained in:
commit
b99d8cf330
3 changed files with 3 additions and 3 deletions
|
@ -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");
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue