VideoHelp Forum




+ Reply to Thread
Results 1 to 25 of 25
  1. I know for tweak color correction,but i am interesting does has some program for avisynth with slider. So that can be easily see result on correction. Its dificult and slow to type saturation=1 and than load script to see results, it would be much easier if some slider(program) exist
    Quote Quote  
  2. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    I use VirtualDub-MPEG2 to view my script.

    1) Load script into VD-MPEG2
    2) Make changes to script.
    3) Save script.
    4) Hit F2 in VD - script is reloaded and your changes are now viewable.

    Total time is almost less than sliding a "slider".
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  3. Member
    Join Date
    Oct 2004
    Location
    Texas, USA
    Search Comp PM
    AvsP will do what you describe.

    There is a flash tutorial at http://www.avisynth.org/qwerpoi/ to get you started.
    Quote Quote  
  4. Member Soopafresh's Avatar
    Join Date
    Jan 2004
    Location
    United States
    Search Comp PM
    AvsP - I second that. Amazing app.
    Quote Quote  
  5. Member FulciLives's Avatar
    Join Date
    May 2003
    Location
    Pittsburgh, PA in the USA
    Search Comp PM
    Please remember that video looks very different on a computer monitor than on a TV so you can tweak all you want but if the computer monitor is your only reference don't expect it to look exactly the same on a TV and since we are mostly making MPEG-2 DVD spec files for DVD Video ... which is played on a TV ... it is an important note I wanted to make.

    - John "FulciLives" Coleman

    I thought ALIENS VS PREDATOR was a lame movie heh :P
    "The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
    EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
    Quote Quote  
  6. How to make a slider with Brightness,saturation and hue. Does this is possible in Avsp
    Quote Quote  
  7. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    Try:

    TWEAK([<"hue",-180,180,106>],[<"sat",0,10.0,3.2>],[<"bright",-255.0,255.0,0.0>],[<"cont",0.0,10.0,1.0>])

    Haven't used this before, but if I am understanding the syntax...


    EDIT: Added the last ")".
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  8. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    This works:

    Code:
    version()
    
    converttoyv12()
    
    TWEAK([<"hue", -180, 180, -180>],[<"sat", 0, 10.0, 0.5>],[<"bright", -255.0, 255.0, -162.8>],[<"cont", 0.0, 10.0, 5.3>])
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  9. Thanks for script, but what would be default parametars? When all set at 0 picture is all dark.
    Quote Quote  
  10. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    Not every parameter has a default of zero. Look at the individual filter's documentation to arrive at the correct default values.
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  11. Avisynth site down is shut down and cannot find documentation about tweak filter to see default parametars.
    Quote Quote  
  12. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    If you installed Avisynth, then there is a DOCS folder. Tweak is a internal filter, so the docs are there.
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  13. Found tweak in documentation.

    Default parametars is:

    Hue=0
    Sat=1
    Bright=0
    Cont=1

    I have two questions:

    1. In your code where to put sse = true. In documention sais that with sse=true enable SSE code to work faster.
    Code:
    TWEAK([<"hue", -180, 180, 0>],[<"sat", 0, 10.0, 1.0>],[<"bright", -255.0, 255.0, 0.0>],[<"cont", 0.0, 10.0, 1.0>])
    2. Can make in avsp when load that code that stay at default parametars(Hue=0, Sat=1
    Bright=0, Cont=1 ?

    thanks
    Quote Quote  
  14. Member vhelp's Avatar
    Join Date
    Mar 2001
    Location
    New York
    Search Comp PM
    Evening everyone.

    SLK001 wrote:
    4) Hit F2 in VD - script is reloaded and your changes are now viewable.
    Using v1.5.1.1a here.. its the F5 key. Maybe you ment it too.

    Been aken to give AvP a try, but its a .NET tool. Oh well.. I got rid of
    a long time ago. Foowee on .NET

    But I thought that someone created a front-end DLL that others could hook
    into and create plugins just for this -- WYSIWYG -- maybe on doom9 or
    some place else, perhaps.

    -vhelp 4138
    Quote Quote  
  15. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    Originally Posted by vhelp
    Evening everyone.

    SLK001 wrote:
    4) Hit F2 in VD - script is reloaded and your changes are now viewable.
    Using v1.5.1.1a here.. its the F5 key. Maybe you ment it too.

    Been aken to give AvP a try, but its a .NET tool. Oh well.. I got rid of
    a long time ago. Foowee on .NET

    But I thought that someone created a front-end DLL that others could hook
    into and create plugins just for this -- WYSIWYG -- maybe on doom9 or
    some place else, perhaps.

    -vhelp 4138

    No, in the later version 1.6.11 (not sure if it is the latest), it's F2.
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  16. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    Do we still allow image posting?



    (Yes, it does... I had to re-read Jimmy's "SCREEN POSTING GUIDE" to get it right!)
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  17. Member vhelp's Avatar
    Join Date
    Mar 2001
    Location
    New York
    Search Comp PM
    Ok. Here's my version..



    -vhelp 4141
    Quote Quote  
  18. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    We have two different programs - VirtualDubMod and VirtualDub-MPEG2. Both developed from the same core program, but they are diverging quite a bit from each other and the original.

    I like the MPEG2 version because it will open any MPEG file or VOB file that I have, plus it will do everything that VD can do.
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  19. I think that correct way for making tweak slider in avsp would be:

    Code:
    TWEAK([<"hue", -180.0, 180.0, 0.0>],[<"sat", 0.0, 10.0, 1.0>],[<"bright", -255.0, 255.0, 0.0>],[<"cont", 0.0, 10.0, 1.0>])
    For example in documentation sais:
    Code:
    Hue: (-180.0 to +180.0, default 0.0)
    From that -180 is the Min value, +180 is Max value and 0.0 is default value. I think that this is proper way. What others think about that?
    Quote Quote  
  20. Member
    Join Date
    May 2001
    Location
    United States
    Search Comp PM
    The third item should probably start at the default value. In AvsP, this value is the currently selected value. That's why in my code examples, it showed a strange value, because that's where my slider was when I grabbed the code.

    By George, I think you've got it!
    ICBM target coordinates:
    26° 14' 10.16"N -- 80° 16' 0.91"W
    Quote Quote  
  21. Member
    Join Date
    Oct 2006
    Location
    Australia
    Search Comp PM
    Sorry to kind of resurect this thread, but in Avsp, how do you get the slider bar to show up so that you can adjust the parameters when using certain filters.

    ie. Tweak()
    like in this screenshot
    https://www.videohelp.com/toolsimages/avsp_957.jpg

    EDIT: Aaah forget it. Figured it out.
    For anyone else intrested, Find out how here. You gotta set them up yourself
    http://www.avisynth.org/qwerpoi/UserSliders.html
    Quote Quote  
  22. Member
    Join Date
    Apr 2005
    Location
    Bremerton, WA USA
    Search Comp PM
    BTW, a little pointer for the value sliders - the Hue adjustment in Tweak is way, way more adjustment range than typically needed. So, I use ([<"hue", -30.0, 30.0, 0.0>] which is plenty of adjustment range and far less fussy to adjust. This can be used in any of the slider ranges.
    Quote Quote  
  23. Member Hittz's Avatar
    Join Date
    Dec 2006
    Location
    United States
    Search Comp PM
    I have used AvsP for a short time and find it very helpful as an avs editor. My question: Is there a way to store these "User Slider" functions in AvsP so they may be called upon? The present procedure I use when I want to use sliders is to copy and paste it into my script from notepad. Works fine but still would prefer to call upon it from within AvsP.

    The User slider I use is the same (or very similar to the examples given in the above posts, In addition I use an Asharp Slider right under the Tweak Parameters slider:

    [<separator="tweak parameters">]
    Tweak([<"hue",-180,180,0>],[<"sat", 0, 10, 1.0>],[<"bright", -255, 255,1.0>],[<"cont",0,10,1.0>])
    [<separator="Asarp">]
    Asharp([<"Asharp", 0, 3, 0.0>])
    Quote Quote  
  24. Member Alex_ander's Avatar
    Join Date
    Oct 2006
    Location
    Russian Federation
    Search Comp PM
    Originally Posted by Hittz
    I have used AvsP for a short time and find it very helpful as an avs editor. My question: Is there a way to store these "User Slider" functions in AvsP so they may be called upon? The present procedure I use when I want to use sliders is to copy and paste it into my script from notepad. Works fine but still would prefer to call upon it from within AvsP.
    You don't need to copy/paste anything to get user sliders with newer versions of AVSP (e.g. 2.0). You only need to set initial values of the parameters you plan to adjust. Once you move the time slider, a set of filter names appears to the right from picture preview. Clicking a filter name makes sliders shown for the parameters typed for that filter (be it internal filter or external plugin). After changing slider position the values change in the script and can be saved with the script. When you open the script next time, the sliders are still there.
    Quote Quote  
  25. Member Hittz's Avatar
    Join Date
    Dec 2006
    Location
    United States
    Search Comp PM
    LOLOLOLOLOLOLO I laugh at myself And all the time I've been writing extrrrrrrra text. Like this?

    Tweak(0.0,1.0,8,1.0)

    I tried it and, BOOM the sliders came right up. Thank you Alex_Ander for your help. There is a lot of talent here on VideoHelp.com
    Quote Quote  



Similar Threads

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