Replies: 17 comments 63 replies
-
原生菜单input_contextmenu_plus.conf没有生效 |
Beta Was this translation helpful? Give feedback.
-
|
我自己是不怎么用原生菜单的。 |
Beta Was this translation helpful? Give feedback.
-
|
2026CJ RTX4090 can we reliably use RTX VSR + Nvidia Smooth Motion, instead of RTX VSR + NV_Rife? Also, which combination is more robust? which combination has best results on non-anime , i.e. photo-realistic video source? thanks in advance for feedback and insights! |
Beta Was this translation helpful? Give feedback.
-
|
mpv里的两个伪原生实现的功能: https://github.com/mpv-player/mpv/blob/76a5eba991733f41310912c79c60f6c565a77cc9/filters/f_auto_filters.c#L268-L296
|
Beta Was this translation helpful? Give feedback.
-
|
增强的着色器面板,基于修改后的uosc menu api # input.conf
F2 script-message uosc-menu-shader
|
Beta Was this translation helpful? Give feedback.
-
|
nvoffruc补帧移植废案,不信邪的又试了几遍,就大概因为真的很烂所以才被nv放弃开发 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
esrgan换成了砍精度的版本,可能在比RTX4080弱一点的显卡上有点性能差异? 不严谨的随手一测前后版本的差异,可以当做视觉无损,但是样本量不具有参考性。
差异分布分析脚本import numpy as np
from PIL import Image
img1 = np.array(Image.open('srvggnet-models/预计算fp16.png'), dtype=np.float64)
img2 = np.array(Image.open('srvggnet-models/编译优化fp16.png'), dtype=np.float64)
diff = img1 - img2
abs_diff = np.abs(diff)
print(f'像素差异统计 (预计算fp16 vs 编译优化fp16):')
print(f' 完全相同像素占比: {np.sum(abs_diff == 0) / abs_diff.size * 100:.4f}%')
print(f' 差异不为0的像素数: {np.sum(np.any(abs_diff > 0, axis=2))} / {img1.shape[0]*img1.shape[1]} 总像素')
print(f' 最大绝对差异: {abs_diff.max():.0f} (0-255)')
print(f' 平均绝对差异: {abs_diff.mean():.6f}')
print(f' 差异标准差: {abs_diff.std():.6f}')
print()
for c, name in enumerate(['R', 'G', 'B']):
ch = abs_diff[:,:,c]
print(f' {name} 通道: max={ch.max():.0f}, mean={ch.mean():.6f}, >0占比={np.sum(ch>0)/ch.size*100:.4f}%')
print()
mse = np.mean((img1 - img2) ** 2)
if mse == 0:
print(' PSNR: inf (完全相同)')
else:
psnr = 10 * np.log10(255**2 / mse)
print(f' PSNR: {psnr:.2f} dB')
print()
print('差异分布 (绝对值):')
for threshold in [0, 1, 2, 3, 5, 10]:
count = np.sum(abs_diff > threshold)
print(f' > {threshold}: {count} 子像素 ({count/abs_diff.size*100:.4f}%)') |
Beta Was this translation helpful? Give feedback.
-
|
我用这个版本看youtube的4k视频时如果点击未加载的进度条会卡住,但是任务管理器可以看到网络一直在下载,看1080p视频和用之前的版本(2026NE,2025EX)没出现问题。 mpv.conf |
Beta Was this translation helpful? Give feedback.
-
|
87a4748 三代缩略图引擎上线。扩展支持了ffmpeg后端预生成缩略图(变相复活了初代缩略图引擎的工作方式,但是也补充了对dv的支持) 同步更新了uosc(当前仅该脚本支持新引擎),下个版本默认使用自然模式(仅在悬停后)显示缩略图。 |
Beta Was this translation helpful? Give feedback.
-
|
input_plus脚本更新一个新实用指令:
|
Beta Was this translation helpful? Give feedback.
-
|
一个vcs的初步实现(Video Contact Sheet 视频缩略图阵列),但是没有进一步开发的计划,这个api设计完感觉有点为了一碟醋包饺子的即视感。。。
|
Beta Was this translation helpful? Give feedback.
-
|
最近 vapoursynth 发布了 R74候选版 ,安装方式改动很大,尝试升级了下,便携版现在完全由pip安装,似乎更难集成到mpv中了。
通过pip安装后相关的dll文件都在 Lib\site-packages\vapoursynth 目录下,默认情况下压根就找不到, |
Beta Was this translation helpful? Give feedback.
-
一部动画只有这这一集无法在mpvlazy打开,求教
|
Beta Was this translation helpful? Give feedback.
-
|
试了一下bcas,和nnedi3一起使用不错。有一些疑惑:锐化类的有的作用于luma,有的main,或native或output。不同的选择,再加上mpv内部的处理流程,理论上作用于哪个更优呢? |
Beta Was this translation helpful? Give feedback.
-
|
怎么在osd上查看是否打开了rife,具体模型是哪个,还有着色器的插件超分 |
Beta Was this translation helpful? Give feedback.
-
|
作者你好,我下载了懒人包,拖入视频后速度是一倍,然后播放速度起码是8X或以上,怎么修复呢 |
Beta Was this translation helpful? Give feedback.










Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
主要问题追踪
上游追踪
懒人包2025EX #628 (comment)
Darker images captured when both option
hdr-reference-white = 100and commandscreenshotmpv-player/mpv#17057d3d11: allow mapping RGB hw frames, make NVIDIA RTX tone mapping work without downloading frames to cpu mpv-player/mpv#17423
下版本开发记录
脚本 移除 playlist_osd (建议使用select菜单或mpv原生菜单/OSD菜单)
脚本 移除 contextmenu_plus (可切换到select菜单或mpv原生菜单/OSD菜单)
核心 备用两种内置的菜单 db772ed
脚本 新增 着色器扩展菜单 #658 (comment)
着色器 移植 NEDI
umpv 更新 1.0.3 https://github.com/LumeCraft-Labs/rumpv/releases/tag/1.0.3
着色器 精简结构 ESRGAN
脚本 更新 stats_mediainfo 支持 uosc 集成
脚本 替换 新的缩略图引擎 #668
脚本 更新 input_plus 新增简易的input-test模式 #658 (comment)
脚本 新增 vcs #658 (comment)
脚本 整合 vcs与着色器扩展菜单进新的脚本群组 uosc_addones #669
着色器 新增 BCAS
This discussion was created from the release 2026CJ.
上期 #644
Beta Was this translation helpful? Give feedback.
All reactions