Ask HN: how to remove top n number of pixel from a video.

2 points by shn ↗ HN
I have bunch of video of screen capture. I would like to remove some portion of the video from top. How can I do it in a batch, is there a software to do this out there. Thanks for all the replies.

3 comments

[ 5.2 ms ] story [ 18.1 ms ] thread
Mencoder can crop videos:

    mencoder $1 -vf crop=322:242:26:225 -oac mp3lame -ovc lavc -o $2
That command would extract a 322x242 rectangle from position 26, 225 in the video.