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!
1.1.0.2 - Color Conversion - Custom Not Working
-
- Posts: 1
- Joined: Mon Jan 04, 2021 7:18 pm
1.1.0.2 - Color Conversion - Custom Not Working
- Attachments
-
- Capture2.PNG (6.56 KiB) Viewed 3168 times
-
- Capture.PNG (7.38 KiB) Viewed 3168 times
Re: 1.1.0.2 - Color Conversion - Custom Not Working
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.
This script is the exact equivalent of using the preset for full range to limited (TV).
Again, sorry for the inconvenience.
-steinar
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)
Again, sorry for the inconvenience.
-steinar