So for a long time, I have been meaning to learn a little more about all this colorspace stuff. Especially in regards to broadcast legal [16,235] versus ComputerRGB [0,255]. So I made the following little chip card in AE which I assume is Computer RGB colorspace. The top row fades from grayscale RGB (0,0,0) to (28,28,28) in (4,4,4) increments. The black band in the middle is simply (0,0,0). The white band below it is (255,255,255). And the bottom chips fade from RGB (227,227,227) to (255,255,255) again in (4,4,4) increments. This is the screen shot from within AE.
AE Screen Shot
Then I dynamically link my composition in PP. Here is the YC Waveform. And everything looks good.
PP YC Waveform
Next, I frameserved out of PP using DMFS and set the output to YUY2. Here is the Avisynth script that I load into x264:
After encoding using x264, I uploaded to Youtube because I wanted to see if Youtube expands out the colorspace thereby clipping the blacks and whites. Here is a screenshot of the YT upload. IMO, the white chips look fine. But the black chips looked start to lose resolution at around RGB (8,8,8) and even RGB (12,12,12).Code:AVISource("E:\signpost.avi", audio=false).AssumeFPS(30000,1001) ConvertToYV12(interlaced=false, matrix="PC.709")
Youtube Screenshot
So what do you guys think? Is there a problem anywhere in this chain? Thanks.
+ Reply to Thread
Results 1 to 15 of 15
-
Last edited by SameSelf; 20th Oct 2016 at 07:35. Reason: More accurate title
-
Your PP YC Waveform shows limited range YUV (IRE0 = Y16, IRE100 = Y235). It's perfectly normal for full range RGB (0-255) to be converted to limited range YUV (Y=16-235, U,V=16-240). Then when converting back to RGB for display it is expanded back to full range RGB again. DVDs, Blu-ray discs, broadcast TV, Youtube videos, etc. use limited range YUV.
Your ConvertToYV12(interlaced=false, matrix="PC.709") should have been "rec709" (HD) or "rec601" (SD). -
Brilliant jagabo! I should have known I was getting it wrong somewhere. I did notice that the resolution in PP seemed less than what I could see in AE. Now I know why. PP squeezes full range RGB (0-255) to YUV (Y=16-235, U,V=16-240). Thanks very much for that. Also, I had no idea U,V went slightly higher than Y.
So, I fixed my Avisynth script as you suggested:
Code:AVISource("E:\signpost.avi", audio=false).AssumeFPS(30000,1001) ConvertToYV12(interlaced=false, matrix="rec709")
-
When you frame serve from PP does it output RGB? If it's putting out YUV then ConvertToYV12(interlaced=false, matrix="rec709") won't change levels. If that's the case then PP is converting to full range YUV. Use Info() in your script to see what it's receiving.
Code:AVISource("E:\signpost.avi", audio=false).AssumeFPS(30000,1001) Info()
Code:ImageSource("image.png", start=0, end=300, fps=29.97) ConvertToYV12(interlaced=false, matrix="rec709")
Last edited by jagabo; 14th Oct 2015 at 23:07.
-
It looks like the test image wasn't done correctly, or maybe you posted the wrong one in the 1st post - double check the values - they appear to be off, and scale at different rates
-
I assume you are referring to the AE screenshot. It wouldn't surprise me if I screwed something up. Here is how I made my chip chart:
In a new comp, I simply added a new solid for each square and set the solid's color to the decimal equivalent RGB value. For example, RGB (8,8,8) was set to RGB (0.0313, 0.0313, 0.0313) as I assumed the scale extended from 0 to 255. Similarly, the RGB (227, 227, 227) was set to RGB (0.8902, 0.8902, 0.8902). Maybe that is where I screwed up. But I assumed that AE was full range RGB.
I am certain my monitor is not calibrated properly, so that could also be the difference you are seeing.
But, regardless of whether I set up the chart properly in AE, I can see the gradations in the blacks all the way across in AE. But they look crushed in the final encode. Would you agree with this assessment? Which tells me that something is wrong in my workflow. I am trying to figure out what it is. -
Potential problems are your method of screenshot taking. Your encode is in YUV, but MPC is displaying in RGB. How it converts to RGB for display can be affected by many things. There might be causing other conversions depending on how you have it set up. Renderer settings for example can change the displayed levels. Some use the GPU settings (e.g. overlay) . Or youtube with GPU on vs. off. Then the GPU settings can affect what you "see." Some are completely different eg. VMR9 vs haali or EVR or overlay usually very different. Individual player settings can adjust the image as well.
If you're used to 8bit values, just make an 8bit test pattern. 0-255 in RGB. "limited range" refers to what values in YUV are "mappped" to RGB for display. As mentioned above, limited range conversion is standard, and takes Y' 16-235 , CbCr 16-240 and "maps" to RGB 0,0,0-255,255,255 in 8bit values. This is the same as the "Rec" matrices in avisynth.
When working in RGB, stay in RGB the whole way through. Don't make unnecessary colorspace conversions, and you will get better control if you decide when and how to convert it. So I would use RGB in debugmode with what you are doing. You only use YUY2 , when you have a native YUV timeline (e.g. a premiere only project with YUV assets and YUV filters). AE is working in RGB, dynamic link will be in RGB so it makes sense to frameserve RGB. Control the conversion at the very end with avisynth. You would use ConvertToYV12(matrix="rec709") from RGB frameserver. Or use a dithered conversion if you want higher quality (It won't make much a difference on youtube). I'm one of the ones that can't get dmfs to work on anything newer than CS5, so I can't check your workflow.
If you upload a tiny sample of your final YUV encode, along with your source image - someone can test if it's correct or not, or if it's a display configuration issue on your end
-------------------
Youtube actually reads flags now. If you encode full range YUV, and flag it full range, it will acknowledge it and clamp the re-encode to legal range.
But if you use your own server and hosting, you can actually display full range YUV with flags (essentially the equivalent of avisynth "PC" matrix is applied, 0-255 in YCbCr is "mapped" to 0-255 in RGB)Last edited by poisondeathray; 15th Oct 2015 at 12:44.
-
Be careful with using a media player to test your levels. The player can be set to change the brightness and contrast. And the graphics card's video processing amp can change brightness and contrast too. Make sure that neither is molesting the signal. And you need to make sure you monitor is set up properly to display levels correctly. Make sure that all auto contrast/brightness/color/sharpness/etc. features are disabled everywhere.
See the following post for a DV video with a levels chart.
https://forum.videohelp.com/threads/326496-file-in-Virtualdub-has-strange-colors-when-o...=1#post2022085
And this post for an MPG version of that chart:
https://forum.videohelp.com/threads/353338-Avisynth-ColorYUV-Gamma-is-doubling-the-enco...=1#post2220162
Those video include super blacks and super brights for test purposes. So the numbers in the chart represent Y values, not the expected RGB values when played. The first post explains what you should see. The DV video has a small error, the 0 bar is actually 1.
If you want to see the Y values without the contrast stretch to full range RGB use ConvertToRGB(matrix="pc.601"). To see a waveform monitor view use TurnRight().Histogram().TurnLeft(). -
Thanks so much pdr and jagabo. I am slowly digesting all this information. I will post back later this evening with the actual mp4 for people to take a look at themselves.
-
Here's an updated MPG file with a levels chart. It shows the Y values and the expected RGB values after a standard rec.601 conversion. The values you get on-screen may vary by one unit because of rounding issues.
Here's the base image (not what you're supposed to see when playing the video):
And the script that fed the image to HcEnc:
Code:ImageSource("grayblocks5.png", start=0, end=240) AssumeFPS(24000,1001) ConvertToYV12(interlaced=false, matrix="pc.601")
Last edited by jagabo; 15th Oct 2015 at 22:17.
-
OK, after doing some more research, I determined that one of the important things to do is set the color management in AE properly. I have no idea if this makes any difference, but I had the Working Space set to "HDTV (Rec. 709)" with 32 bpc (float). None of the options (Linearize Working Space, Blend Colors Using 1.0 Gamma, etc.) were checked.
And, as pdr said, players, like MPC, are not color calibrated or expect YUV but rather work in RGB. So I did the most obvious thing and re-imported my encoded mp4 back into AE. Lo and behold, the gradation is present even though I couldn't see it in MPC or YT. So I am going to chalk this up to improper calibration. Plus my monitor has never been calibrated. So it sounds like I am sort of wasting my time until I get a calibrator anyway.
Once again, thank you, thank you so much for all the insight. I will be spending a lot of time over the next few days or weeks pondering everything that has been said here. FWIW, here is my encode:
I should also add, when I played the attached video on my TV, I could see all the gradations.Last edited by SameSelf; 15th Oct 2015 at 19:59.
-
What about adjusting an LCD laptop monitor ?
The following was snipped from another discussion that I probably should have thrown here.
vhelp wrote--The one thing that bothered me most is the video display on my dell laptop. Its horrible. All the colors are washed out when I view a video, whether in virtualdub, ffplay, or MPC-HC. I can't seem to figure out how to match it to my desktop pc, work or home. Maybe someone know something about this and can help? Anyway. I gotta get out of here and get some dinner. Its deli night.El Heggunte wrote--How old is your Dell laptop? Are you sure that its monitor is not a 6-bit device?Note that cheap LCD monitors can't display very dark blacks. You may have to settle for a dark grey.
I read about those hardware color adjustment devices that people are using for LCD's, I will do some research and see if there is anything I can do to adjust mine, or else I may consider a new LCD unless the issue is with my laptops hardware pro amps and its inherent limitations. Thanks for chiming in on this issue in the other thread, much appreciated.Last edited by vhelp; 19th Oct 2016 at 08:01.
-
-
Wow, I forgot all about this thread. So much has changed in a year. I have upgraded my video editing workstation to a color managed workflow. Therefore, I am pleased to say these seem like fairly petty problems now
.
As far as doing any sort of color critical work on a laptop, how is that even possible? It is imperative that you have HW that can isolate the color management of your video from the OS and gpu. Also, you need a monitor that can be calibrated with custom LUTs and operate natively in YUV space, preferably 10-bit. So a dual monitor setup becomes unavoidable.
Similar Threads
-
Levels and color match in Avisynth
By virguloso in forum EditingReplies: 12Last Post: 12th Jun 2015, 20:38 -
Question about black levels in video
By 90sTV in forum Newbie / General discussionsReplies: 1Last Post: 16th Feb 2015, 13:26 -
DV AVI levels to YouTube levels
By memrah in forum RestorationReplies: 18Last Post: 16th Oct 2013, 07:36 -
A Question about subtitle color
By HeartBreak_Kid in forum SubtitleReplies: 3Last Post: 10th Jul 2012, 20:53 -
Calibrating luminance levels/color for capture from VHS
By Cherbette in forum Capturing and VCRReplies: 188Last Post: 29th Sep 2011, 20:18