Shaka Packager SDK
Loading...
Searching...
No Matches
ad_cue_generator_flags.cc
1// Copyright 2017 Google LLC. All rights reserved.
2//
3// Use of this source code is governed by a BSD-style
4// license that can be found in the LICENSE file or at
5// https://developers.google.com/open-source/licenses/bsd
6//
7// Defines cuepoint generator flags.
8
9#include <packager/app/ad_cue_generator_flags.h>
10
11ABSL_FLAG(std::string,
12 ad_cues,
13 "",
14 "List of cuepoint markers."
15 "This flag accepts semicolon separated pairs and components in "
16 "the pair are separated by a comma and the second component "
17 "duration is optional. For example --ad_cues "
18 "{start_time}[,{duration}][;{start_time}[,{duration}]]..."
19 "The start_time represents the start of the cue marker in "
20 "seconds relative to the start of the program.");