Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
e8bab4c6
Commit
e8bab4c6
authored
Jan 13, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffplay: extend documentation for the -vf option
In particular, make it consistent with the ffmpeg docs.
parent
db4e0eca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
ffplay.texi
doc/ffplay.texi
+8
-3
ffplay.c
ffplay.c
+1
-1
No files found.
doc/ffplay.texi
View file @
e8bab4c6
...
...
@@ -74,10 +74,15 @@ You can interactively cycle through the available show modes by
pressing the key @key
{
w
}
.
@item -vf @var
{
filter
_
graph
}
Create the filter graph specified by @var
{
filter
_
graph
}
and use it to
filter the video stream.
@var
{
filter
_
graph
}
is a description of the filter graph to apply to
the input video.
Use the option "-filters" to show all the available filters (including
also sources and sinks).
the stream, and must have a single video input and a single video
output. In the filter graph, the input is associated to the label
@code
{
in
}
, and the output to the label @code
{
out
}
. See the
ffmpeg-filters manual for more information about the filtergraph
syntax.
@item -i @var
{
input
_
file
}
Read @var
{
input
_
file
}
.
...
...
ffplay.c
View file @
e8bab4c6
...
...
@@ -3241,7 +3241,7 @@ static const OptionDef options[] = {
{
"infbuf"
,
OPT_BOOL
|
OPT_EXPERT
,
{
&
infinite_buffer
},
"don't limit the input buffer size (useful with realtime streams)"
,
""
},
{
"window_title"
,
OPT_STRING
|
HAS_ARG
,
{
&
window_title
},
"set window title"
,
"window title"
},
#if CONFIG_AVFILTER
{
"vf"
,
OPT_STRING
|
HAS_ARG
,
{
&
vfilters
},
"
video filters"
,
"filter list
"
},
{
"vf"
,
OPT_STRING
|
HAS_ARG
,
{
&
vfilters
},
"
set video filters"
,
"filter_graph
"
},
#endif
{
"rdftspeed"
,
OPT_INT
|
HAS_ARG
|
OPT_AUDIO
|
OPT_EXPERT
,
{
&
rdftspeed
},
"rdft speed"
,
"msecs"
},
{
"showmode"
,
HAS_ARG
,
{
.
func_arg
=
opt_show_mode
},
"select show mode (0 = video, 1 = waves, 2 = RDFT)"
,
"mode"
},
...
...
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