Clean up descriptions in mpd command line flags (#730)
Remove the 'Exclusive' statements on --mpd_output and --output_media_info as they can already work together.
This commit is contained in:
parent
a1dd82d478
commit
c576814d30
|
@ -16,15 +16,12 @@ DEFINE_bool(generate_static_live_mpd,
|
||||||
"static mpd instead. Note that if segment_template is not "
|
"static mpd instead. Note that if segment_template is not "
|
||||||
"specified, shaka-packager always generates static mpd regardless "
|
"specified, shaka-packager always generates static mpd regardless "
|
||||||
"of the value of this flag.");
|
"of the value of this flag.");
|
||||||
// TODO(rkuroiwa, kqyang): Remove the 'Exclusive' statements once
|
|
||||||
// --output_media_info can work together with --mpd_output.
|
|
||||||
DEFINE_bool(output_media_info,
|
DEFINE_bool(output_media_info,
|
||||||
false,
|
false,
|
||||||
"Create a human readable format of MediaInfo. The output file name "
|
"Create a human readable format of MediaInfo. The output file name "
|
||||||
"will be the name specified by output flag, suffixed with "
|
"will be the name specified by output flag, suffixed with "
|
||||||
"'.media_info'. Exclusive with --mpd_output.");
|
"'.media_info'.");
|
||||||
DEFINE_string(mpd_output, "",
|
DEFINE_string(mpd_output, "", "MPD output file name.");
|
||||||
"MPD output file name. Exclusive with --output_media_info.");
|
|
||||||
DEFINE_string(base_urls,
|
DEFINE_string(base_urls,
|
||||||
"",
|
"",
|
||||||
"Comma separated BaseURLs for the MPD. The values will be added "
|
"Comma separated BaseURLs for the MPD. The values will be added "
|
||||||
|
|
Loading…
Reference in New Issue