Hi,
i need to know a software in which i can crop a video in!
thanx
+ Reply to Thread
Results 1 to 23 of 23
-
-
It depends what type of video, but pretty much any editor and many converters. Virtualdub, AVI Demux, AVISynth, Xvid4PSP up to Vegas, Premiere and FCP.
You will have to re-encode after cropping.
Do you mean cropping (removing part of the image area) as opposed to trimming or editing (removing frames from the footage)Read my blog here.
-
Originally Posted by guns1inger
-
I like avidemux, open video, choose a codec under Video like xvid or h264, click filters and add the crop filter (see http://avidemux.org/admWiki/index.php?title=Video_filter_Crop ), save as a new avi.
Virtualdub works similar, open video, under video->filters add the null transform filter, click on cropping, under video->compression choose a video codec, file->save as a new avi. -
In VirtualDub, you add the 'Null Transform' filter, then cropping is available. Save the cropped video with full processing and the codec of your choice. The Null Transform will not do anything to the video, just activates the cropping feature.
-
Another tool that crops real well with many sources and encodes to many formats, but not free, is: TMPGEnc Xpress (Source -> Edit -> Filters -> Picture Crop).
The best thing though is a tool that accepts AviSynth scripts so you won't have to rely on its internal features. Then it's always this line in the script:
Crop(Left, Top, -Right, -Bottom)
An example to crop 20 pixels from the sides and 30 from top and bottom:
Crop(20, 30, -20, -30)
If you want to crop part of the image and keep the original resolution and aspect ratio with black bars (such as getting rid of VHS trackings, advertising, etc) using the last example:
Crop(20, 30, -20, -30)
AddBorders(20, 30, 20, 30)
Keep in mind, when cropping, you must re-encode (unless someone knows a trick around this).I hate VHS. I always did. -
Don't crop interlaced video.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Originally Posted by lordsmurf
If I may rephrase...
Avoid cropping interlaced video, but if you have to, make sure you use an interlace aware method."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Originally Posted by Baldrick
-
Originally Posted by gadgetguy
Best to deinterlace (properly, not some blend or drop-field crap method) and then resize.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Originally Posted by toqi786
You need a vfw decoder to use in vdub for wmv. You can use ffdshow and enable wmv 1/2/3 , vc-1 in the vfw decoder configuration (set to libavcodec instead of disabled)
Or even better , you can use avisynth's DirectShowSource(), and Crop() , this way you avoid colorspace conversions through vdub if you use fast recompress mode - this might be more difficult if you're not familiar with avisynth -
Originally Posted by toqi786
Install ffdshow, enable the following wmv settings in the ffdshow vfw configuration (gold icon), set to libavcodec instead of disabled
Install the vdub wmv plugin
If it doesn't work you, may be using wma pro or another type, then post the screenshot taken from gspot or the mediainfo information, because it doesn't work for all "wmv" types, and you would then have to use another method as already suggested
-
Certain versions of modded VirtualDub open ASF/WMV natively.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Originally Posted by lordsmurfI hate VHS. I always did.
-
Have you done it much? I have, it's not pretty.
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
If you perform a non-mod4 interlaced crop on YV12 material, the chroma can get associated with the wrong field = wacky colors, maybe that's what LS is referring to
I think if you crop mod4 (at least with avisynth cropping method), you are safe, maybe this is what gadgetguy was referring to (interlaced aware method?) -
Originally Posted by lordsmurf
Others are removing VHS "tracking fuzz" from transfers. VHS is horrible enough so it may not make a difference visually anyway... :P
But I have done it to remove ads and junk from TV transfers and have seen no real ramifications other than the natural degradation from re-encoding.
Although all crops are Mod 4 = 0 at any rate to preserve chroma arrangement, after this thread, I will just mask on the latter two from now on ... just in case.I hate VHS. I always did. -
I didn't mean to start a debate on the subject and hijack the thread, but LS made a statement in an absolute fashion and it's not always possible to be that rigid. Cropping interlaced material in and of itself is not the problem. The issue becomes what happens next. If you are cropping to a non-standard resolution and your destination format and player can handle non-standard, interlaced material, then there shouldn't be an issue. (I'm not aware of anything that does this correctly, but I have to allow for the possibility). However most of the time the image is resized after cropping to bring it to a standard (such as DVD) and this is where the most damage occurs. By masking you avoid the resize. As LS pointed out, most people can mask, since all they're trying to do is remove some crap from the edges which is usually in the overscan area anyway. Resizing interlaced material can be done, but as the Wicked Witch of the West said "these things must be done delicately". Again, LS pointed out that better results are usually gained by deinterlacing before resizing, but I find acceptible results can usually be achieved by just separating the fields before resizing, but as with all things video, it depends on the source.
I don't recall the OP saying what the destination format is, nor even what he wants to crop out of the video. And at the time that LS made his statement, I don't think the OP had stated his source, so at that point we were offering generic advice, which is why I thought the blanket statement was a little harsh. If the source isn't interlaced, then for this thread the point it moot. If it is, then I would have hoped the OP either knows about handling interlaced material, or my suggested re-phrase would prompt him to investigate proper methods."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
First, I don't know anything about working with video. I used VirtualDub to crop one after reading the posts here. First I had to convert the mp4 to AVI (I don't know if that makes a difference). I liked the way the cropping worked. Only trouble is that the output file didn't work regardless of what I tried. I could get it to play in WM if I converted it back to mp4, but the picture was slanted, lined, and black and white. What am I doing wrong?
-
You're much better off starting a new thread than digging up one that is 2/12 years old.
Make sure that the vertical and horizontal resolution at all times are at least cleanly divisible by 4.
(8 or 16 even better). For example, 720*400 is OK, 720*402 is not -
Also, as pdr hinted in post #17, any vertical cropping of interlaced YV12 source must be done on mod4 boundaries.
(That means it's not enough for the resulting height to be mod4, the crop positions must be mod 4 too.) -
Great. Very easy and powerful. Thanks for this! Anyway, is it possible to enter the file size of the ending video? I selected ffdshow Video Codec, but the processed file ends up being incredibly big, even though it is cropped more than 80%. Before I even read this post, I tried to crop a video using MeGUI, but there was a limitation of 264 dots or whatever it is in AVS Script Creator. Thanks in advance.
Similar Threads
-
Crop a Video
By jjis in forum EditingReplies: 3Last Post: 21st Jan 2012, 12:27 -
How to Crop Video
By xiaomanda in forum Newbie / General discussionsReplies: 6Last Post: 14th Jun 2011, 09:24 -
Crop a video?
By Cined in forum EditingReplies: 1Last Post: 29th Apr 2010, 07:50 -
Crop video
By weta in forum Newbie / General discussionsReplies: 10Last Post: 11th Aug 2009, 15:27 -
Video Crop and resize
By quxote in forum EditingReplies: 4Last Post: 27th Feb 2009, 11:48