verygoodlee

Results 14 issues of verygoodlee

* Operating system: Windows 10/11 * mkcert version : v1.4.4 When I use it in Windows Services, the certificate becomes invalid, and I found the reason, Windows Services run as...

``` # mpv.conf osd-align-x=right osd-align-y=bottom ``` ![image](https://github.com/maoiscat/mpv-osc-modern/assets/45035465/977abc43-f31b-49b8-b185-dc629c0bed89) We need to force top-left alignment, override the alignment in mpv.conf.

- 操作系统:windows11 - 浏览器:edge https://www.bilibili.com/video/BV1Qr42147pQ ![image](https://github.com/LuckyPuppy514/Play-With-MPV/assets/45035465/aefa71ff-9ff8-4087-8acd-e7ad8c9fc76e) 看报错位置是在这里,可能是标题中 𝘾𝙝𝙚𝙘𝙠𝙡𝙞𝙨𝙩 造成的,不是常规的英文字符,有点特殊 https://github.com/LuckyPuppy514/Play-With-MPV/blob/d4f6dd11a234b8e90e81796d351cec90cc263941/play-with-mpv.user.js#L1903-L1905 edit: 控制台输入`'𝘾𝙝𝙚𝙘𝙠𝙡𝙞𝙨𝙩'.length`竟然是18,一个字符占2个长度 ![image](https://github.com/LuckyPuppy514/Play-With-MPV/assets/45035465/f343a764-f142-457e-a446-cc878a8fd2c6) 应该是它造成`substring()`截在了半个字符的位置,导致`encodeURIComponent()`报错 ![image](https://github.com/LuckyPuppy514/Play-With-MPV/assets/45035465/fc8d4490-4d76-4238-ae0f-cade7ccf9cf5)

现在用户上传的图片地址大部分都是这个域名,偶尔会出现图全裂 ![image](https://github.com/521xueweihan/GitHub520/assets/45035465/cb974720-1413-4994-8850-d6c3de47fd5a)

we can disable all other graphs except page 3, graphs are quite heavy to render, in some cases they cause frame drops. ![image](https://github.com/mpv-player/mpv/assets/45035465/a07467ae-3122-4870-8fc9-4aefc16e92ad) ### Expected behavior of the wanted feature...

meta:feature-request
meta:help-wanted

[微软宣布弃用 VBScript 脚本语言,将在未来的 Windows 版本中移除](https://www.ithome.com/0/724/151.htm) [Windows 客户端的已弃用功能](https://learn.microsoft.com/zh-cn/windows/whats-new/deprecated-features) 就是不知道微软的效率,多久后被彻底移除。\ 这就有点难受了,如果以windows服务方式启动,运行播放器时只有进程看不到播放器窗口,因为服务是SYSTEM用户,和普通用户不在同一个会话。\ 很难找到vbs的替代方案,既能隐藏黑窗口,又能正常运行播放器。

使用 Property Expansion 语法的时候,解析出来命令可能为空,执行空命令控制台会有报错。 ![屏幕截图 2024-05-12 150921](https://github.com/natural-harmonia-gropius/input-event/assets/45035465/0f7e5209-294e-45c6-ba4c-708fd4ee6d4d) 比如这种需求,在idle界面时左键不触发切换暂停,命令是空的干脆不执行,避免控制台报错。 ```json [ { "key": "MBTN_LEFT", "on": { "click": "${?idle-active==no:cycle pause}", "double_click": "cycle fullscreen" } } ] ```

用的是mpv内置菜单实现,在使用[evafast](https://github.com/po5/evafast/tree/rewrite)的时候发现的,他会短时间内连续改变速度,如果菜单的`#@state=`中用到了`speed`属性就会造成菜单频繁更新,有概率导致菜单假死。 手动用evafast复现概率较低,写了个脚本模拟evafast的行为,每隔0.05秒修改一次速度,高强度修改500次基本稳定复现 test.lua ```lua local speed = 1 local i = 0 timer = mp.add_periodic_timer(0.05, function() speed = speed == 1 and 2 or 1 mp.commandv('osd-msg', 'set', 'speed', speed) i...

### Important Information Provide following Information: - mpv version ``` mpv v0.38.0-209-g38741452 Copyright © 2000-2024 mpv/MPlayer/mplayer2 projects built on May 12 2024 00:09:14 libplacebo version: v7.349.0 (v6.338.0-130-gbf1855c-dirty) FFmpeg version: N-115182-g0d9591841...

os:win

### Expected behavior of the wanted feature I think frame number is an important message, it's useful for compare scaling filters/shaders, open same file in two window and ensure that...

meta:feature-request