0

在Python中使用GObject Introspection,我試圖創建一個自定義PushSrc元素,這要求重寫createfill虛擬方法,但沒有成功。使用pygi,我該如何重寫一個與其基類中的虛方法具有相同名稱的GObject類的虛方法?

問題似乎是PushSrc及其基類BaseSrc都有這些虛擬方法。

換句話說,此代碼:

import gi 
gi.require_version('Gst', '1.0') 
gi.require_version('GstBase', '1.0') 
from gi.repository import GstBase, Gst, GObject 
Gst.init(None) 


class MyPushSrc(GstBase.PushSrc): 
    def __init__(self): 
     self.add_pad_template(Gst.PadTemplate.new("src", 
                Gst.PadDirection.SRC, 
                Gst.PadPresence.ALWAYS, 
                Gst.Caps.new_any())) 
     GstBase.PushSrc.__init__(self) 

    def do_fill(self, buf): 
     return Gst.FlowReturn.OK 


GObject.type_register(MyPushSrc) 

結果輸出:

Traceback (most recent call last): 
    File "mypushsrc.py", line 8, in <module> 
    class MyPushSrc(GstBase.PushSrc): 
    File "/usr/lib/python3/dist-packages/gi/types.py", line 223, in __init__ 
    cls._setup_vfuncs() 
    File "/usr/lib/python3/dist-packages/gi/types.py", line 120, in _setup_vfuncs 
    ambiguous_base.__info__.get_name() 
TypeError: Method do_fill() on class GstBase.PushSrc is ambiguous with methods in base classes GstBase.PushSrc and GstBase.BaseSrc 

不幸的是,事實證明do_fillPushSrc只有一個參數agains三個BaseSrc是不夠的反思不同於這些虛擬方法。那麼,我能做些什麼來重寫此方法?

回答

0

我認爲這是GStreamer Python綁定中的一個bug,目前無法解決這個問題。請參閱upstream bug report。如果有人就此問題開展工作,解決方案可能會在那裏出現。

相關問題