diff --git a/ffmpeg.c b/ffmpeg.c
index 401b8bb29d9f5d70655670345598d70c6233c63c..2e3c6100b6765d5ee3ed2b09ca0074cc0e8ce5b8 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3566,8 +3566,8 @@ static void log_callback_help(void* ptr, int level, const char* fmt, va_list vl)
 static void show_help(void)
 {
     av_log_set_callback(log_callback_help);
-    printf("usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}...\n"
-           "Hyper fast Audio and Video encoder\n");
+    printf("Hyper fast Audio and Video encoder\n");
+    printf("usage: ffmpeg [[infile options] -i infile]... {[outfile options] outfile}...\n");
     printf("\n");
     show_help_options(options, "Main options:\n",
                       OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE | OPT_GRAB, 0);
diff --git a/ffplay.c b/ffplay.c
index 5fe054f666b0101f6f623c3cf8a933025630f40f..e0b248e3935747fabe905675e45ffb50fb75ce27 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2492,8 +2492,8 @@ static const OptionDef options[] = {
 
 static void show_help(void)
 {
-    printf("usage: ffplay [options] input_file\n"
-           "Simple media player\n");
+    printf("Simple media player\n");
+    printf("usage: ffplay [options] input_file\n");
     printf("\n");
     show_help_options(options, "Main options:\n",
                       OPT_EXPERT, 0);