Nyaa archive 999353

[Fall-VS] Violet Evergarden 01 [SubEng/VOSTFR 1080p GammaFixed].mkv

Saved on 2026-09-17 05:33:24. This copy includes the description and comments available at capture.

Description

Hellow,

This is a miserable attempt to fix the white filter on Violet Evergarden. (aka VLC effect)

Before:
killme
After:
MoozieDidNothingWrong

Q&A:

Q: Why ?
A: I get cancer.

Q: Wow, [this is wonderful / you gave me cancer], how did you managed to do this ?
A: I just downloaded some random shit on doom9 and write random shit on VapourSynth. This is my first time using Vapour/AviSynth, don't bully me, pls.

Comments 12

If I'm understanding it, that would be something like this, right?

const_1 = 16/235
const_2 = 235/219

clip = core.ffms2.Source()

clipy = core.resize.Point(clip, format=vs.GRAYS)
clipy = core.std.Expr(clipy, 'x {} - {} *'.format(const_1, const_2))
clipy = core.resize.Point(clipy, format=vs.GRAY8, dither_type='error_diffusion')

core.std.ShufflePlanes([clipy, clip], [0,1,2], vs.YUV).set_output()