本文整理汇总了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
示例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
示例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
示例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"
示例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)
示例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)
示例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)
示例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)
示例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)
示例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)
示例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)
示例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)