从直接 URL 获取流媒体 HTML 视频详细信息,无需下载

Get the streaming HTML Video details from a direct URL without downloading it

我已经从首页直接 URL 列出了服务器上的视频文件,现在我想获取视频详细信息(如高度和宽度、持续时间、文件大小等)而不下载它! (因为可以通过直接 URL 进行流式传输,例如 https://www.w3schools.com/html/mov_bbb.mp4

有什么方法可以在不实际下载整个文件的情况下获取视频详细信息?
我找到了 MediaInfo,但我不知道如何在这个概念中使用它。
另外,网站本身 has a tool that works offline 没有上传文件!

Is there any way to get the video details without actually downloading the whole file?

mediainfo https://www.w3schools.com/html/mov_bbb.mp4

只阅读它需要的内容(MP4 header 和大约 10 秒的内容)。

如果您不需要,例如GOP 大小,您可以使用

将下载减少到只有几帧
mediainfo --ParseSpeed=0 https://www.w3schools.com/html/mov_bbb.mp4

命令行与MediaInfo的命令行版本一起使用,查看MediaInfo的下载页面。

Jérôme,MediaInfo 的开发者。