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
adf0cd14
Commit
adf0cd14
authored
Oct 06, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/filters: itemize scale examples, and create a dedicated subsection for them
parent
c2428ada
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
12 deletions
+48
-12
filters.texi
doc/filters.texi
+48
-12
No files found.
doc/filters.texi
View file @
adf0cd14
...
...
@@ -3093,41 +3093,77 @@ If the value for @var{width} or @var{height} is -1, the scale filter will
use, for the respective output size, a value that maintains the aspect
ratio of the input image.
Some examples follow:
@subsection Examples
@itemize
@item
Scale the input video to a size of 200x100:
@example
# scale the input video to a size of 200x100.
scale=200:100
@end example
# the above example is the same as:
@item
The above example is the same as:
@example
scale=w=200:h=100
@end example
# scale the input to 2x
@item
Scale the input to 2x:
@example
scale=2*iw:2*ih
# the above is the same as
@end example
@item
The above is the same as:
@example
scale=2*in_w:2*in_h
@end example
# scale the input to 2x with forced interlaced scaling
@item
Scale the input to 2x with forced interlaced scaling:
@example
scale=2*iw:2*ih:interl=1
@end example
# scale the input to half size
@item
Scale the input to half size:
@example
scale=iw/2:ih/2
@end example
# increase the width, and set the height to the same size
@item
Increase the width, and set the height to the same size:
@example
scale=3/2*iw:ow
@end example
# seek for Greek harmony
@item
Seek for Greek harmony:
@example
scale=iw:1/PHI*iw
scale=ih*PHI:ih
@end example
# increase the height, and set the width to 3/2 of the height
@item
Increase the height, and set the width to 3/2 of the height:
@example
scale=3/2*oh:3/5*ih
@end example
# increase the size, but make the size a multiple of the chroma
@item
Increase the size, but make the size a multiple of the chroma:
@example
scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
@end example
# increase the width to a maximum of 500 pixels, keep the same input aspect ratio
@item
Increase the width to a maximum of 500 pixels, keep the same input
aspect ratio:
@example
scale='min(500\, iw*3/2):-1'
@end example
@end itemize
@section select
Select frames to pass in output.
...
...
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