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


Python Plugin.stream_weight方法代码示例

本文整理汇总了Python中livestreamer.plugin.Plugin.stream_weight方法的典型用法代码示例。如果您正苦于以下问题:Python Plugin.stream_weight方法的具体用法?Python Plugin.stream_weight怎么用?Python Plugin.stream_weight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在livestreamer.plugin.Plugin的用法示例。


在下文中一共展示了Plugin.stream_weight方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, stream):
        match = re.match("(\w+)_3d", stream)
        if match:
            weight, group = Plugin.stream_weight(match.group(1))
            weight -= 1
            group = "youtube_3d"
        else:
            weight, group = Plugin.stream_weight(stream)

        return weight, group
开发者ID:Ralbarker,项目名称:xbmc-israel,代码行数:12,代码来源:youtube.py

示例2: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, stream):
        match = re.match("mobile_(\w+)", stream)
        if match:
            weight, group = Plugin.stream_weight(match.group(1))
            weight -= 1
            group = "mobile_ustream"
        elif stream == "recorded":
            weight, group = 720, "ustream"
        else:
            weight, group = Plugin.stream_weight(stream)

        return weight, group
开发者ID:alletti,项目名称:livestreamer,代码行数:14,代码来源:ustreamtv.py

示例3: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, stream):
        if stream == "source":
            weight = 1080
        else:
            weight, group = Plugin.stream_weight(stream)

        return weight, "azubutv"
开发者ID:EPiC-APOC,项目名称:repository.xvbmc,代码行数:9,代码来源:azubutv.py

示例4: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
 def stream_weight(cls, key):
     match_ultra = QUALITY_WEIGHTS_ULTRA.match(key)
     if match_ultra:
         ultra_level = int(match_ultra.group('level'))
         return 1080 * (ultra_level + 1), "bliptv"
     weight = QUALITY_WEIGHTS.get(key)
     if weight:
         return weight, "bliptv"
     return Plugin.stream_weight(key)
开发者ID:EPiC-APOC,项目名称:repository.xvbmc,代码行数:11,代码来源:bliptv.py

示例5: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, key):
        weight = QUALITY_WEIGHTS.get(key)
        if weight:
            return weight, "justintv"

        return Plugin.stream_weight(key)
开发者ID:reduced111,项目名称:livestreamer,代码行数:8,代码来源:justintv_common.py

示例6: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, key):
        weight = STREAM_WEIGHTS.get(key)
        if weight:
            return weight, "crunchyroll"

        return Plugin.stream_weight(key)
开发者ID:A-StadLabs,项目名称:citylive,代码行数:8,代码来源:crunchyroll.py

示例7: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, stream):
        if stream in STREAM_WEIGHTS:
            return STREAM_WEIGHTS[stream], "douyutv"

        return Plugin.stream_weight(stream)
开发者ID:EPiC-APOC,项目名称:repository.xvbmc,代码行数:7,代码来源:douyutv.py

示例8: stream_weight

# 需要导入模块: from livestreamer.plugin import Plugin [as 别名]
# 或者: from livestreamer.plugin.Plugin import stream_weight [as 别名]
    def stream_weight(cls, key):
        weight = QUALITY_MAP.get(key)
        if weight:
            return weight, "beat"

        return Plugin.stream_weight(key)
开发者ID:A-StadLabs,项目名称:citylive,代码行数:8,代码来源:beattv.py


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