View Single Post
Old 23rd September 2020, 23:12   #23  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,377
Quote:
Originally Posted by anton_foy View Post
@poisondeathray

Sorry but how do I use "info()"? Im not familiar with this command.
When someone asks for info(), it refers to the avisynth script. You just add info() to the very end. It tells you what the script characteristics are, including colorspace(pixel format). In your case it was yuv420p16 , so that was what ffmpeg was being "fed"

Code:
Blankclip(pixel_type="YV12").KillAudio()
convertbits(16)
ConverttoYUV444()
Prefetch(4)
ConvertBits(bits=10, dither=1)
info()
On the other test script, it says YUV444P10
poisondeathray is offline   Reply With Quote