计算视频时长

发布于 2024-07-04 18:55:19 字数 1476 浏览 12 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千纸鹤 2024-07-11 18:55:19

看起来数字以毫秒为单位。 因此,要转换为秒,请除以 1000,然后除以 60 得出分钟等。

Looks like the numbers are in milliseconds. So to convert to seconds, divide by 1000, then divide by 60 to find minutes etc.

谜泪 2024-07-11 18:55:19

这是一个简单的除法问题:

  • 70966 / 70 秒(1:10 分钟) = 1013.8
  • 30533 / 30 = 1017.76
  • 7007 / 7 = 1001

看起来这些数字只不过是毫秒。 70966 显示为 1:10 分钟,因为它去掉了毫秒部分(最后 3 位数字)。

It's a simple matter of division:

  • 70966 / 70 seconds (1:10 minutes) = 1013.8
  • 30533 / 30 = 1017.76
  • 7007 / 7 = 1001

Looks like the numbers are nothing but milliseconds. 70966 displays as 1:10 minutes because it shaves of the millisecond part (last 3 digits).

£冰雨忧蓝° 2024-07-11 18:55:19

我不确定我是否完全理解这一点,但是:

 70966 / 70 seconds = 1013.8

所以将“值”除以 1013.8 应该得到大约的持续时间...

编辑:是的,本是对的,你应该除以 1000。我得到 1013.8 因为 70秒从 70.966 秒四舍五入到 70。

I'm not sure if I completely understand this, but:

 70966 / 70 seconds = 1013.8

So dividing the "value" by 1013.8 should get the duration, approximately...

Edit: Yes, Ben is right, you should divide by 1000. I got 1013.8 because the 70 seconds was rounded down from 70.966 seconds to 70.

白云悠悠 2024-07-11 18:55:19

扩展一下 Ben 所说的,看起来它们是毫秒,并且显示值是四舍五入的稍微,可能精确到 100 毫秒,然后“裁剪”到秒。 这可以解释为什么 30533 是 30 秒而 70966 是 70 秒。

To expand on what Ben said, it looks like they are milliseconds, and the display value is rounded slightly, possibly to the nearest 100 milliseconds and then 'cropped' to seconds. This would explain why 30533 is 30s and 70966 is 70s.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文