VideoHelp Forum




+ Reply to Thread
Results 1 to 17 of 17
  1. Guys i've got a problem with AviSynth or MeGUI personally, look at this pic shows the problem

    Name:  Capture.PNG
Views: 740
Size:  6.7 KB

    Which version do i have to use?
    Quote Quote  
  2. Member DB83's Avatar
    Join Date
    Jul 2007
    Location
    United Kingdom
    Search Comp PM
    Copy/paste your script here.

    We may be able to assist then.
    Quote Quote  
  3. This is the script:


    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\RemoveGrain. dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\Repair.dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\SmoothD.dll" )
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\FFT3DFilter. dll")


    DirectShowSource("C:\Users\YasTon\Desktop\Encoded\ ep01.ts", fps=25.000, audio=false, convertfps=true).AssumeFPS(25,1)
    #deinterlace
    #crop
    LanczosResize(720,405) # Lanczos (Sharp)
    #denoise

    Tweak(hue=2,sat=1.3,bright=1.2,cont=1)
    ConvertToYV12()
    Quote Quote  
  4. Originally Posted by yaston View Post
    This is the script:


    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\RemoveGrain. dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\Repair.dll")
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\SmoothD.dll" )
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86 \MeGUI_2418_x86\tools\avisynth_plugin\FFT3DFilter. dll")


    DirectShowSource("C:\Users\YasTon\Desktop\Encoded\ ep01.ts", fps=25.000, audio=false, convertfps=true).AssumeFPS(25,1)
    #deinterlace
    #crop
    LanczosResize(720,405) # Lanczos (Sharp)
    #denoise

    Tweak(hue=2,sat=1.3,bright=1.2,cont=1)
    ConvertToYV12()


    Is there a space at the beginning of the filename ? Or is that the message board or my broswer playing tricks?

    "C:\Users\YasTon\Desktop\Encoded\ ep01.ts"

    or

    "C:\Users\YasTon\Desktop\Encoded\ep01.ts"

    Open the avs file in something like vdub, is there an error message ? If so, post it verbatim
    Quote Quote  
  5. No, there's no space... and by the way this script "ConvertToYV12()" in the end i didn't put, it has been done automatically !!!
    Quote Quote  
  6. Groucho2004
    Guest
    Apparently megui produces a log. Check if it contains any meaningful error message.
    Last edited by Groucho2004; 4th Jan 2015 at 15:59.
    Quote Quote  
  7. Member DB83's Avatar
    Join Date
    Jul 2007
    Location
    United Kingdom
    Search Comp PM
    Well I see a space as well.

    And in my limited knowledge of avisynth, is ").AssumeFPS(25,1)" valid code ? ie AFTER the ')' of the source video ?

    Wouldn't that be better on its own line ?
    Quote Quote  
  8. Groucho2004
    Guest
    Originally Posted by DB83 View Post
    Well I see a space as well.
    Avisynth would throw a "LoadPlugin" error if it encountered something like this. Of course, if megui does not handle that error, the user will be left guessing.

    Originally Posted by DB83 View Post
    And in my limited knowledge of avisynth, is ").AssumeFPS(25,1)" valid code ? ie AFTER the ')' of the source video ?
    The line is perfectly valid.
    Quote Quote  
  9. Member
    Join Date
    May 2014
    Location
    Memphis TN, US
    Search PM
    This line is post #3 is an error:
    Originally Posted by yaston View Post
    Code:
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86\MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    It should be:
    Code:
    LoadCPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86\MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    Why are you loading ffms2 if you're using DirectShowSource?
    - My sister Ann's brother
    Quote Quote  
  10. Groucho2004
    Guest
    Originally Posted by LMotlow View Post
    This line is post #3 is an error:
    Originally Posted by yaston View Post
    Code:
    LoadPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86\MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    It should be:
    Code:
    LoadCPlugin("C:\Users\YasTon\Desktop\MeGUI_2418_x86\MeGUI_2418_x86\tools\avisynth_plugin\ffms2.dll")
    How do you know that he's loading the C-plugin?

    Originally Posted by LMotlow View Post
    Why are you loading ffms2 if you're using DirectShowSource?
    I suppose that's the script megui creates and he probably does not have the knowledge to modify it.
    Quote Quote  
  11. Originally Posted by yaston View Post
    LanczosResize(720,405) # Lanczos (Sharp)
    I can see an odd height for resize, should be even. MeGui does not report type of avisynth returned error?
    Drop that script into VirtualDub or MPC-HC, it should be more specific.
    Quote Quote  
  12. Groucho2004
    Guest
    Originally Posted by _Al_ View Post
    Originally Posted by yaston View Post
    LanczosResize(720,405) # Lanczos (Sharp)
    I can see an odd height for resize, should be even. MeGui does not report type of avisynth returned error?
    Drop that script into VirtualDub or MPC-HC, it should be more specific.
    Well spotted, that's probably the culprit. As for megui's error handling - I better won't comment or I might get banned forever from this forum.
    Quote Quote  
  13. Member
    Join Date
    May 2014
    Location
    Memphis TN, US
    Search PM
    Originally Posted by Groucho2004 View Post
    How do you know that he's loading the C-plugin?
    How do you know he isn't?
    - My sister Ann's brother
    Quote Quote  
  14. I understood nothing, i don't have knowledge about it just simple ways... thank you guys ^^

    Actually i need some to handle it by TeamViewer if you want to...
    Quote Quote  
  15. Groucho2004
    Guest
    Originally Posted by LMotlow View Post
    Originally Posted by Groucho2004 View Post
    How do you know that he's loading the C-plugin?
    How do you know he isn't?
    I don't - which is the point.
    Quote Quote  
  16. Member DB83's Avatar
    Join Date
    Jul 2007
    Location
    United Kingdom
    Search Comp PM
    Originally Posted by yaston View Post
    I understood nothing, i don't have knowledge about it just simple ways... thank you guys ^^

    Actually i need some to handle it by TeamViewer if you want to...
    Now I might sound hard but if you do not understand then you should not be attempting to use tools that have a steep learning curve. Yeah. Most of avisynth, as you might have gathered, goes over my head.

    Try more basic tools such as avidemux or handbrake.
    Quote Quote  
  17. Member
    Join Date
    May 2014
    Location
    Memphis TN, US
    Search PM
    Originally Posted by Groucho2004 View Post
    Originally Posted by LMotlow View Post
    Originally Posted by Groucho2004 View Post
    How do you know that he's loading the C-plugin?
    How do you know he isn't?
    I don't - which is the point.
    Whatever, whether or not MeGUI puts the line there is up for debate, I just don't use most of the free apps if there is serious mod to be done on a source, so I can't say. There are different editions of ffms2 and Avisynth, and the setup I've been using requires LoadCPlugin.

    In any case IMO the O.P. is apparently trying to do stuff that requires Avisynth. Anyway we have no original sample that I've seen anywhere, so a lot of guessing will result from that.
    - My sister Ann's brother
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!