i render some videos(50) by mistake in resolution 1920 by 1070, but actually wanted 1920 by 1080.
is there any software to correct this, i dont want to re render it, clearly i dont have that much time, i calculated it takes days.
need a program to do that,should be quick.
+ Reply to Thread
Results 1 to 8 of 8
-
-
You can change the video display resolution/AR in mkvtoolnix without reencoding (works for x264 in .mkv). It's likely possible to batch this. This is also possible in x264/mp4 (avidemux Mp4 Muxer > Configure).
This will result in a less than 1% AR error which will not be noticeable in practice.
Please note: the player has to support this feature (mpc-hc does), the real video resolution hasn't changed. -
-
What do you mean by it didn't work ?
a 10pixels error on vertical resolution is barely visible in the first place.
With the proposed correction the video first gets resized to 1902x1070 in mpc-hc and then fills a 1920x1080p screen with no black border (Checked with Win+PrnScr Screenshot). -
r u saying after start multiplexing we have to drag that file in file header and change video frame and height and save it(i youtube it).
-
1. The error being small enough, your video might be fine as is, depending on your purpose.
2. When you view a video, the video player can force the viewing Aspect Ratio: mpc-hc View>Video Frame>Aspect Ratio>16:9.
By specifying the x264 video stream Aspect Ratio in the multiplexer properties before saving, you instruct the player to do this stretching automatically.
3. If what you really need is a 1920x1080 video, there is no alternative to re-encoding (preferably from the original source material). -
ok
but i cant find the batch thing work.
how batch thing done?(i dont wanna manually put values each time) -
the base command is :
"C:\Program Files\MKVToolNix\mkvmerge" -o output.mkv --aspect-ratio 0:16/9 input.mp4
For a windows batch file, look at .bat files for ffmpeg as an example if you have difficulties.
Save the bat file in the same directory as the input files and run it.
echo off
REM it's actually easier than using the GUI to change AR
for %%f in ("*.mp4") do (
echo fname: %%f
echo.
"C:\Program Files\MKVToolNix\mkvmerge.exe" -o "%%~nf_out.mkv" --aspect-ratio 0:16/9 %%f
)
REM Press any key to continue . . .
pause
Similar Threads
-
Some clips stutter after render, some don't - please help
By bbshopplf in forum EditingReplies: 10Last Post: 4th Jan 2019, 15:34 -
change the very low resolution of video to high resolution
By idi0t in forum Newbie / General discussionsReplies: 22Last Post: 1st Jul 2017, 09:51 -
Made Newbie Mistake - please help recover GoPro Files mp4's
By Whale Lady in forum Newbie / General discussionsReplies: 2Last Post: 1st Apr 2017, 08:43 -
How can I change the CharacterMatrix in Subtitle Edit after a CAPS mistake?
By KneeRow in forum SubtitleReplies: 2Last Post: 28th Feb 2017, 14:03 -
can premiere render with a Third-party program ?
By rama in forum EditingReplies: 9Last Post: 21st Sep 2015, 06:58