Shaka Packager SDK
Loading...
Searching...
No Matches
mpd_generator_flags.h
1// Copyright 2014 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#ifndef APP_MPD_GENERATOR_FLAGS_H_
8#define APP_MPD_GENERATOR_FLAGS_H_
9
10#include <absl/flags/flag.h>
11
12ABSL_FLAG(std::string,
13 input,
14 "",
15 "Comma separated list of MediaInfo input files.");
16ABSL_FLAG(std::string, output, "", "MPD output file name.");
17ABSL_FLAG(std::string,
18 base_urls,
19 "",
20 "Comma separated BaseURLs for the MPD. The values will be added "
21 "as <BaseURL> element(s) immediately under the <MPD> element.");
22#endif // APP_MPD_GENERATOR_FLAGS_H_