VideoHelp Forum




+ Reply to Thread
Results 1 to 9 of 9
  1. I tried to open a movie using this script below with VirtualDub

    AviSource("D:\The Never Ending Story2.avi")
    Tweak(Bright=10)

    but i get this error up in VirtualDub have i done script wrong then

    Quote Quote  
  2. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    Looks like Tweak expects YUV colourspace. Try adding ConvertToYUV() before Tweak.
    Read my blog here.
    Quote Quote  
  3. I changed script to below as you said guns1inger

    AviSource("D:\The Never Ending Story2.avi")
    ConvertToYUV()Tweak(Bright=10)

    but now I get this error

    Quote Quote  
  4. He means ConvertToYUY2(). Or you can also ConvertToYV12() if you prefer.

    It's nothing you couldn't have figured out yourself:

    http://www.avisynth.org/Convert
    Quote Quote  
  5. well its proberly easy to you. but this avisynth looks hard to work out making the scripts, maybe i am doing something wrong why dont they just have pre-made scripts
    Quote Quote  
  6. Member
    Join Date
    Dec 2004
    Location
    Australia
    Search Comp PM
    What codec is the avi using? Seems unikely that it is really RGB, probably means that the decoder is broken and serving RGB. This used to happen with DivX3.11alpha as I recall. If that is what you have, then try ffdshow for decoding.
    Quote Quote  
  7. Member vhelp's Avatar
    Join Date
    Mar 2001
    Location
    New York
    Search Comp PM
    Morning everyone.

    Looks like you missed a '.' and bad function name, in that script

    your source:

    AviSource("D:\The Never Ending Story2.avi")
    ConvertToYUV()Tweak(Bright=10)

    note, there is no AVIsynth function called ConvertToYUV() that I know of.
    This is what is generating the error.. that, and the missing '.' inside
    your script, above.

    correctd source:

    AviSource("D:\The Never Ending Story2.avi")
    ConvertToYUY2().Tweak(Bright=10)

    ..should open your video source, now.

    -vhelp 3908
    Quote Quote  
  8. Good find, vhelp. I didn't notice it was missing the period.
    Quote Quote  
  9. VH Veteran jimmalenko's Avatar
    Join Date
    Aug 2003
    Location
    Down under
    Search PM
    You may want to investigate what is causing your brightness issue in your DVD to AVI process too.
    If in doubt, Google it.
    Quote Quote  



Similar Threads

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