是否可以从 FMS 直播流中检索帧作为图像?
有人试过这个吗?
对此的最佳实践是什么?
Has anyone tried this ?
What's the best practice for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人试过这个吗?
对此的最佳实践是什么?
Has anyone tried this ?
What's the best practice for this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
FMS 直播使用 RTMP 协议:
这里,我们将整个流保存到FLV文件中,这是Flash的静态电影文件格式,因此可以始终保留所有RTMP音频和视频无需转换的编解码器。
然后您可以提取任何您想要的帧,例如
如果您雄心勃勃并且确切地知道您想要的时间偏移和间隔要提前捕获,您可以同时执行这两个步骤,例如每秒一帧:
所有命令行都没有已经过测试,需要修复,但会给您留下良好的印象
FMS live streams are using the RTMP protocol:
Here, we are saving the whole stream to an FLV file, which is Flash's static movie file format and so can always preserve all RTMP audio and video codecs without conversion.
You can then extract any frames you want, e.g.
If you are ambitious and know exactly what time offsets and intervals you want to capture in advance, you can do both steps at once, e.g. one frame every second:
All commandlines have not been tested, will need fixing but give you a good impression