本文整理汇总了Python中gi.repository.Gst方法的典型用法代码示例。如果您正苦于以下问题:Python repository.Gst方法的具体用法?Python repository.Gst怎么用?Python repository.Gst使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gi.repository
的用法示例。
在下文中一共展示了repository.Gst方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: state_string_to_constant
# 需要导入模块: from gi import repository [as 别名]
# 或者: from gi.repository import Gst [as 别名]
def state_string_to_constant(str):
str = str.upper()
if (str == 'PLAYING'):
return Gst.State.PLAYING
if (str == 'PAUSED'):
return Gst.State.PAUSED
if (str == 'READY'):
return Gst.State.READY
if (str == 'NULL'):
return Gst.State.NULL
return None
示例2: block_pad
# 需要导入模块: from gi import repository [as 别名]
# 或者: from gi.repository import Gst [as 别名]
def block_pad(pad):
'''
Block an element's pad. (If already blocked, do nothing.)
'''
def _callback(*_):
return Gst.PadProbeReturn.OK
global block_probes
if pad not in block_probes:
block_probes[pad] = pad.add_probe(Gst.PadProbeType.BLOCK_DOWNSTREAM, _callback)
示例3: set_input
# 需要导入模块: from gi import repository [as 别名]
# 或者: from gi.repository import Gst [as 别名]
def set_input(interpreter, buf):
"""Copies data to input tensor."""
result, mapinfo = buf.map(Gst.MapFlags.READ)
if result:
np_buffer = np.reshape(np.frombuffer(mapinfo.data, dtype=np.uint8), input_image_size(interpreter))
input_tensor(interpreter)[:, :] = np_buffer
buf.unmap(mapinfo)