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
+ Reply to Thread
Results 1 to 3 of 3
-
-
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
Similar Threads
-
What is the best way to apply Prolimatech PK-1?
By Stealth3si in forum ComputerReplies: 5Last Post: 6th Apr 2012, 09:37 -
How to apply filters to video?
By kaona in forum Newbie / General discussionsReplies: 0Last Post: 13th Apr 2011, 13:59 -
best DVD recorder filter & ATI AIW filter
By VCRcomp in forum RestorationReplies: 1Last Post: 27th Jan 2011, 17:27 -
Directshow filter for decoding MPEG-2 TS
By roflwaffle in forum Video ConversionReplies: 5Last Post: 17th Aug 2010, 07:55 -
How to apply a filter to just a part of the movie with VirtualDub
By Drakul in forum EditingReplies: 5Last Post: 19th Sep 2008, 17:08