Some of my files are 352 x 480. I use this script to convert to 720 x 480.
Mpeg2Source("I:\New\1 = Test files\352 x 480.d2v", CPU=6)
BicubicResize(704,480)
AddBorders(8, 0, 8, 0)
Is there a better script I can use to resize in order to give the best quality?
The script must take 3 hours or less with a 1 hour 15 minute file.
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by VideoFanatic; 29th Sep 2011 at 23:06.
-
Depends on the material. Try nnedi3.
Mpeg2Source("I:\New\1 = Test files\352 x 480.d2v", CPU=6)
nnedi3_rpow2(rfactor=2,cshift="spline36resize", fwidth=704, fheight=480)
AddBorders(8, 0, 8, 0)
If the source has lots of DCT ringing noise it will be accentuated. Try using Deen() to reduce it first.
Mpeg2Source("I:\New\1 = Test files\352 x 480.d2v", CPU=6)
Deen(thry=6, thruv=8) #modify to suit source
nnedi3_rpow2(rfactor=2,cshift="spline36resize", fwidth=704, fheight=480)
AddBorders(8, 0, 8, 0) -
Since the source is 352x480, I think using nnedi3_rpow2 will double the height to 960 with nnedi3, then downsize back to 480 with spline36resize, causing vertical blurring.
Probably better just to use Spline36Resize directly instead of the original BicubicResize.
Alternatively, use TurnRight().nnedi3(dh=true).TurnLeft(), but this introduces a slight centre shift. -
LSFmod is good for sharpening and resizing. I use it for crappy sources:
Code:LSFmod(strength=100, dest_x=704, dest_y=480, defaults="fast")
Similar Threads
-
Should i use and avisynth script for Dv ?
By smartel in forum Newbie / General discussionsReplies: 0Last Post: 10th Mar 2012, 08:29 -
Need Help with My AviSynth Script
By Enkidu in forum Newbie / General discussionsReplies: 3Last Post: 21st Jan 2011, 21:37 -
Avisynth Script Help
By jamhat in forum Video ConversionReplies: 2Last Post: 29th Nov 2009, 06:13 -
Avisynth script
By daz2712 in forum Video ConversionReplies: 2Last Post: 19th Aug 2009, 11:08 -
avisynth script
By magenta2007 in forum SVCD2DVD & VOB2MPGReplies: 7Last Post: 25th Sep 2007, 11:29