secondly , nup i dont noe how to use avisynth
help me with widescreen please
- DemonSpawn
- Joined: Thu Apr 03, 2003 1:18 pm
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
- SQ
- Doesn't have a title
- Joined: Fri Nov 08, 2002 8:11 pm
- Status: youtube.com/SQ
- Location: Upstate NY
- Contact:
Thank you, Captain Obvious.shirohamada wrote:if the source is 16:9 it is already widescreen.
Discord: @standardquip (Vars)
BentoVid.com
BentoVid.com
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Well yes, WMM forces everything into a 4:3 aspect ratio. But usually when you want to make a widescreen video, you make your <i>source</i> widescreen <i>before</i> editing with it.Ninjafox wrote:ohhh i see, told ya im noob lol -_- . umm well when u export from movie maker thats the aspect ratio right now. So is that 4:3?
One way to do this is with AVISynth. Assuming you've got DVD source that's normal 4:3 TV (and assuming it IVTC's nicely), you want to make a script that looks like this:
MPEG2Source("C:\mypath\myd2v.d2v")
# note: the next two lines may require tweaking if the source doesn't IVTC nicely
Telecide(1)
Decimate(5)
LanczosResize(640,480)
Crop(0,-64,0,-64)
AddBorders(0,64,0,64)
This will produce a letterboxed 640x480 video, which is perfect for working with in Windows Movie Maker. You may find that you don't want to crop your picture quite that much; you can use lower values, but for best compression later on, you'll want to use a multiple of 16. And make sure the borders you add in the last step are exactly as big as the regions you cropped.
HOWEVER. If the DVD is a widescreen source (movies, Chobits, Haibane Renmei, and certain other series), the above script won't give you what you want. You need to determine whether the movie is letterboxed (big ol' black borders on it; ex.: the Evangelion movies (because the people at Manga Entertainment can't author a good DVD)) or anamorphic (takes up the full 720x480 resolution; ex.: <i>Spirited Away</i>). You can tell this simply by looking at your D2V project file and seeing whether there are black borders or not.
If it's letterboxed, then all you need is:
MPEG2Source("C:\mypath\myd2v.d2v")
# note: the next two lines may require tweaking if the source doesn't IVTC nicely;
# if you used Force FILM in DVD2AVI, remove them
Telecide(1)
Decimate(5)
LanczosResize(640,480)
If it's anamorphic, then use this:
MPEG2Source("C:\mypath\myd2v.d2v")
# note: the next two lines may require tweaking if the source doesn't IVTC nicely;
# if you used Force FILM in DVD2AVI, remove them
Telecide(1)
Decimate(5)
LanczosResize(640,352)
AddBorders(0,64,0,64)
I hope this helps.
Scintilla.
- AMVfreak
- Joined: Sun Mar 14, 2004 2:43 pm
- Location: LalalalaBoinkBoink, bouncing in my head.


