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
11#include <string>
12
13#include <absl/flags/flag.h>
14
15ABSL_FLAG(std::string,
16 ad_cues,
17 "",
18 "List of cuepoint markers."
19 "This flag accepts semicolon separated pairs and components in "
20 "the pair are separated by a comma and the second component "
21 "duration is optional. For example --ad_cues "
22 "{start_time}[,{duration}][;{start_time}[,{duration}]]..."
23 "The start_time represents the start of the cue marker in "
24 "seconds relative to the start of the program.");