Here the video: https://www.youtube.com/watch?v=eF4jioW1Ijs&feature=you...
I want to fill the black bars to the sides and the tiny bit under the video to achieve full 4:3 Aspect ratio.
How can i do this?
More about : black bars filli
+ Reply to Thread
Results 1 to 10 of 10
-
-
Last edited by jagabo; 29th Apr 2014 at 07:34.
-
It should look like this.
http://filmmakeriq.com/wp-content/uploads/2013/06/1080-4x3.png
zoom in and press F11 -
-
So crop away the black borders, resize to 1440x1080, then add black borders to the sides to fill out the 1920x1080 frame. Every video editor can do that. Something like the attached video?
It's not clear to me exactly what the aspect ratio of the video sans black bars should be. I assumed it was 4:3. Though, if you just remove the black bars you have something closer to 5:4.Last edited by jagabo; 29th Apr 2014 at 08:06.
-
-
Exactly what I did probably won't help you because I use AviSynth (a text script based video filtering system) and the x264 command line encoder. I downloaded the video as test.mp4 then:
Code:ffVideoSource("test.mp4") Crop(34, 2, -30, -6) LanczosResize(1440, 1080) AddBorders(240, 0, 240, 0)
Actually, I didn't use LanczozResize() to upscale the video. I used advanced upscaling techniques with nnedi3_rpow2(), aWarpSharp(), and Sharpen(). I also quickly (in terms of writing the script, not processing speed) denoised the video with McTemporalDenoise().
If tell people what video editor(s) you use someone can probably give you more specific instructions.Last edited by jagabo; 29th Apr 2014 at 10:05.
-
-
Yes, they are probably over sharpening a bit. The actual script I used was:
Code:ffVideoSource("test.mp4") Crop(34,2,-30,-6) McTemporalDenoise(settings="medium") aWarpSharp(10) Sharpen(0.5) nnedi3_rpow2(4, cshift="LanczosResize", fwidth=1440, fheight=1080) aWarpSharp(10) Sharpen(0.3) AddBorders(240,0,240,0)