无法加载python gstreamer元素

时间:2019-05-22 21:10:43

标签: python plugins gstreamer

我正在按照https://mathieuduponchelle.github.io/2018-02-01-Python-Elements.html?gi-language=undefined上的指南在Python中创建示例gstreamer元素。但是,我无法让GStreamer加载它。我一直在摆弄GST_PLUGIN_PATH,但是找不到我的python文件。我可以让GStreamer查找已编译的.so元素,但是python元素似乎在规避插件加载器。

我已尽我所能在Debian 9.8 Linux fe34e822e54e 4.18.0-17-generic #18~18.04.1-Ubuntu SMP Fri Mar 15 15:27:12 UTC 2019 x86_64上安装了gstreamer1.0,pygobject和gst-python:

apt install gstreamer1.0-tools
apt install python3-gst-1.0 python-gst-1.0  # install python bindings for gstreamer
apt install python3-gi python3-gi-cairo gir1.2-gtk-3.0  # Install PyGObject as per https://pygobject.readthedocs.io/en/latest/getting_started.html#ubuntu-getting-started

我扎根于/tmp/my_gtest

$ ls
python
$ ls python/
srcelement.py
$ GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD gst-inspect-1.0 audiotestsrc_py
No such element or plugin 'audiotestsrc_py'
$ GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD GST_DEBUG=4 gst-inspect-1.0 --gst-plugin-path=/tmp/g/ audiotestsrc_py
0:00:00.000117317   900 0x560506a39a00 INFO                GST_INIT gst.c:510:init_pre: Initializing GStreamer Core Library version 1.10.4
0:00:00.000236545   900 0x560506a39a00 INFO                GST_INIT gst.c:511:init_pre: Using library installed in /usr/lib/x86_64-linux-gnu
0:00:00.000264897   900 0x560506a39a00 INFO                GST_INIT gst.c:522:init_pre: Linux fe34e822e54e 4.18.0-17-generic #18~18.04.1-Ubuntu SMP Fri Mar 15 15:27:12 UTC 2019 x86_64
0:00:00.000422525   900 0x560506a39a00 INFO                GST_INIT gst.c:427:add_path_func: Adding plugin path: "/tmp/my_gtest/", will scan later
0:00:00.001049692   900 0x560506a39a00 INFO                GST_INIT gstmessage.c:126:_priv_gst_message_initialize: init messages
0:00:00.002382651   900 0x560506a39a00 INFO                GST_INIT gstcontext.c:83:_priv_gst_context_initialize: init contexts
0:00:00.002634936   900 0x560506a39a00 INFO      GST_PLUGIN_LOADING gstplugin.c:316:_priv_gst_plugin_initialize: registering 0 static plugins
0:00:00.002687971   900 0x560506a39a00 INFO      GST_PLUGIN_LOADING gstplugin.c:224:gst_plugin_register_static: registered static plugin "staticelements"
0:00:00.002695054   900 0x560506a39a00 INFO      GST_PLUGIN_LOADING gstplugin.c:226:gst_plugin_register_static: added static plugin "staticelements", result: 1
0:00:00.002703860   900 0x560506a39a00 INFO            GST_REGISTRY gstregistry.c:1738:ensure_current_registry: reading registry cache: /root/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.007377882   900 0x560506a39a00 INFO            GST_REGISTRY gstregistrybinary.c:619:priv_gst_registry_binary_read_cache: loaded /root/.cache/gstreamer-1.0/registry.x86_64.bin in 0.004664 seconds
0:00:00.007421588   900 0x560506a39a00 INFO            GST_REGISTRY gstregistry.c:1594:scan_and_update_registry: Validating plugins from registry cache: /root/.cache/gstreamer-1.0/registry.x86_64.bin
0:00:00.007427719   900 0x560506a39a00 INFO            GST_REGISTRY gstregistry.c:1606:scan_and_update_registry: Scanning plugin path: "/tmp/my_gtest/"
0:00:00.008249182   900 0x560506a39a00 INFO            GST_REGISTRY gstregistry.c:1696:scan_and_update_registry: Registry cache has not changed
0:00:00.008255509   900 0x560506a39a00 INFO            GST_REGISTRY gstregistry.c:1773:ensure_current_registry: registry reading and updating done, result = 1
0:00:00.008277874   900 0x560506a39a00 INFO                GST_INIT gst.c:720:init_post: GLib runtime version: 2.50.3
0:00:00.008282666   900 0x560506a39a00 INFO                GST_INIT gst.c:722:init_post: GLib headers version: 2.50.3
0:00:00.008286452   900 0x560506a39a00 INFO                GST_INIT gst.c:723:init_post: initialized GStreamer successfully
No such element or plugin 'audiotestsrc_py'

一个预感是gst-python没有正确安装,或者我的gstreamer没有正确编译(不能信任那些软件包?)。但是,python绑定似乎很好,就像我运行python3时一样:

>>> import gi
>>> gi.require_version('Gst', '1.0')
>>> from gi.repository import GObject, Gst
>>> GObject.threads_init()
>>> Gst.init(None)
>>> Gst.ElementFactory.make("tee")
<__gi__.GstTee object at 0x7f438eef1318 (GstTee at 0x564f28de8000)>
>>> Gst.ElementFactory.make("audiotestsrc_py")
>>> 

您会看到找不到audiotestsrc_py的相同行为。

不确定下一步该怎么做,可能必须在C中开发gst插件。

2 个答案:

答案 0 :(得分:2)

是的,我在干净的gstreamer安装中(在Docker容器内)遇到了同样的问题。要修复,我克隆了gst-python并构建了它:

cd /home/ml/gst-python
export PYTHON=/usr/bin/python3
./autogen.sh --disable-gtk-doc --noconfigure
./configure --prefix=/usr --with-libpython-dir=/usr/lib/x86_64-linux-gnu
make
sudo make install

echo "check install"
export GST_PLUGIN_PATH=/usr/lib/gstreamer-1.0
gst-inspect-1.0 python

然后我将python identity_py插件放在plugins/python下的工作区中并进行了测试:

cd /home/work/gstreamer

# all python plugins are under $PWD/plugins/python
export GST_PLUGIN_PATH=$GST_PLUGIN_PATH:$PWD/plugins

gst-inspect-1.0 identity_py
GST_DEBUG=python:4 gst-launch-1.0 fakesrc num-buffers=10 ! identity_py ! fakesink

相当小的兔子洞!顺便说一句,我想我可以使用appsink插件来实现我的目的。

答案 1 :(得分:1)

也许您和我有同样的问题:https://bugs.launchpad.net/ubuntu/+source/gst-python1.0/+bug/1739966

我正在通过从源代码进行编译。