-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
希望标题能显示danmaku-delay弹幕延迟 #77
Comments
Property Expansion能够获取到值的变量应该都是property,但是据我所知在插件的角度好像没有办法给mpv自定义一个property出来。而现有的原生property既然被定义出来了,那占用mpv原生的property拿来存弹幕延迟的数据给 经测试通过各种方式,包括使用
看来mpv官方文档里说的这个option似乎是不包含自定义出来的option的 @dyphire 这个问题大佬您有解决思路吗? |
mpv-player/mpv#10732 (comment) 看来似乎的确无法自定义一个property,只有 除非强行将其他property抢占过来作为弹幕延迟的表示,但这种方式太粗暴太destructive了 |
@MiKoto-Railgun 最新的代码中已添加此参数,名称为
这个自己通过
|
具体如何操作呢? |
还有就是 我设了快捷键加减弹幕延迟不生效怎么办啊 我设的是alt+1 1秒 和alt+2 -1秒 |
这个我操作好了 按照楼主的操作把位置那栏改了 我是想了半天不知道咋操作原来是按楼主的来 |
我是下的人型电脑天使心里的一个资源第二集的弹幕是有延迟的 好几秒的延迟 第一集和第三集就没有 第二集是播放了好几秒才出弹幕 |
看一下你这段代码是怎么甚至的 |
我把冲突键的给删了一部分 |
直接写成 |
好了好了 感谢 已解决 直接复制粘贴有点榆木脑袋了 |
还有一个问题好像是自动播放下一集了显示弹幕延迟和上一集一样但是实际是归零的 需要重新设置 |
是个小问题, |
okok 这个问题还好 就是我纯小白不知道怎么看当前着色器面板有哪些啊 就是当前配置了哪些 那个是osd还是什么吗 快捷键是哪一个啊 |
btw,只是user-data/uosc_danmaku/danmaku-delay的值显示有问题,没有及时更新。弹幕延迟延迟归零,需要重新设置是正常逻辑。 |
我看弹幕开关设置能延续我还以为这个也是能延续的呢 |
这个找到了 不用了 |
我暂时没看懂你的问题是什么意思😂 我现在实在是困得不行了,得先睡了,还有别的问题我明天再帮你看看 |
好的 大佬晚安 |
我之前是用uosc.conf下的
top_bar_alt_title=${?media-title:${!chapters==0:章节:(${chapters}):${chapter}}${?chapters==0:章节:无} | 播放列表:${playlist-pos-1}/${playlist-count} ${!sub-visibility==no:| 字幕延迟:${sub-delay}} ${!secondary-sub-visibility==no:| 弹幕延迟:${secondary-sub-delay}} | 播放进度:${playback-time/full}/${duration/full} (${percent-pos}%)}
也就是用次字幕延迟secondary-sub-delay的方式在标题下面显示弹幕延迟
top_bar_alt_title=${?media-title:${!chapters==0:章节:(${chapters}):${chapter}}${?chapters==0:章节:无} | 播放列表:${playlist-pos-1}/${playlist-count} ${!sub-visibility==no:| 字幕延迟:${sub-delay}} | 弹幕延迟:${danmaku-delay} | 播放进度:${playback-time/full}/${duration/full} (${percent-pos}%)}
但是现在用danmaku-delay就不行了,会显示error
这一命令所在代码块显示它不保存弹幕延迟数字,应该创建一个参数保存数据
希望danmaku-delay或其他参数能显示延迟数
最好是弹幕延迟不为零时再显示弹幕延迟
The text was updated successfully, but these errors were encountered: