Hello, I want to crop Black Bar From Video (top and Button) and at Same time i want 720p output of my 1080p input Video, But i don't Understand actual cmd to crop 132px top and 140px on Button and Have one Drawtext Filter on My Code
(I Want to Apply Crop on input Video)
Please Help Me to Apply Crop Filter in Input VideoCode:ffmpeg.exe -i %input% -vf "drawtext=fontsize=22:fontfile=C\\:/Windows/fonts/arial.ttf:fontcolor=white:text='NBMedia':bordercolor=black:borderw=2:x=w-tw-10:y=h-th-10, scale=1280:-1, crop= {Want to Crop 132px on Top and 140px on button}" -c:v libx264 -b:v 1200k -maxrate 1200k -bufsize 1200k "%output%.mp4"
Thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
ffmpeg does not specify top, bottom, left, right values to crop it crops by defining a rectangle and it's placement.
So if your input is 1920x1080 and you want to crop 132 from the top and 140 from the bottom, your would.
Use a rectangle with the full width (1920) and a limited height (1080 -132 -140) and place it at x/y-coordinate 0/132 (0/0 is the upper left corner).
so the crop command would be:
Code:crop=w=1920:h=808:x=0:y=132
1st crop
2nd resize
3rd add your text
in your example you used the opposite order,...
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Assuming a 1920x1080 frame:
-vf crop=w=1920:h=808:x=0:y=132,scale=1280:-4
Notes:
808 = 1080 = 132 - 140
width -4 means the nearest mod4 height for the specified width (1280), maintaining aspect ratio. In this case I think it will be 540 rather than the exact 538.666...Last edited by jagabo; 5th Dec 2020 at 08:42.
Similar Threads
-
Can FFMPEG show a percentage done or a Progress Bar?
By marcorocchini in forum Newbie / General discussionsReplies: 13Last Post: 19th Jul 2020, 23:14 -
crop feature in ffmpeg
By batemanj in forum Video ConversionReplies: 5Last Post: 20th Feb 2019, 13:15 -
Black bar on top
By pattcz in forum Software PlayingReplies: 1Last Post: 19th Feb 2019, 13:15 -
How to crop a moving black bar
By 775405984 in forum Newbie / General discussionsReplies: 3Last Post: 26th Jan 2019, 15:33 -
VisualSubSync - Video Bar / Audio Bar / Text Bar
By devilcoelhodog in forum SubtitleReplies: 2Last Post: 14th Feb 2018, 23:35