当前位置: 首页>>代码示例>>Python>>正文


Python repository.Gst方法代码示例

本文整理汇总了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 
开发者ID:bbc,项目名称:brave,代码行数:13,代码来源:helpers.py

示例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) 
开发者ID:bbc,项目名称:brave,代码行数:12,代码来源:helpers.py

示例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) 
开发者ID:google-coral,项目名称:examples-camera,代码行数:9,代码来源:common.py


注:本文中的gi.repository.Gst方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。