使用 FFMPEG 或可能的 HTML5 获取视频信息
我正在制作一个视频库,并想提取一些有关视频的信息以供显示。有谁知道我将如何使用 ffmpeg 检索视频持续时间?是否可以使用 HTML5 获取此信息?
谢谢。
I'm making a video gallery and would like to pull some info about the video for displaying. Does anyone know how I would go about retrieving the video duration using ffmpeg? Is it possible to get this info using HTML5?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我所做的(在 Linux 上)是这样的:
tcprobe -i $FILE |尾-n1 | cut -d '=' -f3
tcprobe 来自转码 Debian 软件包。
如果您使用的是 Windows,有一个名为 MediaInfo 的工具,但我还没有尝试过,所以我可以'不评论其有效性。
What I do (on Linux) is this:
tcprobe -i $FILE | tail -n1 | cut -d '=' -f3
tcprobe is from the transcode Debian package.
If you're on Windows there's a tool called MediaInfo, but I haven't tried it so I can't remark on its effectiveness.
在php中使用exec函数
http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/9448/how-to-get-video-duration- with-ffmpeg-and-php
Use exec function in php
http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/9448/how-to-get-video-duration-with-ffmpeg-and-php
我推荐 PHPVideoToolkit...
I would recommend PHPVideoToolkit...