I have one Video, which contains basically 2 Videos. The first 10 mins are 16:9 and it has very big black bars around (not only left and right. the whole video is surrounded from black bars). But the second half of 10 mins are fine and in 4:3. It can't be cropped or stretched.
Is there a way, how i can crop the black bars away from the first half?
I tried to cut the video with avidemux. First it did nor work, i could not cut on exactly that frame, but then i did it with a lossless reencode. It worked. Then i tried to insert it in Davinci Resolve, but in Davinci the frames looked completly unusable (it was only artefact-mud). But i could watch the video with no problems in media player.
And i did not find any free programm, where i can combine two videos with different resolution (but im not sure, if i should upscale it before or after connecting together).
But has someone an idea, how i can do that ?
I tried btw. auto-crop in hybrid, but it did not work. While it did crop the first half of the video, the second half of it did not work anymore after autocrop.
+ Reply to Thread
Results 1 to 2 of 2
-
-
Why don't you just use AviSynth to do the cropping and resizing. Then encode with whatever program you want (ffmpeg, x264 cli, x265 cli, MeGUI, etc.).
Something along the lines of:
Code:WhateverSource("filename.ext") part1 = Trim(0, 10000) # first part part2 = Trim(10001, 0) # second part part1 = part1.Crop(x,y,w,h).Spline36Resize(part2.width, part2.height) part1++part2
Similar Threads
-
batch that test if the video part or audio part exist
By marcorocchini in forum Newbie / General discussionsReplies: 0Last Post: 20th Jul 2022, 08:06 -
XMedia Recode - Crop video with video copy?
By thegdog in forum Video ConversionReplies: 5Last Post: 6th Jan 2022, 08:25 -
How to crop an area from a video using AviSynth?
By ziptip in forum EditingReplies: 2Last Post: 3rd Jan 2022, 01:19 -
Is there a way to crop a video without quality loss?
By deama in forum EditingReplies: 5Last Post: 28th Oct 2019, 19:16 -
Software to losslessly crop video?
By Gameshow Host in forum EditingReplies: 15Last Post: 24th Jul 2019, 03:40