Skip to content

scale

Functions:

  • get_lowest_value

    Returns the lowest value for the specified bit depth, or bit depth of the clip/format specified.

  • get_lowest_values

    Get the lowest values of all planes of a specified format.

  • get_neutral_value

    Returns the neutral point value (e.g. as used by std.MakeDiff) for the specified bit depth,

  • get_neutral_values

    Get the neutral values of all planes of a specified format.

  • get_peak_value

    Returns the peak value for the specified bit depth, or bit depth of the clip/format specified.

  • get_peak_values

    Get the peak values of all planes of a specified format.

  • scale_delta

    Converts the value to the specified bit depth, or bit depth of the clip/format specified.

  • scale_mask

    Converts the value to the specified bit depth, or bit depth of the clip/format specified.

  • scale_value

    Converts the value to the specified bit depth, or bit depth of the clip/format specified.

get_lowest_value

get_lowest_value(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    chroma: bool = False,
    range_in: ColorRangeLike | None = None,
    family: ColorFamily | None = None,
) -> float

Returns the lowest value for the specified bit depth, or bit depth of the clip/format specified.

Parameters:

  • clip_or_depth

    (int | VideoFormatLike | HoldsVideoFormat) –

    Input bit depth, or clip, frame, format from where to get it.

  • chroma

    (bool, default: False ) –

    Whether to get luma (default) or chroma plane value.

  • range_in

    (ColorRangeLike | None, default: None ) –

    Whether to get limited or full range lowest value.

  • family

    (ColorFamily | None, default: None ) –

    Which color family to assume for calculations.

Returns:

  • float

    Lowest possible value.

Source code in vstools/utils/scale.py
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
def get_lowest_value(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    chroma: bool = False,
    range_in: ColorRangeLike | None = None,
    family: vs.ColorFamily | None = None,
) -> float:
    """
    Returns the lowest value for the specified bit depth, or bit depth of the clip/format specified.

    Args:
        clip_or_depth: Input bit depth, or clip, frame, format from where to get it.
        chroma: Whether to get luma (default) or chroma plane value.
        range_in: Whether to get limited or full range lowest value.
        family: Which color family to assume for calculations.

    Returns:
        Lowest possible value.
    """

    fmt = get_video_format(clip_or_depth)

    if is_rgb := vs.RGB in (fmt.color_family, family):
        chroma = False

    if fmt.sample_type is vs.FLOAT:
        return -0.5 if chroma else 0.0

    if range_in is None:
        if isinstance(clip_or_depth, vs.VideoNode):
            range_in = ColorRange.from_video(clip_or_depth, func=get_lowest_value)
        elif is_rgb:
            range_in = ColorRange.FULL
        else:
            range_in = ColorRange.LIMITED

    if ColorRange(range_in).is_limited:
        return 16 << get_depth(fmt) - 8

    return 0

get_lowest_values

get_lowest_values(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    family: ColorFamily | None = None,
    mask: bool = False,
) -> list[float]

Get the lowest values of all planes of a specified format.

Source code in vstools/utils/scale.py
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
def get_lowest_values(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    family: vs.ColorFamily | None = None,
    mask: bool = False,
) -> list[float]:
    """
    Get the lowest values of all planes of a specified format.
    """

    range_in = ColorRange.FULL if mask else range_in

    return normalize_seq(
        [
            get_lowest_value(clip_or_depth, False, range_in, family),
            get_lowest_value(clip_or_depth, not mask, range_in, family),
        ],
        get_video_format(clip_or_depth).num_planes,
    )

get_neutral_value

get_neutral_value(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> float

Returns the neutral point value (e.g. as used by std.MakeDiff) for the specified bit depth, or bit depth of the clip/format specified.

Parameters:

Returns:

  • float

    Neutral value.

Source code in vstools/utils/scale.py
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
def get_neutral_value(clip_or_depth: int | VideoFormatLike | HoldsVideoFormat) -> float:
    """
    Returns the neutral point value (e.g. as used by std.MakeDiff) for the specified bit depth,
    or bit depth of the clip/format specified.

    Args:
        clip_or_depth: Input bit depth, or clip, frame, format from where to get it.

    Returns:
        Neutral value.
    """

    fmt = get_video_format(clip_or_depth)

    if fmt.sample_type is vs.FLOAT:
        return 0.0

    return 1 << (get_depth(fmt) - 1)

get_neutral_values

get_neutral_values(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> list[float]

Get the neutral values of all planes of a specified format.

Source code in vstools/utils/scale.py
246
247
248
249
250
251
252
def get_neutral_values(clip_or_depth: int | VideoFormatLike | HoldsVideoFormat) -> list[float]:
    """
    Get the neutral values of all planes of a specified format.
    """

    fmt = get_video_format(clip_or_depth)
    return normalize_seq(get_neutral_value(fmt), fmt.num_planes)

get_peak_value

get_peak_value(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    chroma: bool = False,
    range_in: ColorRangeLike | None = None,
    family: ColorFamily | None = None,
) -> float

Returns the peak value for the specified bit depth, or bit depth of the clip/format specified.

Parameters:

  • clip_or_depth

    (int | VideoFormatLike | HoldsVideoFormat) –

    Input bit depth, or clip, frame, format from where to get it.

  • chroma

    (bool, default: False ) –

    Whether to get luma (default) or chroma plane value.

  • range_in

    (ColorRangeLike | None, default: None ) –

    Whether to get limited or full range peak value.

  • family

    (ColorFamily | None, default: None ) –

    Which color family to assume for calculations.

Returns:

  • float

    Highest possible value.

Source code in vstools/utils/scale.py
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
def get_peak_value(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    chroma: bool = False,
    range_in: ColorRangeLike | None = None,
    family: vs.ColorFamily | None = None,
) -> float:
    """
    Returns the peak value for the specified bit depth, or bit depth of the clip/format specified.

    Args:
        clip_or_depth: Input bit depth, or clip, frame, format from where to get it.
        chroma: Whether to get luma (default) or chroma plane value.
        range_in: Whether to get limited or full range peak value.
        family: Which color family to assume for calculations.

    Returns:
        Highest possible value.
    """

    fmt = get_video_format(clip_or_depth)

    if is_rgb := vs.RGB in (fmt.color_family, family):
        chroma = False

    if fmt.sample_type is vs.FLOAT:
        return 0.5 if chroma else 1.0

    if range_in is None:
        if isinstance(clip_or_depth, vs.VideoNode):
            range_in = ColorRange.from_video(clip_or_depth, func=get_peak_value)
        elif is_rgb:
            range_in = ColorRange.FULL
        else:
            range_in = ColorRange.LIMITED

    if ColorRange(range_in).is_limited:
        return (240 if chroma else 235) << get_depth(fmt) - 8

    return (1 << get_depth(fmt)) - 1

get_peak_values

get_peak_values(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    family: ColorFamily | None = None,
    mask: bool = False,
) -> list[float]

Get the peak values of all planes of a specified format.

Source code in vstools/utils/scale.py
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
def get_peak_values(
    clip_or_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    family: vs.ColorFamily | None = None,
    mask: bool = False,
) -> list[float]:
    """
    Get the peak values of all planes of a specified format.
    """

    range_in = ColorRange.FULL if mask else range_in

    return normalize_seq(
        [
            get_peak_value(clip_or_depth, False, range_in, family),
            get_peak_value(clip_or_depth, not mask, range_in, family),
        ],
        get_video_format(clip_or_depth).num_planes,
    )

scale_delta

Converts the value to the specified bit depth, or bit depth of the clip/format specified. Uses the clip's range (if only one clip is passed) for both depths. Intended for filter thresholds.

Parameters:

Returns:

Source code in vstools/utils/scale.py
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
def scale_delta(
    value: int | float,
    input_depth: int | VideoFormatLike | HoldsVideoFormat,
    output_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    range_out: ColorRangeLike | None = None,
) -> int | float:
    """
    Converts the value to the specified bit depth, or bit depth of the clip/format specified.
    Uses the clip's range (if only one clip is passed) for both depths.
    Intended for filter thresholds.

    Args:
        value: Value to scale.
        input_depth: Input bit depth, or clip, frame, format from where to get it.
        output_depth: Output bit depth, or clip, frame, format from where to get it.
        range_in: Color range of the input value
        range_out: Color range of the desired output.

    Returns:
        Scaled value.
    """

    if isinstance(input_depth, vs.VideoNode) != isinstance(output_depth, vs.VideoNode):
        if isinstance(input_depth, vs.VideoNode):
            clip_range = ColorRange.from_video(input_depth)

        if isinstance(output_depth, vs.VideoNode):
            clip_range = ColorRange.from_video(output_depth)

        range_in = clip_range if range_in is None else range_in
        range_out = clip_range if range_out is None else range_out

    return scale_value(value, input_depth, output_depth, range_in, range_out, False)

scale_mask

Converts the value to the specified bit depth, or bit depth of the clip/format specified. Intended for mask clips which are always full range.

Parameters:

Returns:

Source code in vstools/utils/scale.py
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
def scale_mask(
    value: int | float,
    input_depth: int | VideoFormatLike | HoldsVideoFormat,
    output_depth: int | VideoFormatLike | HoldsVideoFormat,
) -> int | float:
    """
    Converts the value to the specified bit depth, or bit depth of the clip/format specified.
    Intended for mask clips which are always full range.

    Args:
        value: Value to scale.
        input_depth: Input bit depth, or clip, frame, format from where to get it.
        output_depth: Output bit depth, or clip, frame, format from where to get it.

    Returns:
        Scaled value.
    """

    return scale_value(value, input_depth, output_depth, ColorRange.FULL, ColorRange.FULL)

scale_value

scale_value(
    value: int | float,
    input_depth: int | VideoFormatLike | HoldsVideoFormat,
    output_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    range_out: ColorRangeLike | None = None,
    scale_offsets: bool = True,
    chroma: bool = False,
    family: ColorFamily | None = None,
) -> int | float

Converts the value to the specified bit depth, or bit depth of the clip/format specified.

Parameters:

  • value

    (int | float) –

    Value to scale.

  • input_depth

    (int | VideoFormatLike | HoldsVideoFormat) –

    Input bit depth, or clip, frame, format from where to get it.

  • output_depth

    (int | VideoFormatLike | HoldsVideoFormat) –

    Output bit depth, or clip, frame, format from where to get it.

  • range_in

    (ColorRangeLike | None, default: None ) –

    Color range of the input value

  • range_out

    (ColorRangeLike | None, default: None ) –

    Color range of the desired output.

  • scale_offsets

    (bool, default: True ) –

    Whether or not to apply & map YUV zero-point offsets. Set to True when converting absolute color values. Set to False when converting color deltas. Only relevant if integer formats are involved.

  • chroma

    (bool, default: False ) –

    Whether or not to treat values as chroma values instead of luma.

  • family

    (ColorFamily | None, default: None ) –

    Which color family to assume for calculations.

Returns:

Source code in vstools/utils/scale.py
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
def scale_value(
    value: int | float,
    input_depth: int | VideoFormatLike | HoldsVideoFormat,
    output_depth: int | VideoFormatLike | HoldsVideoFormat,
    range_in: ColorRangeLike | None = None,
    range_out: ColorRangeLike | None = None,
    scale_offsets: bool = True,
    chroma: bool = False,
    family: vs.ColorFamily | None = None,
) -> int | float:
    """
    Converts the value to the specified bit depth, or bit depth of the clip/format specified.

    Args:
        value: Value to scale.
        input_depth: Input bit depth, or clip, frame, format from where to get it.
        output_depth: Output bit depth, or clip, frame, format from where to get it.
        range_in: Color range of the input value
        range_out: Color range of the desired output.
        scale_offsets: Whether or not to apply & map YUV zero-point offsets. Set to True when converting absolute color
            values. Set to False when converting color deltas. Only relevant if integer formats are involved.
        chroma: Whether or not to treat values as chroma values instead of luma.
        family: Which color family to assume for calculations.

    Returns:
        Scaled value.
    """

    out_value = float(value)

    in_fmt = get_video_format(input_depth)
    out_fmt = get_video_format(output_depth)

    if range_in is None:
        if isinstance(input_depth, vs.VideoNode):
            range_in = ColorRange(input_depth)
        elif vs.RGB in (in_fmt.color_family, family):
            range_in = ColorRange.FULL
        else:
            range_in = ColorRange.LIMITED
    else:
        range_in = ColorRange.from_param(range_in, scale_value)

    if range_out is None:
        if isinstance(output_depth, vs.VideoNode):
            range_out = ColorRange(output_depth)
        elif vs.RGB in (out_fmt.color_family, family):
            range_out = ColorRange.FULL
        else:
            range_out = ColorRange.LIMITED
    else:
        range_out = ColorRange.from_param(range_out, scale_value)

    if input_depth == output_depth and range_in == range_out and in_fmt.sample_type == out_fmt.sample_type:
        return out_value

    if vs.RGB in (in_fmt.color_family, out_fmt.color_family, family):
        chroma = False

    input_peak = get_peak_value(in_fmt, chroma, range_in, family)
    input_lowest = get_lowest_value(in_fmt, chroma, range_in, family)
    output_peak = get_peak_value(out_fmt, chroma, range_out, family)
    output_lowest = get_lowest_value(out_fmt, chroma, range_out, family)

    if scale_offsets and in_fmt.sample_type is vs.INTEGER:
        if chroma:
            out_value -= 128 << (in_fmt.bits_per_sample - 8)
        elif range_in.is_limited:
            out_value -= 16 << (in_fmt.bits_per_sample - 8)

    out_value *= (output_peak - output_lowest) / (input_peak - input_lowest)

    if scale_offsets and out_fmt.sample_type is vs.INTEGER:
        if chroma:
            out_value += 128 << (out_fmt.bits_per_sample - 8)
        elif range_out.is_limited:
            out_value += 16 << (out_fmt.bits_per_sample - 8)

    if out_fmt.sample_type is vs.INTEGER:
        out_value = max(min(round(out_value), get_peak_value(out_fmt, range_in=ColorRange.FULL)), 0)

    return out_value