當前位置: 首頁>>代碼示例>>Python>>正文


Python Plugin.stream_weight方法代碼示例

本文整理匯總了Python中streamlink.plugin.Plugin.stream_weight方法的典型用法代碼示例。如果您正苦於以下問題:Python Plugin.stream_weight方法的具體用法?Python Plugin.stream_weight怎麽用?Python Plugin.stream_weight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在streamlink.plugin.Plugin的用法示例。


在下文中一共展示了Plugin.stream_weight方法的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:coder-alpha,項目名稱:CcloudTv.bundle,代碼行數:12,代碼來源:youtube.py

示例2: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:coder-alpha,項目名稱:CcloudTv.bundle,代碼行數:14,代碼來源:ustreamtv.py

示例3: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.plugin.Plugin import stream_weight [as 別名]
    def stream_weight(cls, stream):
        match_3d = re.match(r"(\w+)_3d", stream)
        match_hfr = re.match(r"(\d+p)(\d+)", stream)
        if match_3d:
            weight, group = Plugin.stream_weight(match_3d.group(1))
            weight -= 1
            group = "youtube_3d"
        elif match_hfr:
            weight, group = Plugin.stream_weight(match_hfr.group(1))
            weight += 1
            group = "high_frame_rate"
        else:
            weight, group = Plugin.stream_weight(stream)

        return weight, group
開發者ID:sheldon0531,項目名稱:streamlink,代碼行數:17,代碼來源:youtube.py

示例4: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:coder-alpha,項目名稱:CcloudTv.bundle,代碼行數:9,代碼來源:azubutv.py

示例5: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:coder-alpha,項目名稱:CcloudTv.bundle,代碼行數:11,代碼來源:bliptv.py

示例6: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:coder-alpha,項目名稱:CcloudTv.bundle,代碼行數:7,代碼來源:douyutv.py

示例7: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.plugin.Plugin import stream_weight [as 別名]
 def stream_weight(cls, stream):
     if stream in cls.STREAM_WEIGHTS:
         return cls.STREAM_WEIGHTS[stream], "ustreamtv"
     return Plugin.stream_weight(stream)
開發者ID:sheldon0531,項目名稱:streamlink,代碼行數:6,代碼來源:ustreamtv.py

示例8: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:amadu80,項目名稱:repository.xvbmc,代碼行數:8,代碼來源:beattv.py

示例9: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.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:amadu80,項目名稱:repository.xvbmc,代碼行數:8,代碼來源:crunchyroll.py

示例10: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.plugin.Plugin import stream_weight [as 別名]
    def stream_weight(cls, key):
        weight = cls.quality_weights.get(key)
        if weight:
            return weight, "filmon"

        return Plugin.stream_weight(key)
開發者ID:sheldon0531,項目名稱:streamlink,代碼行數:8,代碼來源:filmon.py

示例11: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.plugin.Plugin import stream_weight [as 別名]
    def stream_weight(cls, key):
        weight = QUALITY_WEIGHTS.get(key)
        if weight:
            return weight, "zdf_mediathek"

        return Plugin.stream_weight(key)
開發者ID:sheldon0531,項目名稱:streamlink,代碼行數:8,代碼來源:zdf_mediathek.py

示例12: stream_weight

# 需要導入模塊: from streamlink.plugin import Plugin [as 別名]
# 或者: from streamlink.plugin.Plugin import stream_weight [as 別名]
    def stream_weight(cls, stream):
        if stream in _quality_weights:
            return _quality_weights.get(stream), "quality"

        return Plugin.stream_weight(stream)
開發者ID:sheldon0531,項目名稱:streamlink,代碼行數:7,代碼來源:showroom.py


注:本文中的streamlink.plugin.Plugin.stream_weight方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。