【已解决】请问这种截图是用哪种软件或脚本实现的?
本帖最后由 巴洛克哥特 于 2025-9-30 19:37 编辑详见链接,这种右上角显示帧类型和帧数的截图如何截取?
https://slow.pics/c/qbBiwsKW 这个mpv可以print出来 本帖最后由 waecy 于 2025-9-29 23:10 编辑
MPC, MPV应该都行
本帖最后由 dibin 于 2025-9-30 00:51 编辑
VapourSynth脚本,详细可以看下面两个教程
https://silentaperture.gitlab.io/mdbook-guide/encoding/screenshots.html
https://thewiki.moe/tutorials/comparison/
下面是最简单的对比脚本,运行脚本后用数字键0、1可以切换不同的源
import vapoursynth as vs
import awsmfunc as awf
core = vs.core
Source=core.lsmas.LWLibavSource(r"source.mkv")
Encode=core.lsmas.LWLibavSource(r"encode.mkv")
Source= awf.FrameInfo(Source , 'Source')
Encode= awf.FrameInfo(Encode , 'Encode')
Source.set_output(0)
Encode.set_output(1)
感谢三位的回复,我知道了,谢谢~
页:
[1]