Hi,
I recently captured some video from some NTSC DV tapes. The issue I have is that the colour looks too pale. I've tried doing some colour correction using VirtualDub however it is quite subjective and I'm concerned that I'm using the wrong settings altogether. I'm unsure whether its, the colour, gamma, luminence, chroma that needs adjusting.
I have a few questions:
1) Is there an analysis tool or filter I can use to identify colour issues on a histogram or something which will help guide me on what needs correcting?
2) Similar question to above but can I use photoshop to identify colour issues and export a settings file from there to import into a video editing tool?
3) My monitor is calibrated however how do I use the colour bars to correct the picture/colour of the sample footage?
4) I have the sample footage taken from an alternative source where the colours look fine. Is there a tool that I can use which does a like for like comparison and offers some recommended colour correction settings?
5) Can someone download the video files please and off some recommended settings to use in Virtualdub (or AVIsynth if I have to) to correc the colour?
Any help would be greatly appreciated.
Here are some video uploads I've done:
DV NTSC Tape Colour Bars at start - http://imyashy4.webspace.virginmedia.com/cbars.avi
Sample footage from Tape - http://imyashy4.webspace.virginmedia.com/Video%202.avi
The first pic is frame 488 from the source file. The Second pic is the same frame from an alternative version of the same video.
![]()
+ Reply to Thread
Results 1 to 13 of 13
-
Last edited by Imy; 4th May 2016 at 14:42.
-
a slight change of the hue should be more than enough, generally a +/- 7 do it for such video source
AVISource("Video 2.avi")
assumebff()
tweak(hue=7,coring=false)
if you want more saturation on the V component (reds/greens):
AVISource("Video 2.avi")
assumebff()
tweak(hue=7,coring=false)
coloryuv(cont_v=26)Last edited by themaster1; 4th May 2016 at 16:53.
*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
The second image is overdone, and now has too much red.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Using a frame late in the cbars video (after the brightness stabilized):
I came up with this adjustment in AviSynth:
Tweak(cont=1.13, bright=-17, hue=2, sat=1.09, coring=false)
Applying that adjustment to video 2.avi gives:
That looks a little over saturated to me but that may be from some auto image processing in the capture chain.
I used this script with the cbars video:
Code:AviSource("D:\Downloads\cbars.avi") Tweak(cont=1.13, bright=-17, hue=2, sat=1.09, coring=false) VideoScope("both", true, "UV", "Y", "UV") ovr=ImageSource("vectorscope overlay.png") Overlay(last, ovr, width-256, height-256, ovr)
Last edited by jagabo; 4th May 2016 at 21:14.
-
Why do people insist on using those colorbars for video color correction?
- My sister Ann's brother -
Thanks for answering. Those types of colorbars are not used for video color correction, whether the video content is correct or not. As is, the video itself is mostly in the neighborhood of believable and you gotta remember that music videos go for lots of special effects and primary school color-- most ain't supposed to look that "real" in the first place. More relevant, every one of those has a slight but visibly different color cast and gamma level, so correcting for that one shot throws the rest out of whack. Brights in the original are blown to hell, but sometimes the TV crowd likes it.
Why is that video so soft?Last edited by LMotlow; 4th May 2016 at 22:38.
- My sister Ann's brother -
-
Yep. That's the usual answer. Colorbars are still ignored for that kind of correction. But I won't argue with the Absolute and Irrefutable crew here. What happened to the blacks in the pluge?
- My sister Ann's brother -
No they aren't ignored (by professionals).
Which is why pros keep colorbars & tone at the beginning of all the master tapes/discs/clips they make - it's a very quick way to restore to the original intent (of course, you have to marry proper bars to the content at the time the intent is "baked in"*). Notice: original intent, not "natural".
Way back when I did mass production of VHS at Allied/Vaughn (over 800VHS dubbing simultaneously, round the clock), it was a measure of your mettle as to how quickly you could properly set up a master to correct colorbars. I usually did in in 10-15seconds.
Just because things are now all-digital doesn't forego the need for a proper "reference".
Scott
*It's possible to add it in later, but that requires some artistic discretion.Last edited by Cornucopia; 5th May 2016 at 00:18.
-
-
If you just want to match colors to your alternate images, this comes close the second image in your first post.
Code:Tweak(cont=1.02, bright=-14, hue=15)
Similar Threads
-
Colour Correction - some MP4 files
By vidyarathne in forum Newbie / General discussionsReplies: 1Last Post: 22nd Nov 2015, 02:38 -
Advice needed for colour depth in VDub captures
By SegaSonic91 in forum Capturing and VCRReplies: 2Last Post: 6th Jul 2013, 08:26 -
Color Correction?
By beav in forum Newbie / General discussionsReplies: 20Last Post: 5th Jul 2013, 16:27 -
Colour correction/reducing audio noise/feedback
By PCC in forum RestorationReplies: 109Last Post: 7th May 2013, 13:57 -
Colour correction of a NTSC VHS captured via PAL Equipment
By alesco in forum RestorationReplies: 24Last Post: 22nd Jan 2012, 14:46