Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
34e83808
Commit
34e83808
authored
May 14, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: Help for interactive keys.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e60e54ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
ffmpeg.c
ffmpeg.c
+11
-1
No files found.
ffmpeg.c
View file @
34e83808
...
@@ -2567,7 +2567,7 @@ static int transcode(AVFormatContext **output_files,
...
@@ -2567,7 +2567,7 @@ static int transcode(AVFormatContext **output_files,
if
(
!
using_stdin
)
{
if
(
!
using_stdin
)
{
if
(
verbose
>=
0
)
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
);
avio_set_interrupt_cb
(
decode_interrupt_cb
);
}
}
term_init
();
term_init
();
...
@@ -2603,6 +2603,16 @@ static int transcode(AVFormatContext **output_files,
...
@@ -2603,6 +2603,16 @@ static int transcode(AVFormatContext **output_files,
do_pkt_dump
=
1
;
do_pkt_dump
=
1
;
av_log_set_level
(
AV_LOG_DEBUG
);
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
/* select the stream that we must read now by looking at the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment