Thread: Avisynth+
View Single Post
Old 28th June 2019, 10:58   #4764  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Quote:
making AVS+ clearly distinguishable without script acrobatics should be the target.
++1.

small prob,(tested only on current test version r2890) [confusing at the very least],

Code:
ERROR=""
Colorbars(Width=1024,Height=64,Pixel_type="YUV444P10")
ORG=Last
try {
    ORG.BilinearResize(2,1)            # Dest height of 1 problem
}catch (msg){
    ERROR=ERROR + Msg + "\n"
    RT_Debugf("Msg1=%s",msg)
}

try{
    ORG.BilinearResize(1,2)            # Dest width of 1 problem
}catch (msg) {
    ERROR=ERROR + Msg + "\n"
    RT_Debugf("Msg2=%s",msg)
}
ORG.Subtitle(ERROR,lsp=0)


Think I posted about this in avs Standard thread, dont know if it got fixed there.

EDIT: Pixel_type not problem, same with Pixel_type="YV24".

EDIT: 2 posts later deleted, was Rubbish. [EDIT: I can understand why source has minimum requirement, why dest does is mysterious]
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 28th June 2019 at 14:47. Reason: Remove nearest barclays bank link
StainlessS is offline