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 <string>
11
12#include <absl/flags/flag.h>
13
14ABSL_FLAG(std::string,
15 input,
16 "",
17 "Comma separated list of MediaInfo input files.");
18ABSL_FLAG(std::string, output, "", "MPD output file name.");
19ABSL_FLAG(std::string,
20 base_urls,
21 "",
22 "Comma separated BaseURLs for the MPD. The values will be added "
23 "as <BaseURL> element(s) immediately under the <MPD> element.");
24#endif // APP_MPD_GENERATOR_FLAGS_H_