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:
Tomohiro IKEDA 2020-03-12 02:25:33 +09:00 committed by GitHub
parent a1dd82d478
commit c576814d30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -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 "