VideoHelp Forum




+ Reply to Thread
Results 1 to 9 of 9
  1. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    #1 is DVD, #2 is my attempt in Avisynth, #3 is automagical tool: Color Correct v1.4 by "DrDre" on the Original Trilogy forum. (I haven't checked for new updates in the past 6 months.) [EDIT: #4 is ColourLike.]

    Click image for larger version

Name:	Spider-Man FS DVD.png
Views:	1650
Size:	665.2 KB
ID:	37531 Click image for larger version

Name:	Spider-Man - HM-DH5U + tweaks.png
Views:	1702
Size:	575.6 KB
ID:	37530 Click image for larger version

Name:	Spider-Man - HM-DH5U + DrDre Color Correct v1.4, Multi, Stab1.png
Views:	1668
Size:	571.2 KB
ID:	37532 Click image for larger version

Name:	Spider-Man - HM-DH5U + ColourLike.png
Views:	1384
Size:	558.7 KB
ID:	37608

    Red certainly looks closer in the DrDre result than my attempt, but the grass and shrubs have become the same color.

    Any suggestions for improvement?
    Image Attached Files
    Last edited by Brad; 3rd Jul 2016 at 17:00. Reason: Added ColourLike
    Quote Quote  
  2. Ok, what do you wanna do? What should be the result?
    Quote Quote  
  3. I too am not clear on what you want to do. Also, your two corrected results have somehow become blurred, as though two frames were blended. Or, are you saying that the two corrected pics are from a VHS tape? If so, then I am even more unsure of what you are trying to do. If you somehow want to use this as a way of calibrating your VHS capture chain, then this is most definitely the wrong way to do it. Instead, find a tape that contains color bars at the beginning or end of the tape and use that. While each tape may be somewhat different, this would at least give you a starting point and would do so by using a known reference (i.e., the color bars).
    Quote Quote  
  4. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    I have recordings of TV shows with shots that were excised from the DVD release. The surrounding scenes exist in both to compare and match.

    The Spider-Man clip is something else, but the idea is the same: the DVD has the correct colors and the VHS capture does not. I want to change the VHS to look as much like the DVD as possible.

    Originally Posted by johnmeyer View Post
    If you somehow want to use this as a way of calibrating your VHS capture chain, then this is most definitely the wrong way to do it. Instead, find a tape that contains color bars at the beginning or end of the tape and use that. While each tape may be somewhat different, this would at least give you a starting point and would do so by using a known reference (i.e., the color bars).
    What readily-available tapes include color bars? The closest I've come across is a grey screen with audio tone at the end of a tape. This wouldn't help for the TV recordings, at any rate.
    Quote Quote  
  5. Could you record something from a DVD without copy protection onto your VHS Recorder and then capture your VHS recording. That way you'll have your own reference original to compare with your capture. You could probably generate (or download) your own test patterns and burn to DVD for subsequent test captures.
    Quote Quote  
  6. Member
    Join Date
    Aug 2010
    Location
    San Francisco, California
    Search PM
    Your red looks a little too hot on the suit.
    Quote Quote  
  7. Try ColourLike().

    http://forum.doom9.org/showthread.php?t=96308

    First run:


    Code:
    dvd = MPEG2Source("Spider-Man FS DVD.d2v").Trim(3,0)
    vhs = AVISource("Spider-Man - JVC HM-DH5U (EDIT, 60p) [reinterlaced].avi").AssumeTFF().ConvertToYV24().AddBorders(1,0,0,0,color_white).Crop(0,0,-1,-0).ConvertToYV12()
    
    dvd.Crop(16,16,-16,-16).WriteHistogram("dvd hist 1.txt", 1) # cropping to ignore black borders, head switching noise, etc.
    vhs.Crop(16,16,-16,-16).WriteHistogram("vhs hist 1.txt", 1)
    
    #vhs.colourlike("vhs hist 1.txt", "dvd hist 1.txt")
    Then run:

    Code:
    dvd = MPEG2Source("Spider-Man FS DVD.d2v").Trim(3,0)
    vhs = AVISource("Spider-Man - JVC HM-DH5U (EDIT, 60p) [reinterlaced].avi").AssumeTFF().ConvertToYV24().AddBorders(1,0,0,0,color_white).Crop(0,0,-1,-0).ConvertToYV12()
    
    #dvd.Crop(16,16,-16,-16).WriteHistogram("dvd hist 1.txt", 1) # cropping to ignore black borders, head switching noise, etc.
    #vhs.Crop(16,16,-16,-16).WriteHistogram("vhs hist 1.txt", 1)
    
    vhs.colourlike("vhs hist 1.txt", "dvd hist 1.txt")
    Quote Quote  
  8. Originally Posted by vaporeon800 View Post
    I have recordings of TV shows with shots that were excised from the DVD release. The surrounding scenes exist in both to compare and match. The Spider-Man clip is something else, but the idea is the same: the DVD has the correct colors and the VHS capture does not. I want to change the VHS to look as much like the DVD as possible.
    OK, I should have thought of that because I've had to do the same thing myself.

    Now that I understand this, the usual way to handle this is to use one of the color correcting options in your NLE. I use Sony Vegas, and I can click on a reference color, and then click on a pixel in the video I want to match, and Vegas will make that pixel the same color as the original.

    You should try to get the histogram (or waveform) of the two clips adjusted to match before you do the color correction.

    Also, as I've said in other posts, it is a lot easier to do color adjustments in an interactive environment, and using tools that were designed specifically for the purpose. AVISynth is not the first tool I would think of using for this purpose.

    Originally Posted by vaporeon800 View Post
    What readily-available tapes include color bars? The closest I've come across is a grey screen with audio tone at the end of a tape. This wouldn't help for the TV recordings, at any rate.
    Well the operative phrase is obviously "readily available." First of all, there are no longer any readily available VHS tapes, since no one sells them any more. The ones I have which contain color bars are generally those that were produced for training and corporate purposes. In the old days the video market was sometimes divided into the consumer, industrial, and broadcast markets. It is the industrial market that usually included color bars so the "roll about" conference room equipment could be calibrated a little bit before the presentation was started.
    Last edited by johnmeyer; 3rd Jul 2016 at 19:21. Reason: typo (changed "to" to "so")
    Quote Quote  
  9. Formerly 'vaporeon800' Brad's Avatar
    Join Date
    Apr 2001
    Location
    Vancouver, Canada
    Search PM
    Originally Posted by jagabo View Post
    Try ColourLike().
    Thanks for the suggestion and script. I've added the result to the first post. To me, at least, the DrDre version looks closer.

    Originally Posted by johnmeyer View Post
    the usual way to handle this is to use one of the color correcting options in your NLE. I use Sony Vegas, and I can click on a reference color, and then click on a pixel in the video I want to match, and Vegas will make that pixel the same color as the original.
    I'll have to give that a try with the TV show recording.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!