EleonoreMizo / fmtconv

Format conversion tools for Vapoursynth and Avisynth+
Do What The F*ck You Want To Public License
67 stars 14 forks source link

matrix: unsupported color family for output. #27

Closed mysteryx93 closed 2 years ago

mysteryx93 commented 2 years ago

This works.

clip = clip.resize.Bicubic(format = vs.RGBS)
clip = clip.fmtc.matrix(col_fam = vs.YUV, mat="709")

This throws "matrix: unsupported color family for output."

clip = clip.resize.Bicubic(format = vs.RGBS)
clip = clip.fmtc.matrix(col_fam = vs.YUV, coef=[1/3,1/3,1/3,0, 1/2,0,-1/2,0, 1/4,-1/2,1/4,0])

Why?

EleonoreMizo commented 2 years ago

Thanks for the report. This has been fixed in 1453c2fae3a09b79748e2ecc04cbcd3cf59f2af2, but there was another issue now fixed in 08227b796e241408ed81f6f5ed8d262ede13c350. These fixes are now available in r26.