1.1.0.2 - Color Conversion - Custom Not Working

Here you can submit bugreports
Post Reply
philthewiz2
Posts: 1
Joined: Mon Jan 04, 2021 7:18 pm

1.1.0.2 - Color Conversion - Custom Not Working

Post by philthewiz2 »

Hello there!

The Color Conversion node with custom values returns an error message.
"Line 26735 (File...processors.a3x)" (See attachments)

It does it even with the "default' value of 0-16 / 255-235.

I wanted to make a custom broadcast safe filter.

Let me know if you have a solution.

Thank you very much!
Attachments
Capture2.PNG
Capture2.PNG (6.56 KiB) Viewed 2472 times
Capture.PNG
Capture.PNG (7.38 KiB) Viewed 2472 times
admin
Site Admin
Posts: 1669
Joined: Sat Feb 08, 2014 10:39 pm

Re: 1.1.0.2 - Color Conversion - Custom Not Working

Post by admin »

Hi philthewiz2, thank you for using FFAStrans and welcome to the forum!

Or at least thank you for TRYING to use FFAStrans ;-) I'm sorry about this bug but it has now been located and corrected. While waiting for the new version you can create a custom avisynth script instead.

Code: Select all

m_clip = ConvertTo8Bit(m_clip)
LoadPlugin("%s_ffastrans_dir%\processors\AVS_plugins\ColorMatrix\x64\colormatrix.dll")
m_clip = ConvertToYUY2(m_clip)
m_clip = ColorMatrix(m_clip, source=2, dest=0, inputFR=false, outputFR=false, clamp = 0)
m_clip = Levels(m_clip, 0, 1, 255, 16, 235)
m_clip = ConvertToYUV422(m_clip)
This script is the exact equivalent of using the preset for full range to limited (TV).
Again, sorry for the inconvenience.

-steinar
Post Reply