您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
由于主流Chromium内核浏览器不支持硬解hevc,哔哩哔哩播放hevc时可能使用cpu软件导致卡顿,特修改为原画画质,此脚本原版为bilibili直播默认最高画质,感谢原作者:https://greasyfork.org/zh-CN/scripts/441090-bilibili%E7%9B%B4%E6%92%AD%E9%BB%98%E8%AE%A4%E6%9C%80%E9%AB%98%E7%94%BB%E8%B4%A8
// ==UserScript== // @name bilibili直播默认原画画质 // @namespace mscststs // @version 0.4 // @description 由于主流Chromium内核浏览器不支持硬解hevc,哔哩哔哩播放hevc时可能使用cpu软件导致卡顿,特修改为原画画质,此脚本原版为bilibili直播默认最高画质,感谢原作者:https://greasyfork.org/zh-CN/scripts/441090-bilibili%E7%9B%B4%E6%92%AD%E9%BB%98%E8%AE%A4%E6%9C%80%E9%AB%98%E7%94%BB%E8%B4%A8 // @author mscststs // @include /^https:\/\/live\.bilibili\.com\/(?:blanc\/)?\d/ // @icon https://www.google.com/s2/favicons?domain=bilibili.com // @require https://greasyfork.org/scripts/38220-mscststs-tools/code/MSCSTSTS-TOOLS.js?version=1026406 // @run-at document-start // @license GNU GPLv3 // @grant none // ==/UserScript== (async function() { 'use strict'; let video = await mscststs.wait("#live-player > video"); if(video.paused){ video.addEventListener("playing",changeQuelity); }else{ changeQuelity(); } function changeQuelity(){ let livePlayer = window.livePlayer; if(!livePlayer){ livePlayer = window.top.livePlayer; } let info = livePlayer.getPlayerInfo() if(info.qualityCandidates.length > 1){ console.log(info.qualityCandidates); for (let index = 0; index < info.qualityCandidates.length; index++) { // 想要默认其他画质,请修改"原画"为"原画PRO"诸如此类 if (info.qualityCandidates[index].desc=="原画") { livePlayer.switchQuality(info.qualityCandidates[index].qn) } //else{ // livePlayer.switchQuality(info.qualityCandidates[0].qn) //} } } } })();