I would like to convert a 576i 4:3 video to 1080p. What resolution should I upscale to and what borders do I need to add?
What about for a 480i video?
If the video is widescreen then I assume I should upscale to 1920 x 1080? Thanks
+ Reply to Thread
Results 1 to 18 of 18
-
-
1080/3*4=1440, so upscale to 1440x1080
1920-1440=480, 480/2=240 so add 240px borders to each side.
Makes no difference if you're starting from 576 or 480, you want a 4:3 square pixel image centered in a 16:9 frame at 1920x1080. -
OK thanks so do I upscale to 1440 x 1080 for both 576i and 480i?
For 576p widescreen what resolution would I upscale to? -
The source resolution is irrelevant. What matters is the aspect ratio. So, if the source is widescreen (16:9) you should resize to 1920x1080; if it is 4.3, you already have the answer for that.
"The greatest trick the Devil ever pulled was convincing the world he didn't exist." -
Thanks. I'm also trying to use Nnedi to upscale from 720 x 576 to 1080p. The following doubles the resolution to 1440 x 1152.
Code:nnedi3_rpow2(2)
Code:nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1920, fheight=1080)
-
You can't. nnedi3_rpow2() only upscales by powers of 2 (2, 4, 8...).
You could use:
Code:nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=1920, fheight=1080)
For animated material I sometimes use a sequence like this to give sharper edges:
Code:nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1280, fheight=720) aWarpSharp(depth=5) Sharpen(0.2) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=1920, fheight=1080) aWarpSharp(depth=5) Sharpen(0.2)
-
Thanks. I tried this: nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=1920, fheight=1080)
However it's too slow for me. I'm getting under 2fps. Is there a way to speed it up by doing that turn left thing or whatever you call it? -
MCTD and QTGMC are very slow filters, especially with some settings.
I usually open a script and VirtualDub and select File -> Run Video Analysis Pass. You can also use AvsMeter.
Because encoders can be very slow, especially with high definition material. For example, there's a 100 fold difference in encoding speed (without other processing) between x264's slowest (placebo) and fastest (ultrafast) presets. -
Well I use the VeryFast preset in x264 which basically gives the lowest file size at the fastest speed. I don't see the relevance of what speed Avisynth runs at when the video needs to be encoded anyway and it's the encoding speed that matters.
I know those filters are slow but they are usually faster when not upscaling. Is there anything I can do to speed up Nnedi. Is there a way to speed it up by doing that turn left thing or whatever you call it? -
-
Because earlier in this thread you didn't mention x264 and the settings used or any of the other filters you're using. How am I supposed to know whether the slowness was due to nnedi3, some other filtering, or the encoder?
-
And upscaled video usually is not encoded to H.264 (makes little sense), it is encoded to lossless, because of the purpose is to load it to some HD project.
Similar Threads
-
Where is the 1080p resolution ?
By PowerFalcon in forum Video ConversionReplies: 12Last Post: 26th Sep 2014, 20:12 -
any way to get non 1080p resolution on a disc...
By rotatorkuf in forum Newbie / General discussionsReplies: 2Last Post: 17th Apr 2014, 15:38 -
MKVs - keep a good quality 1080p resolution but reduce the size?
By StumpedTechy in forum Video ConversionReplies: 8Last Post: 9th Jan 2013, 07:46 -
Resolution : 1200 by 800 pixels... How can it play 1080p?
By chaitanya2106 in forum Newbie / General discussionsReplies: 5Last Post: 9th Oct 2012, 07:05 -
How Can I Convert DVD to HD 1080p resolution as easy as HD 720p
By hd hackerz in forum DVD RippingReplies: 5Last Post: 11th Jan 2011, 03:54