[FFmpeg-cvslog] ffmpeg: Help for interactive keys.
Michael Niedermayer
git at videolan.org
Sun May 15 01:46:43 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat May 14 15:51:47 2011 +0200| [34e838083e385a96640f07923b2b45798a12baa4] | committer: Michael Niedermayer
ffmpeg: Help for interactive keys.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=34e838083e385a96640f07923b2b45798a12baa4
---
ffmpeg.c | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index f322559..4277baf 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2567,7 +2567,7 @@ static int transcode(AVFormatContext **output_files,
if (!using_stdin) {
if(verbose >= 0)
- fprintf(stderr, "Press [q] to stop encoding\n");
+ fprintf(stderr, "Press [q] to stop, [?] for help\n");
avio_set_interrupt_cb(decode_interrupt_cb);
}
term_init();
@@ -2603,6 +2603,16 @@ static int transcode(AVFormatContext **output_files,
do_pkt_dump = 1;
av_log_set_level(AV_LOG_DEBUG);
}
+ if (key == '?'){
+ fprintf(stderr, "key function\n"
+ "? show this help\n"
+ "+ increase verbosity\n"
+ "- decrease verbosity\n"
+ "h dump packets/hex press to cycle through the 3 states\n"
+ "q quit\n"
+ "s Show QP histogram\n"
+ );
+ }
}
/* select the stream that we must read now by looking at the
More information about the ffmpeg-cvslog
mailing list