Hi! I use DVD2SVCD to do all my ripping and converting my DVDs to svcd. But the last movie i did turned out like crap! What I wanted to do was to crop 50 pixels on top and bottom and then crop 4 pixels left and right. Here is the copy of the avisynth:
LoadPlugin("D:\Programs\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
mpeg2source("D:\Programs\DVD2SVCD\Movie\DVD2AV~1.D 2V")
TemporalSmoother(2,1)
BicubicResize(480,360,0.0,0.6)
Crop(4,50,472,260)
AddBorders(0,110,0,110)
After the encoding was finished, the resulting mpgs were really messed up (it was just all squiggly distorted lines). Did I do the cropping correct?? Please help! thanks alot in advance!!!
+ Reply to Thread
Results 1 to 3 of 3
-
-
crop before the resize. I know in DVD2AVI you can use the built in cropper to find out how many pixels from the top/bottom/left/right. then you use those values to crop the 720x480 image
something like:
crop(4,50,712,260)
bicubicresize(480,260)
addborders(0,110,0,110)
basicly grab just the video first, then scale it and then add borders -
Originally Posted by Ejoc
Similar Threads
-
Quick way to merge a Cover picture(preview picture) in a video-file
By arty1 in forum Video ConversionReplies: 0Last Post: 6th Mar 2012, 01:06 -
Error cropping picture for png images
By MKa2 in forum Video ConversionReplies: 2Last Post: 23rd Mar 2010, 10:12 -
ffmpeg "error cropping picture"
By eva01 in forum Video ConversionReplies: 1Last Post: 2nd May 2009, 17:42 -
timecode messed up
By snafubaby in forum EditingReplies: 4Last Post: 20th Sep 2007, 05:00 -
Samsung v5600 region free but picture is messed up
By daniel86 in forum Newbie / General discussionsReplies: 0Last Post: 19th May 2007, 09:53