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