mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
gst-validate-transcoding: fix help text to refer to URIs as URIs
Referring to them as files is confusing, as you'll try to use files and not URIs.
This commit is contained in:
parent
c79430a450
commit
69597d9f5e
1 changed files with 3 additions and 3 deletions
|
@ -323,8 +323,8 @@ main (int argc, gchar ** argv)
|
|||
gst_init (&argc, &argv);
|
||||
|
||||
g_set_prgname ("gst-validate-transcoding-" GST_API_VERSION);
|
||||
ctx = g_option_context_new ("[input-file] [output-file]");
|
||||
g_option_context_set_summary (ctx, "Transcodes input-file to output-file, "
|
||||
ctx = g_option_context_new ("[input-uri] [output-uri]");
|
||||
g_option_context_set_summary (ctx, "Transcodes input-uri to output-uri, "
|
||||
"using the given encoding profile. The pipeline will be monitored for "
|
||||
"possible issues detection using the gst-validate lib."
|
||||
"\nCan also perform file conformance"
|
||||
|
@ -353,7 +353,7 @@ main (int argc, gchar ** argv)
|
|||
if (argc != 3) {
|
||||
g_printerr ("%i arguments recived, 2 expected.\n"
|
||||
"You should run the test using:\n"
|
||||
" ./gst-validate-transcoding-0.10 <input-file> <output-file> [options]\n",
|
||||
" ./gst-validate-transcoding-0.10 <input-uri> <output-uri> [options]\n",
|
||||
argc - 1);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue