搜索找到 42 个匹配

去高级搜索

Muonium
2019-01-29 12:57
版面: VapourSynth
主题: 运行VPY文件的时候报错了
回复总数: 4
阅读次数: 18915

Re: 运行VPY文件的时候报错了

handgo 写了: 2019-01-27 17:52
core = vs.get_core(accept_lowercase=True,threads=4)

TypeError: get_core() got an unexpected keyword argument 'accept_lowercase'
根据报错信息,把红色部分删了就好了
Muonium
2018-08-04 0:08
版面: VapourSynth
主题: A white lines issue
回复总数: 2
阅读次数: 3714

Re: A white lines issue

DeHalo_alpha, FineDehalo, or HQDeringmod in havsfunc, or Vine might help.

Also, you could try core.warp.AWarpSharp as a preprocessing smoothing algorithm for HQDeringmod (the "p" parameter).
Muonium
2018-07-17 20:44
版面: VapourSynth
主题: CSMOD issue
回复总数: 3
阅读次数: 3797

Re: CSMOD issue

You can either delete the number 2 at the end of that line in the CSMOD script, i.e. sharpdiff2 = core.focus.TemporalSoften(sharpdiff, 1, 255, 255 if chroma else 0, 32) or replace such line with sharpdiff2 = haf.AverageFrames(sharpdiff, weights=[1] * 3, scenechange=32, planes=[0] if chroma else list...
Muonium
2018-07-14 17:05
版面: VapourSynth
主题: mask bright area!
回复总数: 7
阅读次数: 4996

Re: mask bright area!

Yes, the formula then should be
'x 512 > 1023 0 ?' and 'x 32768 > 65535 0 ?'
for 10 and 16 bitdepth respectively.
Muonium
2018-07-14 9:36
版面: VapourSynth
主题: mask bright area!
回复总数: 7
阅读次数: 4996

Re: mask bright area!

Right
Muonium
2018-07-14 2:26
版面: VapourSynth
主题: mask bright area!
回复总数: 7
阅读次数: 4996

Re: mask bright area!

Hi. I can't remember which script has such function, but you can do it manually. For example, suppose we want to process a grayscale image (format=vs.GRAY8), we can use the following code to construct a simple luma mask: mask = core.std.Expr(src, 'x 128 > 255 0 ?') which classifies the pixels of the...
Muonium
2018-06-20 23:20
版面: VapourSynth
主题: 关于QTGMC滤镜的一些疑问
回复总数: 2
阅读次数: 3007

Re: 关于QTGMC滤镜的一些疑问

关于TFF,havsfunc 说,
Setting TFF to true means top field first and false means bottom field first
也就是 True 表示顶场优先, False 表示底场优先。
顶场优先是一般情况下交错源的默认情况,这信息可以在 mediainfo 中获取,或在读入视频后手动检查。

FPSDivisor 我认为看实际需要,如果认为源的动态信息很重要就可以设为1,否则也·可以设为2。

opencl=True 是开启部分滤镜的显卡加速
Muonium
2018-05-13 22:39
版面: VapourSynth
主题: 不能运行Oyster
回复总数: 4
阅读次数: 3678

Re: 不能运行Oyster

rainy miuco 写了: 2018-05-13 18:35 我知道mvsf大概率是libmvtools_sf_em64t.dll,好像没什么用啊
那估计是少 fftw
下载64位版的压缩包,把 “libfftw3-3.dll” 放进去试试
Muonium
2018-05-12 17:41
版面: VapourSynth
主题: 不能运行Oyster
回复总数: 4
阅读次数: 3678

Re: 不能运行Oyster

AttributeError: No attribute with the name mvsf exists. Did you mistype a plugin namespace?
少滤镜了
https://github.com/IFeelBloated/vapours ... f/releases
Muonium
2018-05-09 20:32
版面: VapourSynth
主题: vapoursynth可能用到的滤镜
回复总数: 3
阅读次数: 4022

Re: vapoursynth可能用到的滤镜

CSMOD
BezierCurve
DBmbk
FadeTextMask
Oyster
Plum
fvsfunc
kagefunc
getnative
InsaneAA
atomchtools
b6func

暂时想到这几个,有新的再补充

(其实我是想麻烦你至少把上面的 LUM.py 和 SuperRes.py 删了,在这个列表里太辣眼睛

去高级搜索