【发布时间】:2018-10-03 20:06:07
【问题描述】:
我目前正在尝试让一个简单的 GstRtspServer 程序在外部 amazon linux EC2 服务器上运行,但我在让它实际运行时遇到了严重的问题。无论我做什么,当我尝试运行它时,我都会遇到同样的错误,即使程序被简化为
import gi
gi.require_version('Gst','1.0')
from gi.repository import GLib, Gst, GstRtspServer
我已经安装了 pygobject,我已经安装了 gstreamer,我已经安装了 gobject-introspection,并且任何 google 搜索结果都没有任何帮助。有谁知道我可能会错过什么?
【问题讨论】:
-
GstRtspServer 作为需要安装的额外包。
标签: python amazon-ec2 gstreamer gobject-introspection