百度网盘破解SVIP&&倍速播放&&文稿字幕

百度网盘视频完全破解SVIP。电脑用户使用新版火狐或安插件设置UserAgent:Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:110.0) Gecko/20100101 Firefox/110.0。iPad用户(我iOS15.7):安装Focus浏览器,安装插件,登录即为Svip。

< Feedback em 百度网盘破解SVIP&&倍速播放&&文稿字幕

Avaliação: Bom - o script funciona

§
Publicado: 19/09/2023

脚本很好用,有几个建议大佬能否看一下?
1,希望可以增加键盘切换倍速的功能,比如常见的c加速x减速z回复。
2,希望增加记住字幕字体大小的功能,播放新的视频会变回默认。
还有个小bug,字幕开关功能在连续播放到下一个视频时会继续加载上一个视频的字幕,得刷新网页才能正常,希望能修复一下
另外发现手动跳转到pfile链接也能用脚本,不需要安装ua插件也行

感谢作者的努力

§
Publicado: 28/09/2023
Editado: 28/09/2023

部分解决,字幕字体大小设定为24px,添加一段代码
var styleElement = document.createElement('style');
styleElement.innerHTML = '.vp-video__subtitle-text-first { font-size: 24px !important; }';
document.head.appendChild(styleElement);
就行了

如果不想默认点击文稿,在521行的 document.querySelector('.vp-tabs__header-item:nth-child(2)').click(); 前面加上// 反斜杠就行了。

另外附带一个自动跳转+字幕字号脚本,不需要安装ua插件

// ==UserScript==
// @name 百度网盘视频跳转
// @namespace http://tampermonkey.net/
// @match https://pan.baidu.com/
// @match https://pan.baidu.com/*
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==

(function() {
'use strict';
//如果是play,跳转到pfile
if (window.location.href.startsWith("https://pan.baidu.com/play/video#/video?path")) {
//if ( window.location.href.startsWith === "https://pan.baidu.com/play/video#/video?path") {
var url = window.location.href;
var newUrl = url.replace("/play/video#", "/pfile");
window.location.href = newUrl;
}

//修改字幕大小
//document.querySelector('.vp-video__subtitle-text-first').style = 'font-size: 24px;'
var styleElement = document.createElement('style');
styleElement.innerHTML = '.vp-video__subtitle-text-first { font-size: 24px !important; }';
document.head.appendChild(styleElement);
// Your code here...
})();

§
Publicado: 03/10/2023

第一个问题解决不了,我开发了截图脚本,结果发现与作者大大的脚本冲突,因为键盘被控制了

Publicar resposta

Faça o login para publicar uma resposta.