Changes between Version 25 and Version 26 of Scaling


Ignore:
Timestamp:
May 5, 2023, 4:47:36 PM (3 years ago)
Author:
Mads Johansen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Scaling

    v25 v26  
    136136}}}
    137137
    138 See the [https://ffmpeg.org/ffmpeg-scaler.html scaler documentation] for more info. To set multiple flags you can combine them with a `+` sign. For example:
     138List of scaling algorithms with their defaults, if any:\\
     139fast_bilinear\\
     140bilinear\\
     141bicubic\\
     142experimental\\
     143neighbor\\
     144area\\
     145bicublin, Bicubic scaling algorithm for the luma component, bilinear for chroma components.\\
     146gauss\\
     147sinc\\
     148lanczos, The default width (alpha) is 3 and can be changed by setting param0.\\
     149spline\\
     150
     151See the [https://ffmpeg.org/ffmpeg-scaler.html scaler documentation] for more info.
     152
     153Setting param0 for lanczos is done via
     154
     155{{{
     156-vf scale=1920x1080:flags=lanczos:param0=3
     157}}}
     158
     159
     160To set multiple flags you can combine them with a `+` sign. For example:
     161
    139162
    140163{{{