View Single Post
Old 8th April 2022, 06:21   #3  |  Link
ZeB
The man
 
Join Date: Oct 2001
Location: Sweden
Posts: 25
Quote:
Originally Posted by Emulgator View Post
youtube reeencodes, do I see screenshots from the youtube encode or from your encode ?
Maybe you can share the youtube link, and the script "input.avs"
First frame is from my encode and the second frame is from Youtube's 2560x1440 reencode (all resolutions from Youtubes reencodes have the corruption though).

Video:
https://youtu.be/iDtW8x1Sx-g
Check around 3:33 to see the corrupted frames.

Avisynth script:
Code:
video = ImageSource("E:\FTP\1\img%01d.jpg", start = 13900, end = 14396, fps = 50, info = true)
video = video + ImageSource("E:\FTP\2\img%01d.jpg", start = 1, end = 19100, fps = 100, info = true).ChangeFPS(50)
video = video + ImageSource("E:\FTP\2\img%01d.jpg", start = 19100, end = 41150, fps = 1600, info = true).ChangeFPS(50, false)
video = video + ImageSource("E:\FTP\2\img%01d.jpg", start = 41150, end = 48187, fps = 100, info = true).ChangeFPS(50)
video = video + ImageSource("E:\FTP\3\img%01d.jpg", start = 1, end = 13017, fps = 100, info = true).ChangeFPS(50)

video = video.ConvertToYV12(matrix="rec709")
return video
ZeB is offline   Reply With Quote