Gstreamer 中的图像幻灯片
我想制作一个 GStreamer 应用程序,它采用 xml 文件处理其内容,提供图像 url、其重量以及在屏幕上显示的持续时间等信息。
可以使用libxml在C中清楚地处理xml文件。但是我们如何使用 GStreamer 库创建图像的幻灯片。我想使用 GStreamer,因为我使用的硬件和 SDK 提供了对 GStreamer 的本机支持。
是否有任何 GStreamer 插件可以执行相同的操作。或者还有什么办法可以做。我了解 GStreamer 基础知识,并且可以用 C 语言为 GStreamer 应用程序编写代码。
I want to make a GStreamer application which takes a xml file process its content which provides information like image url, its weight and the duration for which it is going to be displayed on the screen.
The xml file can be clearly processed in C using libxml. But how can we create a slideshow of the images using the GStreamer libraries. I want to use GStreamer because the hardware and the SDK I am using provide native support for GStreamer.
Are there any GStreamer plugins to do the same. Or how else can be done. I know GStreamer basics and can write code in C for GStreamer application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 imagefreeze 元素创建一个管道,并在必须更改图像时更改源位置。
显示硬盘中的两个静态图像的示例应用程序(Python):
You have to create a pipeline with an imagefreeze element and change the source location when the image must be changed.
An example application (in Python) that shows two still images from hard disk:
尝试以下 C 代码:
Try the following piece of code of C :