Hi if anyone can give some tips, I'm not able to figure out how to do the following.
I have a DV capture which is 720 x 576. There is letterboxing at top and bottom and overscan distortion on the sides.
I wish to import the file in Premiere and crop the sides so that I am left with a 704 x 576 frame, which I will then encode as MPEG2 for archiving. 704 x 576 is a DVD standard size.
I don't want to scale the video as that loses quality and will probably take longer.
I've tried to do the cropping with AVISynth but I can't get the file to be read at all, even after installing Canopus DV codec and ffdshow (prob. it's because the file is >4GB). I know how to crop normal AVIs with AVISynth, just not DV captures.
This is why I'm trying to use Premiere, as it can read the file just fine.
Please instruct me in noob steps as I don't usually use Premiere.
Thanks.
+ Reply to Thread
Results 1 to 10 of 10
-
-
Well here is my script.
DirectShowSource("\\192.168.0.2\Pam\Captures\Prett y Persuasion.dv", 25) # Playback DV
# Remove Overscan from Foxtel broadcast
crop(14,12,-16,-12) # Crop pixels from AVI (left,top,-right,-bottom)
##################################################
# Full Resolution D1 PAL WIDESCREEN:
# LanczosResize(720,436) AddBorders(0,70,0,70) # PAL 2.35
##################################################
# Med. Resolution D1
# Lanczos4Resize(704,576) # PAL 1.78
# LanczosResize(692,544) AddBorders(6,16,6,16) # PAL 1.85 Blanked
# LanczosResize(704,436) AddBorders(0,70,0,70) # PAL 2.35
##################################################
AssumeFPS(25,True) # Convert from 23.976 to 25 fps.
ConvertToYUY2(interlaced=true)
# FixBrokenChromaUpsampling() # Fix Chroma upsampling bug of Canopus DV Codec V1.00 -
And when you open this in virtualdub, what error message do you get ?
Also, is this PAL to begin with ? If so you can skip the AssumeFPS statement.
Where do you add borders to get you resolution back ?Read my blog here.
-
This is the error I get:
AviSynth Open Failure:
DirectShowSource could not open as video or audio...
Video & Audio Returned: ClassFactory cannot supply requested class.
Ok you made me realise that if I want to use a 704 pixel width resolution then I have to resize it correctly or I'll get the wrong aspect ratio. You can help me with the maths if you like :P otherwise I'll just crop in proportion and resize back to 720.
I'm used to resizing AVIs with have square pixels. My capture is in 16:9 cause the Foxtel unit is set to output in 16:9. I used a camcorder to capture the movie using the AV inputs.
But yeah, I'd just like to get the file to read first. -
Actually after I have cropped it in proportion to keep the same aspect ratio, I should have a video that is 690 x 552. I can just resize this to 704 x 576 without adding borders and it should display fine, am I right?
The DV was captured on a Mac. Could this be the problem?
My last hope is just to export the DV as an uncompressed AVI which will eat up HD space but at least I know it will be readable by AVISynth. -
AVISource doesn't work too.
If I'm just going to mask the overscan distortion I can bypass AVISynth completely as CCE has a blanking feature.
I try to avoid both pillarboxing and letterboxing though, specially for 2.35:1 movies as the picture is already small on a computer monitor which doesn't overscan and prob. in the near future, LCD TVs won't bother with overscan either.
Think I'll just use a zoom filter on Premiere to do it. Are zoom filters on video-editing software really that bad? -
Another approach perhaps is to capture the DV at a larger size, say at 752 x 601, then crop it down to 720 x 576. I'm assuming that Premiere won't have to resize the video if I do it that way. But do I use the crop filter or the special processing tab during export?
Similar Threads
-
Ripbot264 doesn't crop if resizing to 720p?
By sparriskrigaren in forum Blu-ray RippingReplies: 3Last Post: 16th Jul 2012, 06:53 -
Premiere Pro CS4 CROP feature
By CharlesLinquist in forum Newbie / General discussionsReplies: 2Last Post: 24th Jul 2010, 19:53 -
[SOLVED] Is there a way to crop pillar boxes within FAVC before resizing?
By usually_quiet in forum Video ConversionReplies: 3Last Post: 3rd Apr 2010, 17:37 -
Handbrake: To Crop or Not To Crop
By meldavid in forum DVD RippingReplies: 1Last Post: 31st Aug 2009, 05:54 -
Crop video on premiere cs4 and export as flv
By v1p0n3 in forum EditingReplies: 2Last Post: 27th May 2009, 14:07