Resizing has to be one of the hardest things to get right when converting a avi file to dvd. I don't think I've ever had one of the standard resolutions that are explained in the guides on one of my moviclips. It would be nice if someone could point me in the direction of a guide to explain it properly, mainly I don't understand how you know if you should put 4:3 or 16:9 in the encoding programs. I usually allways put 16:9 since I'm dealing with movies despite their odd resolutions.
Anyway, to make a long story short, I usually have FitCD create my avisynth script and it resizes for me automatically so I don't have to worrie about that but this time I've got a movie that seems to have a resolution FitCD dosn't like and there fore it puts black bars on the side (left & right) which is something I definitely don't want.
So basically what this whole thing boils down to is how should I resize a movie with a resolution of:
576x448
to make it look good. I should probably tell you that this is a anime clip made for tv so it probably was 4:3 at one point. Furtheremore it is 23.9fps and even though I live in a PAL country my player reads 24fps just fine so I don't know if I have to do a framerateconversion?
Here's the script I have now:
What should it really look like?Code:# -= AviSynth v2.0.8.0 script by FitCD v1.2.8 =- AVISource("H:\session21.avi") BicubicResize(688,480,0,0.6,0,4,576,440) AddBorders(16,0,16,0) #Trim(0,35678).FadeOut(150) ConvertToYUY2() # For VirtualDub or CCE
+ Reply to Thread
Results 1 to 9 of 9
-
-
Originally Posted by kschang
-
kschang - fitcd's scrip doesn't cut anything off. You are experiencing overscan (llok it up in the glossery). You can adjust for this if you need to by adding black borders all the way around in FitCD. Note : all television shows, DVDs etc have the edges covered by overscan, so you are not really missing anything.
Fr33m4n - the problem you have is that the aspect ratio is taller than a standard 4:3 television. To compensate for this, black bars must be added to the edges or the image will be stretched out of shape. As it is only slightly taller, these bars will be almost totally hidden in the overscan area of your TV, so you probably wont even notice them. But to assure you and put your mind at rest, FitCD is correct. Also, I would leave it NTSC if you can play it.Read my blog here.
-
Originally Posted by guns1inger
On the other hand, I could have just missed used one of those sliders. Those are tricky. -
The arguments for BilinearResize() removed 4 scanlines off the top and bottom of the frame before resizing what's left.
-
The arguments for BilinearResize() removed 4 scanlines off the top and bottom of the frame before resizing what's left.
-
Originally Posted by Fr33m4n
All you have to do is remove the extra arguments that are causing the cropping:
BicubicResize(688,480,0,0.6)
There will be a slight difference in aspect ratio though. Not worth worrying about in my opinion.
I'd use LanczosResize(688,480) because it's just as sharp but less prone to moire artifacts.
Similar Threads
-
Resizing video resolution and video quality
By Timex in forum Video ConversionReplies: 13Last Post: 23rd Aug 2011, 22:08 -
Resizing: Resolution and Aspect Ratio
By roflwaffle in forum Video ConversionReplies: 7Last Post: 9th Apr 2011, 08:25 -
Questions about resizing/rescaling/changing the resolution....
By divxmpegjpeg in forum Video ConversionReplies: 0Last Post: 14th Mar 2010, 14:07 -
What is the mathematical formula to figure out the right resolution when resizing?
By Newtype in forum Video ConversionReplies: 10Last Post: 8th Feb 2010, 17:11 -
Resolution Resizing & Using Filters
By OllyPomm in forum Video ConversionReplies: 9Last Post: 25th Nov 2009, 22:21