VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. hello

    first of i say i only have found english guides about these and my english suck so i dont really understand them, also this seem a very noob n basic question so i searched here for a wile but could not find straight answer


    ok so here we go

    i have this mpeg2 352*480 that i want to put on a dvd. I found a avisynth filter that extremly fix all the noisy problems when i load this mpeg2 with the filter on in vdubmod, but here i am, cant understand the next step. The avs procces step. Spanish guides i found end here "finally Load to vdubmod" and some english ones that does say something i dont really get it

    id like to keep the mpeg2 format n same size if possible


    the script is this:

    LoadPlugin("C:\avisynth plugins\dfttest.dll")
    LoadPlugin("C:\avisynth plugins\Deen.dll")
    LoadPlugin("C:\avisynth plugins\Deblock.dll")
    LoadPlugin("C:\avisynth plugins\Toon.dll")
    LoadPlugin("C:\avisynth plugins\aWarpSharp.dll")
    LoadPlugin("C:\avisynth plugins\RemoveGrain.dll")
    LoadPlugin("C:\avisynth plugins\Unfilter.dll")
    LoadPlugin("C:\avisynth plugins\Mt_MaskTools.dll")
    LoadPlugin("C:\avisynth plugins\SangNom.dll")




    Import("C:\avisynth plugins\DeHalo_Alpha.avsi")
    Import("C:\avisynth plugins\LimitedSharpenFaster.avsi")
    Import("C:\avisynth plugins\AAA.avsi")
    Import("C:\avisynth plugins\Remation.avsi")



    DirectShowSource("C:\Documents and Settings\Usuario\Escritorio\todotierra.mpv")

    Converttoyv12()
    AddBorders(4, 0, 4, 0)
    Remation(Xres=352,Yres=480)
    Crop(4,0,-4,0)





    im a ashamed with this issue havin so much guides n i cant figure out, im dumb

    can someone help take time to explain this basics or point me to very noob easy english guide?

    thanks a lot
    Quote Quote  
  2. Hi-

    First, VDubMod isn't an MPEG-2 encoder. You can use it for frameserving to an MPEG-2 encoder, but that kind of defeats the purpose of using AviSynth in the first place. After testing the script in VDubMod to make sure it's good and there are no error messages, open it in the MPEG-2 encoder of your choice, like maybe HCEnc (good and free).

    Second, that script as it stands won't make DVD compliant video. You're cropping 4 pixels off of both the left and right sides which makes the final resolution 344x480 - no good. Either add back some black after the Crop line:

    AddBorders(4,0,4,0)

    Or resize back to the way it was before:

    Lanczos4Resize(352,480)

    Or remove the Crop line in the script.

    And I wouldn't use DirectShowSource on an MPEG, but MPEG2Source combined with a DGDecode.dll LoadPlugIn line and a D2V project file made using DGIndex, but if what you're doing works for you that's all that counts.

    If you just want to burn the result to DVD as a data file, then the resolution doesn't make any difference, but not all DVD players will play it. If you want to make a real DVD, you'll have to use an acceptable DVD resolution. Those can be found here:

    https://www.videohelp.com/dvd
    Quote Quote  
  3. thanks lot man, really

    ill try that other option with DGIndex, DirectShowSource works fine but is always good 2 test other methods, specially if u r a beginner like me



    saluts
    Quote Quote  



Similar Threads

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