Skip to content

Commit

Permalink
fix_colorspace_conversion: Fix Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Aug 22, 2024
1 parent 3cea341 commit 1d8822c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vsadjust/colorspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
def fix_colorspace_conversion(
clip: vs.VideoNode,
matrix_src: Matrix | None = None,
matrix_og: Matrix = Matrix.BT601,
matrix_og: Matrix = Matrix.BT470BG,
) -> vs.VideoNode:
"""
Function to fix improper colorspace conversions.
An example of this would be a BT709 video that was converted
to BT601 during production and tagged as BT709.
to BT470BG during production and tagged as BT709.
:param clip: Clip to process.
:param matrix_src: The Matrix of the input clip. This will also be the output matrix.
Expand Down

0 comments on commit 1d8822c

Please sign in to comment.