如何使用 gstreamer 处理播放列表?
我想创建使用 gstreamer 播放实时互联网流的应用程序。它可以很好地播放一些流,但是当它遇到播放列表时,它会给我一个错误,提示没有“text/uri-list”插件。如何正确处理播放列表 uri?
I want to create application that will play live internet streams with gstreamer. It plays some streams fine, but when it encounters playlist it gives me an error that there is no plugin for "text/uri-list". How can I handle playlist uris in a correct way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管有一些关于 GStreamer 中播放列表支持的讨论,但今天,您必须捕获缺少插件错误(对于已知的播放列表 mimetypes),并自己处理 URI。您可以使用 totem-plparser 来处理实际的解析。 请参阅参考文档中的示例代码。
Although there are some discussions about the support of playlist in GStreamer, today, you'll have to catch the missing plugin error (for known playlist mimetypes), and handle the URI yourself. You can use totem-plparser to deal with the actual parsing. See example code in the reference documentation.