显示毫秒的视频播放器

显示毫秒的视频播放器

Linux 上有没有可以显示经过的毫秒数的视频播放器?

有一个VLC 扩展,但根据链接上的评论,它不适用于较新的版本。

答案1

播放器应该能够做到这一点:

mplayer -osdlevel 3 -osd-fractions 1 filename

参数详细信息参见手册:

-osd-fractions <0-2>
       Set how fractions of seconds of the current timestamp are printed on the OSD:
          0    Do not display fractions (default).
          1    Show the first two decimals.
          2    Show  approximated  frame count within current second.  This frame count is
               not accurate but only an approximation.  For variable fps,  the  approxima‐
               tion is known to be far off the correct frame count.

使用 mplayer 1.3.0 进行测试。

答案2

SMPlayer。

在状态栏中:

选项->状态栏

  • 显示当前时间(以毫秒为单位)

OSD(屏幕显示):

查看 -> OSD

  • 以毫秒为单位显示时间
  • 音量 + 搜索 + 定时器

对于 OSD,可能需要安装多用途车。启用多用途车多媒体播放器此处:
选项 - 首选项 - 常规 - 多媒体引擎 - mpv

答案3

有一个称为时间扩展的 VLC 扩展,它仅适用于 VLC v2.0.x。你可以在这里查看教程http://www.latestsolution.com/2016/06/Show-VLC-Timing-In-Millisecond.html

答案4

使用以下命令在终端中运行 mplayermplayer -osd-fractions 1 yourfile

相关内容