Thread: Avisynth+
View Single Post
Old 12th January 2020, 14:47   #5065  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
V0lt,
Quote:
Now if I open the script in video players, I get the wrong colors in many situations.
What script ???

Quote:
Originally Posted by Sharc View Post
Here the script:
Code:
AviSource("h:\Tape 1\capture_1.avi")
converttoyv12(interlaced=true)
assumeTFF()
separatefields()
temporalsoften(4,4,8,10,mode=2)
fluxsmoothST(3,3)
weave()
assumefps(25)
It works when I put temporalsoften AFTER fluxsmooth.

Edit:
It also works when I put crop(2,0,-0,-0) before temporalsoften. (The frame then becomes 718x576).

Edit2:
It looks like temporalsoften must not be the first filter after separatefields()
Verified Access Violation with below script.
Code:
Colorbars(pixel_type="YV12")
#BilinearResize(720,576)
#converttoyv12(interlaced=true)
#assumeTFF()
separatefields()
temporalsoften(4,4,8,10,mode=2)
#fluxsmoothST(3,3)
#weave()
#assumefps(25)
removing comments (Access Violation)
Code:
Colorbars(pixel_type="YV12")    # 640x480
separatefields()                # 640x240
temporalsoften(4,4,8,10,mode=2)
EDIT: Avs+ v3.4.0

EDIT: No Access Violation
Code:
BlankClip(width=640,height=240,pixel_type="YV12")
AssumeFieldBased
temporalsoften(4,4,8,10,mode=2)
EDIT: Also Access Violation
Code:
BlankClip(pixel_type="YV12")    # 640x480
separatefields()                # 640x240
temporalsoften(4,4,8,10,mode=2)
EDIT: Also Access Violation
Code:
BlankClip(pixel_type="YV12")    # 640x480
separatefields()                # 640x240
AssumeFrameBased
temporalsoften(4,4,8,10,mode=2)
__________________
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; 13th January 2020 at 12:52.
StainlessS is offline