wertert
23rd July 2004, 09:00
I'm converting my collection of xvid movies into dvds and I have a few questions if anyone can help.
Most of the avi movies are widescreen with a resolution of 704x288 with a DAR of 1:1. I am using avisynth + cce to convert to mpeg then dvdlab for the final author.
I seem to have two choices when coverting the resolution of the movie. I can either for for a 4:3 frame, this means resizeing the movies to 720x314 and adding a 131 border top and bottom, or 16:9 frame which will involve a 720x418 resize and 79 pixel borders.
Obviously I want the best possible playback quality on my dvd player and tv so am I better off going for the smaller avisynth resize ( ie 4:3 ) and relying on the widescreen TV to perform the zoom or go for a larger avisynth resize (16:9).
example avisynth script
avisource("move.avi")
BicubicResize(720,418) # 16:9
AddBorders(0,79,0,79)
also anything I can do in the avisynth screen to improve quality ?
Thanks in advance
wert
Most of the avi movies are widescreen with a resolution of 704x288 with a DAR of 1:1. I am using avisynth + cce to convert to mpeg then dvdlab for the final author.
I seem to have two choices when coverting the resolution of the movie. I can either for for a 4:3 frame, this means resizeing the movies to 720x314 and adding a 131 border top and bottom, or 16:9 frame which will involve a 720x418 resize and 79 pixel borders.
Obviously I want the best possible playback quality on my dvd player and tv so am I better off going for the smaller avisynth resize ( ie 4:3 ) and relying on the widescreen TV to perform the zoom or go for a larger avisynth resize (16:9).
example avisynth script
avisource("move.avi")
BicubicResize(720,418) # 16:9
AddBorders(0,79,0,79)
also anything I can do in the avisynth screen to improve quality ?
Thanks in advance
wert