TA的每日心情 | 怒 2022-10-20 03:13 |
---|
签到天数: 385 天 [LV.9]以坛为家II
金牌会员
- 积分
- 48613
|
本帖最后由 HuangRuixiao 于 2021-1-27 22:49 编辑
如题,vs入门,但是在搭建运行环境时就踩了坑。
安装了最新vs和vseditor后(所有安装路径均无中文),在editor里输入以下代码后editor报错:
- from vapoursynth import core
- video = core.ffms2.Source(source='late_1.mkv')
- video = core.std.Transpose(video)
- video.set_output()
复制代码 错误信息:
- Failed to evaluate the script:
- Python exception: No attribute with the name ffms2 exists. Did you mistype a plugin namespace?
- Traceback (most recent call last):
- File "src\cython\vapoursynth.pyx", line 2244, in vapoursynth.vpy_evaluateScript
- File "src\cython\vapoursynth.pyx", line 2245, in vapoursynth.vpy_evaluateScript
- File "E:\视频\新建 VapourSynth Python Script.vpy", line 2, in
- video = core.ffms2.Source(source='late_1.mkv')
- File "src\cython\vapoursynth.pyx", line 1893, in vapoursynth._CoreProxy.__getattr__
- File "src\cython\vapoursynth.pyx", line 1756, in vapoursynth.Core.__getattr__
- AttributeError: No attribute with the name ffms2 exists. Did you mistype a plugin namespace?
复制代码 但是我明明在vs的core目录下添加了ffms2插件,这是怎么回事?
vs版本号R52,vseditor版本号R19。
且同样代码直接在python运行就不报错,且生成.ffindex文件
甚至连代码补全都有了,就是找不到插件:ps:使用了最新的 vs editor2 R3.2 问题依旧
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|