Set default clear lead to 5 seconds
Change-Id: Ic9ec564659c9df983c8dd885a0cafd45d20cb2fd
This commit is contained in:
parent
8612798de1
commit
5602050ba4
|
@ -9,8 +9,13 @@
|
||||||
#include "packager/app/muxer_flags.h"
|
#include "packager/app/muxer_flags.h"
|
||||||
|
|
||||||
DEFINE_double(clear_lead,
|
DEFINE_double(clear_lead,
|
||||||
12.0f,
|
5.0f,
|
||||||
"Clear lead in seconds if encryption is enabled.");
|
"Clear lead in seconds if encryption is enabled. Note that we do "
|
||||||
|
"not support partial segment encryption, so it is rounded up to "
|
||||||
|
"full segments. Set it to a value smaller than segment_duration "
|
||||||
|
"so only the first segment is in clear since the first segment "
|
||||||
|
"could be smaller than segment_duration if there is small "
|
||||||
|
"non-zero starting timestamp.");
|
||||||
DEFINE_double(segment_duration,
|
DEFINE_double(segment_duration,
|
||||||
6.0f,
|
6.0f,
|
||||||
"Segment duration in seconds. If single_segment is specified, "
|
"Segment duration in seconds. If single_segment is specified, "
|
||||||
|
|
Loading…
Reference in New Issue