Jump to content

Chad Dunham

Members
  • Posts

    29
  • Joined

  • Last visited

About Chad Dunham

  • Birthday 09/18/1973

Contact Methods

  • Website URL
    http://www.8whitestarfengshui.com/
  • ICQ
    0
  • Yahoo
    chadedunham@att.net

Profile Information

  • Gender
    Male
  • Location
    Indianapolis, IN
  • Interests
    Feng Shui, Macross, Gundam, Star Wars, Star Trek, computers, dogs, etc.

Chad Dunham's Achievements

Cannon Fodder

Cannon Fodder (1/15)

0

Reputation

  1. Hi, I have the original Imai kit and its instructions. Best I can tell, the paint mixing instructions are: "Middle Red" = H-13 flat red 90% + H-14 orange 10%. "Middle Gray" = H56 medium blue 50% + H61 ? - 50% "Sea Green" = H-56 medium blue 60% + H-59 ? 40% The mixing instructions are specifically for Gunze Sangyo paint, AFAIK. Hope this helps, Chad
  2. Not quite -- the different Video Essentials editions are coded to represent either NTSC, PAL or HDTV standards, so as long as one calibrates to the same standard across the different platforms, the format of the Video Essentials media shouldn't matter.
  3. VERY nice work! I love the shade of blue you used.
  4. The old Imai and Arii kits also have paint mixing guides for Gunze Sangyo colors. For the VF-1A, the colors are as follows: "Bare White": 5% H-25 Sky Blue + 45% H-31 White-Green + 50% H-11 Flat White "Light Sepia": 50% H-44 (Don't know the color name) + 50% H-47 Red-Brown "Soft Stone": 95% H-44 (?) + a drop of H-2 Black + 5% Flat Clear The above are for the "real color". For the "anime color" they call for H-27 Light Brown for "Soft Stone", H-66 RLM Sandy Brown (?) 79 for "Light Sepia" and H-11 Flat White for "Bare White".
  5. Boinger and Gubaba are enhancing the subtitles and muxing together the video I'm running through the script, their updated subtitles and the Japanese audio for the SDFM TV series. You can download the results from here: http://rapidshare.com/users/SDLIT9 More to come. Enjoy!
  6. Thanks! An upload project is in the works
  7. I've done a test encode of about 2500 frames of the first episode of the Animeigo set of the TV show with the script, and am experimenting with some color correction processes on it. The effects of the stabilizing and degraining script is much more subdued on this footage, but it still makes some difference. The color correction is still very much a work in progress. Currently, it just takes an automated white balance filter, then merges the output of that with the original input, so you get a 50/50 blend. To me, the MKV file of the HD remaster memorial set has much better color, but the detail on the download I have seems pretty blurred out. The first frame is the Animeigo ripped video. The second frame is processed through the scripts. The final frame is from the HD MKV file.
  8. I've heard good things about Neatvideo, but haven't used it much. Here's a version for use with DVD rips of the TV series. It's largely the same, but uses a DGIndex project file as the input and has different crop and resize settings than DYRL. I'm playing around with the Animeigo footage to see if it can be redeemed at all, but there's no way the colors will ever match those of the memorial box set. And it's actually an AVISynth script, not VirtualDub ################################################################################ ####### ############################ GOUT Filter By G-force V.4.00 ############################ ################################################################################ ####### Mpeg2Source("G:\Super Dimension Fortress Macross\Animeigo Video\Episode 01 - 0xE0 - Video - MPEG-2 - 720x480 (NTSC) - 4~3.D2V") Crop(4,0,-2,-0,align=true).AddBorders(0,0,0,0) ########## global motion stabilization stage temp = last.TemporalSoften(7,255,255,25,2) Interleave(temp.Repair(last.TemporalSoften(1,255,255,25,2)),last) DePan(last,data=DePanEstimate(last,trust=0,dxmax=1,dymax=0),offset=-1) SelectEvery(2,0) ########## local motion stabilization/degrain stage source = last sigma = 5 filt = source.fft3dfilter(sigma=sigma,sigma2=sigma*.75,sigma3=sigma*.5,sigma4=sigma*.25 ,bt=5,sharpen=.3) Median1(source.RemoveGrain(12),temp,filt) fw_vec2 = last.MVAnalyse(isb=false,delta=2,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) fw_vec1 = last.MVAnalyse(isb=false,delta=1,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) bw_vec1 = last.MVAnalyse(isb=true, delta=1,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) bw_vec2 = last.MVAnalyse(isb=true, delta=2,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) source.MVDegrain2(bw_vec1,fw_vec1,bw_vec2,fw_vec2,thSAD=400,idx=2) Median1(source,last,filt,chroma="copy first") last.MVDegrain2(bw_vec1,fw_vec1,bw_vec2,fw_vec2,thSAD=300,thSCD1=150,thSCD2=75,i dx=3) ########## sharpening Contra(last,source) ########## restore stars stage prest = last prest.MT_Binarize(threshold=20,upper=true).MT_Expand() MT_Merge(prest,source,last,chroma="copy first") ########## anti-aliasing last.EEDI2().Repair(last.NNEDI(dh=true,field=1),9) Spline16Resize(640,480) ################################################################################ ####### Function Contra(clip denoised, clip orig) {# re-write of Didée's contra sharpening routine from TemporalDegrain.avs Interleave(denoised,denoised.RemoveGrain(12,-1),denoised.RemoveGrain(4,-1)) Clense(reduceflicker=false,grey=true) SelectEvery(3,1) MT_MakeDiff(last,last.RemoveGrain(12,-1).RemoveGrain(12,-1)) last.Repair(MT_MakeDiff(orig,denoised),1,-1).MT_LUTxy(last,"x 128 - abs y 128 - abs < x y ?") denoised.MT_AddDiff(last,chroma="copy first") Return(last) } ################################################################################ ####### Function Median1(clip input_1, clip input_2, clip input_3, string "chroma") {# median of 3 clips from Helpers.avs by G-force chroma = default(chroma,"process") #default is "process". Alternates: "copy first" or "copy second" Interleave(input_1,input_2,input_3) chroma == "process" ? Clense(reduceflicker=false) : Clense(reduceflicker=false,grey=true) SelectEvery(3,1) chroma == "copy first" ? last.MergeChroma(input_1) : chroma == "copy second" ? last.MergeChroma(input_2) : last Return(last) }
  9. I haven't had time to sit through the whole movie and watch it yes, but so far it's looking (and sounding) very impressive!
  10. Here is the script. Copy and paste the text below into Notepad and save with an .AVS extension. ################################################################################ ####### ############################ GOUT Filter By G-force V.4.00 ############################ ################################################################################ ####### ########## Set the path of the MKV file. Use DirectShowSource to work with MKV DirectShowSource("F:\Videos\Macross Do You Remember Love HD Remastered.mkv") ########## Crop the black borders from the edges of the frames for processing purposes Crop(24,24,-20,-20,align=true).AddBorders(0,0,0,0) ########## global motion stabilization stage temp = last.TemporalSoften(7,255,255,25,2) Interleave(temp.Repair(last.TemporalSoften(1,255,255,25,2)),last) DePan(last,data=DePanEstimate(last,trust=0,dxmax=1,dymax=0),offset=-1) SelectEvery(2,0) ########## local motion stabilization/degrain stage source = last sigma = 5 filt = source.fft3dfilter(sigma=sigma,sigma2=sigma*.75,sigma3=sigma*.5,sigma4=sigma*.25 ,bt=5,sharpen=.3) Median1(source.RemoveGrain(12),temp,filt) fw_vec2 = last.MVAnalyse(isb=false,delta=2,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) fw_vec1 = last.MVAnalyse(isb=false,delta=1,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) bw_vec1 = last.MVAnalyse(isb=true, delta=1,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) bw_vec2 = last.MVAnalyse(isb=true, delta=2,pel=2,sharp=1,overlap=4,plevel=0,idx=1,dct=1) source.MVDegrain2(bw_vec1,fw_vec1,bw_vec2,fw_vec2,thSAD=400,idx=2) Median1(source,last,filt,chroma="copy first") last.MVDegrain2(bw_vec1,fw_vec1,bw_vec2,fw_vec2,thSAD=300,thSCD1=150,thSCD2=75,i dx=3) ########## sharpening Contra(last,source) ########## restore stars stage prest = last prest.MT_Binarize(threshold=20,upper=true).MT_Expand() MT_Merge(prest,source,last,chroma="copy first") ########## anti-aliasing last.EEDI2().Repair(last.NNEDI(dh=true,field=1),9) ########## Resize for DVD resolution Spline16Resize(718,436).AddBorders(2,22,0,22) ################################################################################ ####### Function Contra(clip denoised, clip orig) {# re-write of Didée's contra sharpening routine from TemporalDegrain.avs Interleave(denoised,denoised.RemoveGrain(12,-1),denoised.RemoveGrain(4,-1)) Clense(reduceflicker=false,grey=true) SelectEvery(3,1) MT_MakeDiff(last,last.RemoveGrain(12,-1).RemoveGrain(12,-1)) last.Repair(MT_MakeDiff(orig,denoised),1,-1).MT_LUTxy(last,"x 128 - abs y 128 - abs < x y ?") denoised.MT_AddDiff(last,chroma="copy first") Return(last) } ################################################################################ ####### Function Median1(clip input_1, clip input_2, clip input_3, string "chroma") {# median of 3 clips from Helpers.avs by G-force chroma = default(chroma,"process") #default is "process". Alternates: "copy first" or "copy second" Interleave(input_1,input_2,input_3) chroma == "process" ? Clense(reduceflicker=false) : Clense(reduceflicker=false,grey=true) SelectEvery(3,1) chroma == "copy first" ? last.MergeChroma(input_1) : chroma == "copy second" ? last.MergeChroma(input_2) : last Return(last) }
  11. I'm a fan of both Macross and Star Wars, and have just finished a project related to both. I love the clarity of the HD Remaster version of DYRL, but the grain is awful! Over at http://originaltrilogy.com, a forum contributor named G-Force has developed an AVISynth script to cleanup the original unaltered trilogy DVD release from a few years ago, with the aim of eliminating excess film grain and "wobble" from the footage. I took his stabilization script and modified it to work on the MKV file of DYRL. After processing this, I then combined the footage with the Japanese audio, Hikuro's English dub audio, and two subtitle tracks into an "ultimate edition" DYRL. I never realized how bad the FX bootleg of DYRL looked until comparing it to the output of this script. I don't have any web storage available to share the output, but will be happy to provide it to anyone who can offer it for download. I will post the AVS script here as well, if anyone is interested in using it. Here are a couple of comparison shots:
  12. I'm having a different problem -- I was able to download the file, but when I try to corrupt it I get a message that the archive is corrupt.
×
×
  • Create New...