Post subject: TASBlend issue
Brandon
He/Him
Editor, Player (190)
Joined: 11/21/2010
Posts: 913
Location: Tennessee
See this video and watch at around 13:19. It takes a 2-on-2-off effect and blends it in the worst way possible: it's blurry AND the effect is removed. Is this normal?
All the best, Brandon Evans
Editor, Skilled player (1938)
Joined: 6/15/2005
Posts: 3246
...|1 |0 |0 |1 |1 |0 |0 |1 |1 |0 |0 |1 |...
...|66|33|33|66|66|33|33|66|66|33|33|66|...
...| 66  | 66  | 66  | 66  | 66  | 66  |... 
1 is image A, 0 is image B. We take 66% of the first frame and 33% of the second (note the alignment above). The result is that 66% of the resulting image is image A over all these frames. Unfortunately, this is normal up to 50% probability.
Brandon
He/Him
Editor, Player (190)
Joined: 11/21/2010
Posts: 913
Location: Tennessee
FractalFusion wrote:
...|1 |0 |0 |1 |1 |0 |0 |1 |1 |0 |0 |1 |...
...|66|33|33|66|66|33|33|66|66|33|33|66|...
...| 66  | 66  | 66  | 66  | 66  | 66  |... 
1 is image A, 0 is image B. We take 66% of the first frame and 33% of the second (note the alignment above). The result is that 66% of the resulting image is image A over all these frames. Unfortunately, this is normal up to 50% probability.
Sadly, 2 of the 3 Bionic Commando encodes I did yesterday had this problem. Is there any workaround for this? Surely there's a way to catch these instances and prevent the issue from occurring.
All the best, Brandon Evans
Editor, Player (67)
Joined: 6/22/2005
Posts: 1041
Just don't blend those parts of the movie...
Current Projects: TAS: Wizards & Warriors III.
Brandon
He/Him
Editor, Player (190)
Joined: 11/21/2010
Posts: 913
Location: Tennessee
Dacicus wrote:
Just don't blend those parts of the movie...
That's the non-lazy answer. In all seriousness, I figure that there's way to tweak the algorithm from preventing these cases from happening. I should be more conscious of when / where I'm blending, but that doesn't mean the algorithm can't be better.
All the best, Brandon Evans
Lex
Joined: 6/25/2007
Posts: 732
Location: Vancouver, British Columbia, Canada
There were superior alternatives posted in the other thread. Why not ditch TASblend and use one of those?
Player (65)
Joined: 4/21/2011
Posts: 232
Brandon wrote:
In all seriousness, I figure that there's way to tweak the algorithm from preventing these cases from happening.
There are MANY ways to tweak the algorithm, but no one solution will give best results for all scenes on all sources.
Post subject: Re: TASBlend issue
creaothceann
He/Him
Editor
Joined: 4/7/2005
Posts: 1874
Location: Germany
Brandon wrote:
2-on-2-off effect
Sounds ideal for frame-dropping:
AVISource("video.avi")

drop = ChangeFPS(FrameRate / 2)
TASBlend

Replace(  500,   999, drop)
Replace( 2000,  2999, drop)
Replace(70000, 71999, drop)
...
(functions)