Now if this belongs elsewhere then do educate me so I can arrange to have it moved.
Over at another forum, I was reading posts that a stream was not really 720p but, essentially, upscaled from one of the other resolutions (with a corresponding increase in bitrate) that the service provides namely 360p or 480p.
So, rather than the obvious, i.e. attempting to count the pixels, is there another way to determine if what you think you are getting is what you actually receive. After all, even YT provides the same vid at different resolutions/bitrate.
+ Reply to Thread
Results 1 to 2 of 2
-
-
Principle:
Downscale the video, then upscale it back and compare this with the original (best by interleaving). If you see no difference when stepping through the interleaved frames then the true resolution is the downscaled version.
Try something like this in Avisynth (for progressive source):
Code:LWLibavVideoSource("your source") a=last dx=854 #downscaled horizontal dimension dy=480 #downscaled vertical dimension taps=31 lanczosresize(dx*2, dy*2, 0.5, 0.5, taps=taps) pointresize(dx, dy) spline36resize(a.Width,a.Height) interleave(a.Subtitle("Original"),last.Subtitle("Downscaled"))
Code:LWLibavVideoSource("your source") a = last dx=720 #downscaled horizontal dimension dy=576 #downscaled vertical dimension res = a.Lanczos4Resize(dx,dy).sharpen(0.12).Lanczos4Resize(a.Width,a.Height) Interleave(a.Subtitle("Original"),res.Subtitle("Downscaled"))
Last edited by Sharc; 7th Jun 2024 at 10:16.
Similar Threads
-
Electronics stores in the United States of America
By Venom_1830 in forum Off topicReplies: 1Last Post: 16th Mar 2024, 14:02 -
how to determine if video is DF or NDF
By igor9427 in forum Video ConversionReplies: 3Last Post: 31st Mar 2023, 08:36 -
RGBAdjust - How to determine values? And overall improvements for Anime
By dietboby in forum RestorationReplies: 3Last Post: 27th Jan 2023, 21:09 -
Determine Best Quality Video from Set?
By joshua4 in forum Video ConversionReplies: 2Last Post: 7th May 2021, 02:19 -
Video is interlaced but video header states progressive.
By Imy in forum Newbie / General discussionsReplies: 0Last Post: 25th May 2020, 17:42