|
|
| cricket |
| Posted: May 26 2004, 04:54 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
Following is the avs script I am running. It loads fine however it does not show the output video through avisynth in VdubMod. However if I remove Smoothdeintelace command I can see the video then. Also when Smoothdeinterlace loads if I apply LanczosResize it gives me error in line 4. Any idea guys..
cheers
MPEGSource("C:\Documents and Settings\cricket\Desktop\AVI\DVD\And1\And1.d2v") SmoothDeinterlace() Crop(20,8,-20,-24) #LanczosResize(720,576) |
 |
| cricket |
| Posted: May 27 2004, 04:35 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 106
Member No.: 9712
Joined: 6-April 04

|
solved it...this smoothdeintelace works on YUY2 formats. Here is my new script:
ConvertToYUY2() SmoothDeinterlace(tff=true, showlace=true) Crop(20,8,-20,-24) LanczosResize(720,576)
LanczosResize works now as well..
|
 |
| Bogalvator |
| Posted: May 29 2004, 12:39 AM |
 |
|
Unregistered

|
Use converttoyuy2(interlaced=true) otherwise you'll incorrect colour upsampling. |
 |