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 | VideoFormatT | HoldsVideoFormatT,
    chroma: bool = False,
    range_in: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT) –

    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

    (ColorRangeT | 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
157
158
159
160
161
162
163
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
def get_lowest_value(
    clip_or_depth: int | VideoFormatT | HoldsVideoFormatT, chroma: bool = False,
    range_in: ColorRangeT | 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.

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

    :return:                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(clip_or_depth)
        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 | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None,
    family: ColorFamily | None = None,
) -> Sequence[float]

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

Source code
194
195
196
197
198
199
200
201
202
203
204
205
def get_lowest_values(
    clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None, family: vs.ColorFamily | None = None
) -> Sequence[float]:
    """Get the lowest values of all planes of a specified format."""

    fmt = get_video_format(clip_or_depth)

    return normalize_seq([
        get_lowest_value(fmt, False, range_in, family),
        get_lowest_value(fmt, True, range_in, family)
    ], fmt.num_planes)

get_neutral_value

get_neutral_value(
    clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
) -> 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
def get_neutral_value(clip_or_depth: int | VideoFormatT | HoldsVideoFormatT) -> 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.

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

    :return:                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 | VideoFormatT | HoldsVideoFormatT,
) -> Sequence[float]

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

Source code
226
227
228
229
230
def get_neutral_values(clip_or_depth: int | VideoFormatT | HoldsVideoFormatT) -> Sequence[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 | VideoFormatT | HoldsVideoFormatT,
    chroma: bool = False,
    range_in: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT) –

    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

    (ColorRangeT | 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
def get_peak_value(
    clip_or_depth: int | VideoFormatT | HoldsVideoFormatT, chroma: bool = False,
    range_in: ColorRangeT | 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.

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

    :return:                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(clip_or_depth)
        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 | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None,
    family: ColorFamily | None = None,
) -> Sequence[float]

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

Source code
270
271
272
273
274
275
276
277
278
279
280
281
def get_peak_values(
    clip_or_depth: int | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None, family: vs.ColorFamily | None = None
) -> Sequence[float]:
    """Get the peak values of all planes of a specified format."""

    fmt = get_video_format(clip_or_depth)

    return normalize_seq([
        get_peak_value(fmt, False, range_in, family),
        get_peak_value(fmt, True, range_in, family)
    ], fmt.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
123
124
125
126
127
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
def scale_delta(
    value: int | float,
    input_depth: int | VideoFormatT | HoldsVideoFormatT,
    output_depth: int | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None,
    range_out: ColorRangeT | 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.

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

    :return:                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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
def scale_mask(
    value: int | float,
    input_depth: int | VideoFormatT | HoldsVideoFormatT,
    output_depth: int | VideoFormatT | HoldsVideoFormatT
) -> 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.

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

    :return:                Scaled value.
    """

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

scale_value

scale_value(
    value: int | float,
    input_depth: int | VideoFormatT | HoldsVideoFormatT,
    output_depth: int | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None,
    range_out: ColorRangeT | 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 | VideoFormatT | HoldsVideoFormatT) –

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

  • output_depth

    (int | VideoFormatT | HoldsVideoFormatT) –

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

  • range_in

    (ColorRangeT | None, default: None ) –

    Color range of the input value

  • range_out

    (ColorRangeT | 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
 20
 21
 22
 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
def scale_value(
    value: int | float,
    input_depth: int | VideoFormatT | HoldsVideoFormatT,
    output_depth: int | VideoFormatT | HoldsVideoFormatT,
    range_in: ColorRangeT | None = None,
    range_out: ColorRangeT | 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.

    :param value:           Value to scale.
    :param input_depth:     Input bit depth, or clip, frame, format from where to get it.
    :param output_depth:    Output bit depth, or clip, frame, format from where to get it.
    :param range_in:        Color range of the input value
    :param range_out:       Color range of the desired output.
    :param 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.
    :param chroma:          Whether or not to treat values as chroma values instead of luma.
    :param family:          Which color family to assume for calculations.

    :return:                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