Haven't been here in many years, I can't believe I remembered my password. The analog to DVD bug has gotten me again and I've been doing a lot of reading on IRE levels. To make a long story short, I just need to know what I am looking for on this videoscope plug in.
My setup: Toshiba A-SB88 and a Victor VX-200 VCR. These are quality Japanese market VCRs I picked up while stationed there years ago. I have them running through a Primeimage TBC/Freeze II. At the end is a Canopus ADVC-50.
What I am starting with is getting the the IRE level right. My VCRs (NTSC Japan) are outputting 0 IRE (assumed) and my ADVC-50 is set at 0 IRE as well. The Primeimage TBC also has a setup level control
The photos represent adjustments to the setup level of the TBC. I took a number of screen grabs at unity (0 setup I must assume) and increments of increasing and decreasing the setup level. The setup appears to have a range of around +/-30. Here's the pictures, you tell me....
Hmmm, I'm trying to figure out how to get text in between the photos..
The first image is my Toshiba at 0 setup.
The second image is my Toshiba at +20 setup.
The third image is my Toshiba at -20 setup.
+ Reply to Thread
Results 1 to 8 of 8
-
Last edited by fmctm1sw; 8th Sep 2015 at 17:27.
-
From the Victor...
The first image is my Victor at 0 setup.
The second image is my Victor at +20 setup.
The third image is my Victor at -20 setup.Last edited by fmctm1sw; 8th Sep 2015 at 17:28.
-
You want the blackest black to be at Y=16, the brightest brights to be a Y=235. Unfortunately, VideoScope() doesn't mark those regions. Histogram() does, so try TurnRight().Histogram().TurnLeft(). That will give you the waveform monitor at the top. Or if you want it at the bottom:
Code:function HistogramOnBottom(clip vid) { top = vid TurnRight(vid).Histogram().TurnLeft() bot = Crop(0, 0, width, 256).ColorYUV(off_y=-16).ColorYUV(gamma_y=200).ColorYUV(off_y=16) StackVertical(top, bot) }
The first image in the first post looks like it may be right. But that particular shot appears to have been screwed up before you got to it. Check other shots. And you need to be sure the capture device isn't responsible for crushing darks and brights before it gives them to you.
Don't use Info() before VideoScope() or the yellow text will mess up the waveform graph.Last edited by jagabo; 8th Sep 2015 at 18:42.
-
Many thanks jugabo. I was able to get a histogram up but not able to get that function working. Does that go in the .avs file? I grabbed a few shots from the actual movie, those above images are from the intro stuff (advertisements, etc). I think I can work the setup level to get the blackest blacks OR the whitest whites, just not both at the same time. This is a -10 setup level.
edit: I may be able to stretch that brightness with "tweak..."Last edited by fmctm1sw; 8th Sep 2015 at 21:27.
-
I tweaked that last photo. Here's the result...
edit: I think I have enough to go on for now. I can probably bring down those super high brights in my Victor VCR with tweak as well.Last edited by fmctm1sw; 8th Sep 2015 at 22:03.
-
Yes, as long as you aren't completely crushing darks or brights you can use Tweak() or ColorYUV() for final adjustments.
To use my HistogramOnBottom() function you include it in your script then call it:
Code:function HistogramOnBottom(clip vid) { top = vid TurnRight(vid).Histogram().TurnLeft() bot = Crop(0, 0, width, 256).ColorYUV(off_y=-16).ColorYUV(gamma_y=200).ColorYUV(off_y=16) StackVertical(top, bot) } WhateverSource() HistogramOnBottom()
I usually prefer a horizontal waveform (HistogramOnBottom() or the TurnR/Hist/TurnL sequence) because then you can more easily see the front and back porch (the black bars at the far left and right) and because it's what you would see when watching the analog waveform on an oscilloscope. Those are good hints about where Y=16 should be. Of course, on some bad recording you'll want to ignore them and just adjust to the main picture. -
I would not recommend using Tweak or Levels because they work in 8 Bit precision only. You can see what damage Tweak did to the levels in the tweaked screenshot: the histogram now exhibits streaks. These manifest visually in banding, particularly in darker scenes on flat surfaces and on fades to and from black or white (not so much if the video is very grainy, but still).
Better use SmoothAdjust. It's a high bitdeph substitute for the built-in functions. -
I appreciate the help gentlemen...
Between the setup and level settings on my time base corrector and the use of smoothtweak, I'm pretty satisfied with the blacks and whites. The next challenge will be figuring out how to get the colors right..Last edited by fmctm1sw; 9th Sep 2015 at 20:30.
Similar Threads
-
3 fps video .mp4??? supposed to be 59.94 Hauppage HDPVR2
By duhmez in forum Capturing and VCRReplies: 9Last Post: 27th Feb 2015, 23:06 -
Need software that actually works like it's supposed to.
By Jon.G in forum Video ConversionReplies: 3Last Post: 13th Apr 2013, 11:20 -
Is the VIDEO_TS folder supposed having the .VOB file?
By coody in forum DVD RippingReplies: 6Last Post: 19th Dec 2011, 01:38 -
Was I supposed to get soundforge 10 with Vegas 9.0?
By solarblast in forum AudioReplies: 0Last Post: 13th Mar 2011, 22:50 -
Cut Assistant not working the way it's supposed to
By jeanmarc in forum EditingReplies: 3Last Post: 3rd Dec 2010, 04:47