Changed default buffer size to 50s from 30s

This commit is contained in:
Thulinma 2015-03-06 12:48:23 +01:00
parent 260a0ceb68
commit 96328cd035

View file

@ -20,13 +20,13 @@ namespace Mist {
option["long"] = "buffer"; option["long"] = "buffer";
option["short"] = "b"; option["short"] = "b";
option["help"] = "DVR buffer time in ms"; option["help"] = "DVR buffer time in ms";
option["value"].append(30000LL); option["value"].append(50000LL);
config->addOption("bufferTime", option); config->addOption("bufferTime", option);
capa["optional"]["DVR"]["name"] = "Buffer time (ms)"; capa["optional"]["DVR"]["name"] = "Buffer time (ms)";
capa["optional"]["DVR"]["help"] = "The target available buffer time for this live stream, in milliseconds. This is the time available to seek around in, and will automatically be extended to fit whole keyframes."; capa["optional"]["DVR"]["help"] = "The target available buffer time for this live stream, in milliseconds. This is the time available to seek around in, and will automatically be extended to fit whole keyframes.";
capa["optional"]["DVR"]["option"] = "--buffer"; capa["optional"]["DVR"]["option"] = "--buffer";
capa["optional"]["DVR"]["type"] = "uint"; capa["optional"]["DVR"]["type"] = "uint";
capa["optional"]["DVR"]["default"] = 30000LL; capa["optional"]["DVR"]["default"] = 50000LL;
capa["source_match"] = "push://*"; capa["source_match"] = "push://*";
capa["priority"] = 9ll; capa["priority"] = 9ll;
capa["desc"] = "Provides buffered live input"; capa["desc"] = "Provides buffered live input";