// ==UserScript==
// @name HTML5视频截图器
// @namespace indefined
// @supportURL https://github.com/indefined/UserScripts/issues
// @version 0.4.18
// @description 基于HTML5的简单原生视频截图,可控制快进/逐帧/视频调速,支持自定义快捷键
// @author indefined
// @include *://*
// @run-at document-end
// @grant GM_registerMenuCommand
// @grant GM_getValue
// @grant GM_setValue
// @grant GM.getValue
// @grant GM.setValue
// @require https://cdn.staticfile.org/jszip/3.1.5/jszip.min.js
// @license MIT
// ==/UserScript==
(async function HTML5VideoCapturer(){
'use strict';
let allConfigs,config;
if(typeof(GM)!='undefined') {
GM_getValue = GM.getValue;
GM_setValue = GM.setValue;
}
//设置保存读取相关配置和逻辑
const configList = {
active:{
content:'开启/关闭工具栏',
title:'全局工具栏快捷键开关,必须至少同时按下ctrl/shift/alt之一,尽量避免常用快捷键以免冲突',
key:'A',
ctrlKey:true,
shiftKey:false,
altKey:true
},
capture:{
content:'截图',
title:'按下该按键打开新窗口显示截图,同时按住shift会尝试直接下载,如果直接下载失败也会打开新窗口',
key:'s'
},
downCapture:{
content:'直接下载截图',
title:'按下该按键会尝试直接下载,如果直接下载失败效果等同于按下截图',
key:'q'
},
preFrame:{
content:'上一帧',
title:'使视频后退一帧(最小分辨率1/60秒)',
key:'d'
},
nextFrame:{
content:'下一帧',
title:'使视频前进一帧(最小分辨率1/60秒)',
key:'f'
},
backward:{
content:'后退',
title:'使视频后退1秒,按住ctrl/shift/alt快退倍率等同工具栏按钮说明',
key:'ArrowLeft'
},
forward:{
content:'前进',
title:'使视频前进1秒,按住ctrl/shift/alt快进倍率等同工具栏按钮说明',
key:'ArrowRight'
},
play:{
content:'播放/暂停',
title:'切换视频播放/暂停状态,由于大部分视频自带空格播放暂停功能,不建议全局设置为空格以免冲突',
key:''
},
speedOri:{
content:'原速',
title:'恢复1倍速播放视频',
key:'z',
},
speedDown:{
content:'减速',
title:'使视频减速,小于1倍速时步长为0.1倍速,最小有效值为0.1倍',
key:'x'
},
speedUp:{
content:'加速',
title:'使视频加速,大于1倍速时步长0.25倍速,最大有效值大概为16倍',
key:'c'
},
panelActive:{
content:'快捷键在截图工具栏上有效',
title:'当鼠标光标在工具栏上非输入区域时快捷键会生效,快捷键作用与点击操作按钮相同会操作选中视频',
type:'checkbox',
key:'',
checked:true,
disabled:true
},
playerActive:{
content:'启用播放器悬停快捷键支持',
title:'勾选时当鼠标悬停在视频上时快捷键会生效,无论工具栏是否打开,快捷键会直接操作被悬停视频且不会有提示。'
+ '\n由于各种播放器外壳影响该功能可能不会生效,且可能和播放器外壳自身快捷键冲突,建议针对网站设置是否开启',
type:'checkbox',
key:'',
checked:false
},
stopPropagation:{
content:'尝试覆盖网页快捷键',
title:'勾选此选项则触发快捷键时会尝试忽略覆盖网页原有快捷键,不一定会生效',
type:'checkbox',
key:'',
checked:false
},
saveAsPNG:{
content:'直接下载截图保存为png格式',
title:'勾选此项则下载的截图为原图png格式,默认保存为jpg(体积较小)',
type:'checkbox',
key:'',
checked:false
},
saveAsTimeStamp:{
content:'截图文件名按照当前时间保存',
title:'勾选此项则下载的截图文件名按照当前时间戳保存,否则按照视频播放时间保存',
type:'checkbox',
key:'',
checked:false
},
forceStepStop:{
content:'逐帧强制暂停',
title:'勾选此项后进行逐帧操作将临时挟持忽略视频的播放功能从而实现强制暂停,适用性和副作用未知,建议按需开启',
type:'checkbox',
key:'',
checked:false
},
crossOrigin:{
content:'视频匿名跨域',
title:'如果此选项被勾选,则网页打开时加载的非本网站视频会匿名访问。\n'
+'此操作可以解决部分视频无法直接下载截图问题,但可能导致更多视频无法播放,建议仅在无法截图网站尝试设置。\n'
+'注意此功能是一次性静态执行的,只会在网站刚加载时运行一次,后续加载的视频无效,且更改后需刷新生效。',
type:'checkbox',
key:'',
checked:false
}
};
/**
深拷贝一个配置,并检查缺失配置项和无效项
value: 待检查/拷贝的配置,可为空。
return: 深拷贝的配置对象,去除无效项并添加缺失项默认值。当value为空时返回默认配置的克隆
**/
function cloneConfig(value) {
const clone = {};
if(!value) value = configList;
for(const item in configList) {
//使用assign覆盖合并拷贝……因为二层结构暂时没有引用变量大概安全吧……
clone[item] = Object.assign({},configList[item],value[item]);
/*
for(const i in configList[item]) {
if(value[item]) clone[item][i] = value[item][i];
else clone[item][i] = configList[item][i];
}
*/
}
for (const i in clone) {
clone[i].key = clone[i].key.toUpperCase();
}
return clone;
}
//读取全部设置,赋值本网站生效配置的全局变量,并返回指定域名的单独配置
async function getConfig(site){
try{
allConfigs = await GM_getValue('config','{}');
if(allConfigs) allConfigs = JSON.parse(allConfigs);
}catch(e){
toast('读取配置错误,将使用默认配置',e);
allConfigs = {};
GM_setValue('config',JSON.stringify(allConfigs));
}
//使用深拷贝方法查缺和去无效
config = cloneConfig(allConfigs[document.location.host] || allConfigs.default);
//如果没有开启全局播放器快捷键则关闭悬停监听,这函数挺神经病的
document.removeEventListener('mousemove',hoverListener);
if(config.playerActive.checked) document.addEventListener('mousemove',hoverListener);
//有要求读取的网站配置时,返回要求的配置,否则返回默认配置,否则(全空,初次运行)返回初始配置
return allConfigs[site]||allConfigs.default||config;
}
/**
保存某个网站设置
value: 待保存的网站配置值,如为空则会删除该网站设置
site: 待保存的网站
**/
async function saveConfig(value,site) {
if(!value) {
if(site&&site!='default') delete allConfigs[site];
else {
allConfigs.default = cloneConfig();
}
}
else {
allConfigs[site||'default'] = value;
}
//删除没必要保存的额外成员
Object.values(allConfigs).forEach(config=>{
Object.values(config).forEach(item=>{
delete item.title;
delete item.content;
});
});
await GM_setValue('config',JSON.stringify(allConfigs));
//为了防止保存延迟,延时重新加载设置
setTimeout(()=>{
getConfig(document.location.host);
//通知iframe重新加载设置
[].forEach.call(childs,(w,i)=>w.postMessage({action:'reload'},'*'));
},100);
}
//读取加载配置
await getConfig();
//匿名跨域,仅在启动时检查并操作一遍,实际作用有限
if (config.crossOrigin.checked) {
Array.from(document.querySelectorAll('video')).forEach(v=>{
if(!v.src||v.src.indexOf(location.host)==-1) {
v.setAttribute('crossorigin','anonymous');
}
});
}
//截图和视频操作相关函数从以下开始
const childs = "undefined"==typeof(unsafeWindow)?window.frames:unsafeWindow.frames;
let videos, video, selectId, hoverItem;
//监听鼠标是否悬停在视频或工具栏……极其低效却很简单通用的实现,开启关闭判断放在getConfig中
//不需要监听视频悬停时应当移除(工具栏自带悬停检测,但作用会被该函数覆盖)
function hoverListener(ev) {
if (ev.target instanceof HTMLVideoElement || (window==top&&panel&&panel.contains(ev.target))) hoverItem = ev.target;
else hoverItem = undefined;
}
function videoCapture(download){
if (!video) return;
const canvas = document.createElement("canvas");
canvas.width = video.videoWidth;
canvas.height = video.videoHeight;
canvas.getContext('2d').drawImage(video, 0, 0, canvas.width, canvas.height);
canvas.dataset.timestamp = config.saveAsTimeStamp.checked
? new Date().toLocaleString('zh', {hour12: false})
:`${Math.floor(video.currentTime/60)}_${(video.currentTime%60).toFixed(3)}`;
if (download) downloadCapture(canvas);
else appendToCanvasList(canvas);
}
function getCaptureName(canvas) {
const type = config.saveAsPNG.checked ? 'png' : 'jpg',
timestamp = canvas.dataset.timestamp;
return `${document.title}_${timestamp}.${type}`
}
function downloadCapture(canvas){
if (canvas.dataset.dirty) return;
canvas2Blob(canvas).then(blob=>{
saveAs(blob, getCaptureName(canvas))
}).catch(e=>{
appendToCanvasList(canvas);
});
}
function canvas2Blob(canvas){
if (canvas.dataset.dirty) return Promise.reject('由于视频跨域安全限制此截图无法转换');
return new Promise(resolve=>{
const type = config.saveAsPNG.checked ? 'image/png' : 'image/jpeg';
canvas.toBlob(resolve, type, 0.98); //0.98质量参数仅在jpg时有效,png时自动被忽略
}).catch(e=>{
canvas.dataset.dirty = true;
throw e;
})
}
function saveAs(blob, name){
const a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = name;
document.head.appendChild(a);
a.click();
document.head.removeChild(a);
}
function downloadAll() {
if (!canvasList) return;
const list = Array.from(canvasList.querySelectorAll('canvas:not([data-dirty])'));
if (!list.length) return;
Promise.all(list.map(canvas2Blob)).then(blobs=>{
const zip = new JSZip();
blobs.forEach((blob, idx)=>zip.file(getCaptureName(list[idx]), blob));
return zip.generateAsync({type: "blob"}).then(blob=>saveAs(blob, `${document.title}_截图_.zip`));
}).catch(e=>console.error(e));
}
// 暂存截图画布的悬浮列表
let canvasContainer, canvasList, downloadBtn;
function createCanvasList() {
canvasContainer = _c({
nodeType: 'div',
className: 'h5vc-canvas-container',
childs:[
{
nodeType: 'style',
innerHTML: '.h5vc-canvas-container{position: fixed; right: 0; top: 0; z-index: 2000000;}'
+ '.h5vc-canvas-list{max-height: calc(100vh - 50px); overflow: auto; background: black; }'
+ '.h5vc-list-item{position: relative; width: 240px; height: 135px; margin: 5px;}'
+ '.h5vc-list-item canvas{max-width: 240px; max-height: 135px;}'
+ '.h5vc-list-item canvas[data-dirty]+.h5vc-item-download:before{content: "无法"}'
+ '.h5vc-list-item canvas[data-dirty]+.h5vc-item-download:after{content: ",请右键另存"}'
+ '.h5vc-list-item .h5vc-item-download{right: 5px;bottom: 5px;font-size: 14px;font-weight: 500;cursor: pointer;}'
+ '.h5vc-list-item .h5vc-item-remove{top: 5px;right: 5px;font-size: 16px;font-weight: 500;cursor: pointer;}'
+ '.h5vc-list-item .h5vc-item-new-tab{top: 5px;left: 5px;font-size: 14px;font-weight: 500;cursor: pointer;}'
+ '.h5vc-list-item .h5vc-item-time{left: 5px;font-size: 14px;bottom: 5px;}'
+ '.h5vc-list-item span{position: absolute;color:#FFF;text-shadow: #000 1px 1px 2px}'
+ '.h5vc-canvas-batch{margin-top: 5px}'
+ '.h5vc-canvas-batch button{height: 35px;width: 80px;background: #000c;color: #fff;border: none;margin: 0 20px;border-radius: 7px;}'
},
canvasList = _c({
nodeType: 'div',
className: 'h5vc-canvas-list',
})
],
parent: document.body
});
downloadBtn = _c({
nodeType: 'div', className: 'h5vc-canvas-batch',
childs: [
{
nodeType: 'button', innerText: '下载全部',
onclick: downloadAll
},
{
nodeType: 'button', innerText: '删除全部',
onclick: clearList
}
]
});
}
function appendToNewTab(canvas) {
const tab = open('', '_blank');
tab.document.body.appendChild(canvas);
_c({
nodeType: 'style', innerHTML: 'canvas:{max-width: 100%}span{display: flex;}.h5vc-item-remove,.h5vc-item-new-tab{display: none}'
+ '.h5vc-list-item canvas[data-dirty]+.h5vc-item-download:before{content: "无法"}'
+ '.h5vc-list-item canvas[data-dirty]+.h5vc-item-download:after{content: ",请右键另存"}',
parent: tab.document.body
});
checkCanvasList();
}
function appendToCanvasList(canvas) {
if (!canvasList) createCanvasList();
if (canvasList.contains(canvas)) return;
canvasList.appendChild(_c({
nodeType: 'div',
className: 'h5vc-list-item',
childs: [
canvas,
{
nodeType: 'span', className: 'h5vc-item-download',
innerText: '下载',
onclick: ()=> downloadCapture(canvas)
},
{
nodeType: 'span', className: 'h5vc-item-new-tab',
innerText: '新窗口',
onclick: function(){appendToNewTab(this.parentNode)}
},
{
nodeType: 'span', className: 'h5vc-item-remove',
innerText: 'X',
onclick: function(){removeFromList(this.parentNode)}
},
{
nodeType: 'span', className: 'h5vc-item-time',
innerText: canvas.dataset.timestamp.replace(/_/g, ':')
}
]
}));
checkCanvasList();
}
function removeFromList(canvas) {
if (!canvasList || !canvas.contains(canvas)) return;
canvasList.removeChild(canvas);
checkCanvasList();
}
function clearList() {
if (!canvasList) return;
canvasList.innerText = '';
checkCanvasList();
}
function checkCanvasList() {
if (!canvasContainer) return;
if (canvasList.childElementCount == 0 && canvasContainer.contains(downloadBtn)) {
canvasContainer.removeChild(downloadBtn);
}
else if (canvasList.childElementCount > 1 && !canvasContainer.contains(downloadBtn)) {
canvasContainer.appendChild(downloadBtn);
}
}
// 以下为视频控制部分
function videoPlay(){
if (!video) return;
video.paused?video.play():video.pause();
}
function videoSpeedChange(speed){
if (!video) return;
video.playbackRate = speed;
}
function nothing(){}
function videoStep(offset){
if (!video) return;
if (Math.abs(offset)<1) {
if (config.forceStepStop.checked) {
if (video.play!=nothing) {
video.doPlayBackup = video.play;
video.play = nothing;
}
clearTimeout(video.restorePlayTimmer);
video.restorePlayTimmer = setTimeout((function(){
this.play = this.doPlayBackup;
}).bind(video),150);
}
if (!video.paused) video.pause();
}
video.currentTime += offset;
if(video.currentTime<0) video.currentTime = 0;
}
function isInView(v) {
if (!v) return false;
var vh = document.documentElement.clientHeight,
vw = document.documentElement.clientWidth,
br = v.getBoundingClientRect(),
h = br.height,
w = br.width,
vt = br.top,
vl = br.left;
return (h>0&&w>0&&vt>=0&&vt<vh&&vl>=0&&vl<vw);
}
function videoDetech(){
videos = Array.from(document.querySelectorAll('video'));
if (window!=top){
top.postMessage({
action:'captureReport',
about:'videoNums',
length:videos.length,
host:location.host,
id:window.captureId
},'*');
}else{
while(selector.firstChild) selector.removeChild(selector.firstChild);
appendVideo(videos);
setTimeout(()=>{
if (selector.childNodes.length) {
//优先在顶层窗体找一个之前选中的视频或者正在播放的视频或者在视图中的视频,iframe里就不管了……
var value = videos.findIndex(v=>v==video);
if(value<0) value = videos.findIndex(v=>!v.paused);
if(value<0) value = videos.findIndex(isInView);
if(value<0) value = selector.value;
return videoSelect(value);
}
toast('当前页面没有检测到HTML5视频');
},100);
}
if (childs.length){
[].forEach.call(childs,(w,i)=>w.postMessage({
action:'captureDetech',
id:window.captureId==undefined?i:window.captureId+'-'+i
},'*'));
}
console.log(window.captureId,videos);
}
function videoSelect(id){
selectId = id;
if(video) {
video.removeEventListener('play',videoStatusUpdate);
video.removeEventListener('pause',videoStatusUpdate);
video.removeEventListener('ratechange',videoStatusUpdate);
}
if (videos[id]){
video = videos[id];
video.addEventListener('play',videoStatusUpdate);
video.addEventListener('pause',videoStatusUpdate);
video.addEventListener('ratechange',videoStatusUpdate);
video.scrollIntoView();
videoStatusUpdate();
}
else {
video = undefined;
postMsg('select');
}
}
function videoStatusUpdate(){
if (window==top) {
play.innerText = video.paused?"播放":"暂停";
speed.value = video.playbackRate;
}
else{
top.postMessage({
action:'captureReport',
about:'videoStatus',
paused:video.paused,
speed:video.playbackRate,
id:window.captureId
},'*');
}
}
//向包含目标视频的子窗体发送控制信息,全局变量selectId逐层往下层递归
function postMsg(type,data){
if (selectId==undefined||selectId=='') return;
const ids = selectId.split('-');
if (ids.length>1){
const target = ids.shift();
if (!childs[target]) return;
childs[target].postMessage({
action:'captureControl',
target:window.captureId==undefined?target:window.captureId+'-'+target,
todo:type,
id:ids.join('-'),
value:data
},'*');
}
}
//视频动作处理函数,接收视频控制数据并转发调用最终处理
function videoAction(todo, value, id) {
if (todo=='select'&&id) videoSelect(id);
else if (video) {
switch (todo){
case 'play':
videoPlay(value);
break;
case 'shot':
videoCapture(value);
break;
case 'step':
videoStep(value);
break;
case 'speed':
videoSpeedChange(value);
break;
default:
break;
}
}
else {
postMsg(todo, value);
}
}
//命令处理函数,分析命令,处理命令参数并调用视频控制
//action: 动作命令,与快捷键存储变量名相同
//ev: 调用命令时的按键动作,部分命令对shift/ctrl/alt敏感
function actionHandler(action, ev) {
//console.log(action, ev)
let value;
switch(action) {
case 'speedUp':
if(video) value = video.playbackRate+(video.playbackRate<1?0.1:0.25);
else if(speed) {
speed.step = speed.value<1?0.1:0.25;
value = +speed.value + (+speed.step);
}
videoAction('speed',value);
break;
case 'speedDown':
if(video) {
value = video.playbackRate - (video.playbackRate>1?0.25:0.1);
if(value<0.1) video.playbackRate = 0.1;
}
else if(speed) {
speed.step = speed.value>1?0.25:0.1;
value = +speed.value - speed.step;
}
videoAction('speed', value);
break;
case 'speedOri':
videoAction('speed', 1);
break;
case 'play':
videoAction('play', value);
break;
case 'nextFrame':
videoAction('step', 1/60);
break;
case 'preFrame':
videoAction('step', -1/60);
break;
case 'forward':
value = 1;
if(ev.ctrlKey) value *= 5;
if(ev.shiftKey) value *= 10;
if(ev.altKey) value *= 60;
videoAction('step', value);
break;
case 'backward':
value = -1;
if(ev.ctrlKey) value *= 5;
if(ev.shiftKey) value *= 10;
if(ev.altKey) value *= 60;
videoAction('step', value);
break;
case 'capture':
videoAction('shot', ev.shiftKey);
break;
case 'downCapture':
videoAction('shot', true);
break;
default:
break;
}
}
//全局快捷键监听函数
function keyListener(ev) {
//console.log(ev,hoverItem);
if (ev.target instanceof HTMLTextAreaElement||ev.target instanceof HTMLInputElement) return;
const key = ev.key.toUpperCase();
if (
config.active.key == key
&&config.active.shiftKey == ev.shiftKey
&&config.active.ctrlKey == ev.ctrlKey
&&config.active.altKey == ev.altKey
) {
top.postMessage({
action:'captureReport',
about:'panelActive',
id:window.captureId
},'*');
}
else if (!hoverItem) return;
let value;
if(value = Object.entries(config).find(([k,v])=>k!='active'&&v.key==key&&!v.shiftKey!=ev.shiftKey&&!v.altKey!=ev.altKey&&!v.ctrlKey!=ev.ctrlKey)){
//阻止覆盖网页原有快捷键
if (config.stopPropagation.checked) {
ev.stopPropagation();
ev.stopImmediatePropagation();
ev.preventDefault();
}
//将待操作视频暂时替换为鼠标悬停视频,并保存原视频备份
const videoBk = video;
if(hoverItem instanceof HTMLVideoElement) video = hoverItem;
try{
actionHandler(value[0], ev);
}catch(e){
console.error(e);
}
//操作完成将待操作视频还原为备份视频
video = videoBk;
}
}
document.addEventListener('keydown',keyListener,true);
//控制事件接收仅在iframe中执行
if (window!=top) {
window.addEventListener('message', function(ev) {
//console.info('frame recive:',ev.data);
if (ev.source!=window.parent || !ev.data.action) return;
else if(ev.data.action=='captureDetech'){
window.captureId = ev.data.id;
videoDetech();
}
else if(ev.data.action=='reload'){
getConfig();
[].forEach.call(childs,(w,i)=>w.postMessage({action:'reload'},'*'));
}else if(ev.data.action=='captureControl' && ev.data.target==window.captureId){
videoAction(ev.data.todo, ev.data.value, ev.data.id);
}
});
return;
}
//以下UI控制界面及事件在iframe中不执行
function toast(text,error){
if(error) console.error(error);
const toast = document.createElement('div');
toast.style = `position: fixed;top: 50%;left: 50%;z-index: 2147483647;padding: 10px;background: darkcyan;transform: translate(-50%);color: #fff;border-radius: 6px;box-shadow:#666 0px 0px 4px`
toast.innerText = text + (error||'');
document.body.appendChild(toast);
setTimeout(()=>toast.remove(),1000);
}
function dialogMove(ev){
if (ev.type=='mousedown'){
panel.tOffset = ev.pageY-panel.offsetTop;
panel.lOffset = ev.pageX-panel.offsetLeft;
document.body.addEventListener('mousemove',dialogMove);
document.body.addEventListener('mouseup',dialogMove);
}
else if (ev.type=='mouseup'){
document.body.removeEventListener('mousemove',dialogMove);
document.body.removeEventListener('mouseup',dialogMove);
}
else{
panel.style.top = ev.pageY-panel.tOffset+'px';
panel.style.left = ev.pageX-panel.lOffset+'px';
}
}
//简易创建页面元素的封装,方便嵌套,实际调用或许会发生相当奇怪问题……
function _c(config){
if(config instanceof Array) return config.map(_c);
const item = document.createElement(config.nodeType);
for(const i in config){
if(i=='nodeType') continue;
if(i=='childs' && config.childs instanceof Array) {
config.childs.forEach(child=>{
if(child instanceof HTMLElement) item.appendChild(child);
else item.appendChild(_c(child));
})
continue;
}
else if(i=='parent') {
config.parent.appendChild(item);
continue;
}
else if(i=='for') {
item.setAttribute('for',config[i]);
}
item[i] = config[i];
}
return item;
}
let panel, selector, speed, play, settingForm;
let loadSite, saveSite, clearSite;
//顶层窗体事件接收,处理来自子窗体汇报的数据状态
function topReciver(ev) {
//console.info('top recive:',ev.data);
if (ev.data.action!='captureReport') return;
if (ev.data.about=='videoNums') appendVideo(ev.data);
else if (ev.data.about=='panelActive') panelActive();
else if (ev.data.about=='videoStatus'&&selector.value.startsWith(ev.data.id)){
play.innerText = ev.data.paused?"播放":"暂停";;
speed.value = ev.data.speed;
}
}
window.addEventListener('message', topReciver);
/**往工具栏下拉面板中添加视频
* v: {id: 视频所处窗体ID, length: 视频数量, host: 视频所处窗体域名}
* 当为顶层窗体时仅含有length成员
**/
function appendVideo(v){
if (v&&v.length){
for (let i=0;i<v.length;i++){
_c({
nodeType:'option',
value:v.id!=undefined?v.id+'-'+i:i,
innerText:v.id!=undefined?v.id+'-'+i:i,
parent:selector
})
}
}
if (v.host) {
let op = Array.from(loadSite.options).find(option=>option.value==v.host);
if (op) {
op.innerHTML = `【${v.id}】${op.value}`;
}
op = Array.from(clearSite.options).find(option=>option.value==v.host);
if (op) {
op.innerHTML = `【${v.id}】${op.value}`;
}
op = Array.from(saveSite.options).find(option=>option.value==v.host);
if (op) {
op.innerHTML = `【${v.id}】${op.value}`;
}
else {
saveSite.add(_c({
nodeType: 'option',
value: v.host,
innerHTML: `【${v.id}】${v.host}`
}));
}
}
}
//初始化创建工具栏面板
function createPanel(){
panel = _c({
nodeType:'div',id:'HTML5VideoCapture',
style:'position:fixed;top:40px;left:30px;z-index:2147483647;padding:5px 10px;background:darkcyan;font-family:initial;border-radius:4px;font-size:12px;text-align:left',
onmouseenter:()=>(hoverItem = panel),
onmouseleave:()=>(hoverItem = undefined),
childs:[
{
nodeType:'style',
innerHTML:'div#HTML5VideoCapture option{color:#000;}'
+ 'div#HTML5VideoCapture>*{margin:0 10px 5px 0}'
+ 'div#HTML5VideoCapture>span,div#HTML5VideoCapture>span>*{white-space:nowrap;}'
+ 'div#HTML5VideoCapture *{font-family:initial;color:#fff;background:transparent;line-height:20px;height:20px;box-sizing:content-box;vertical-align:top;}'
+ 'div#HTML5VideoCapture .h5vc-block {border:1px solid #ffffff99;border-radius:2px;padding:1px 4px;min-width:unset;margin-top:0}'
+ 'div#HTML5VideoCapture .h5vc-block:hover {border-color: #fff;}'
+ 'div#HTML5VideoCapture .setting-switcher:before {content:"﹀"}'
+ 'div#HTML5VideoCapture .setting-switcher.setting-open:before {content:"︿"}'
+ 'div#HTML5VideoCapture .setting-switcher:not(.setting-open)+form {display:none}'
},
{
nodeType:'div',
innerText:'HTML5视频截图工具',
style:'cursor:move;user-select:none;font-size:14px;height:auto;min-width:60px;margin-right:0',
onmousedown:dialogMove,
ondblclick:()=>{
speed.step = 0.25;
speed.value = 1;
actionHandler('speedOri');
}
},
{
nodeType:'button',
className:'h5vc-block',
innerText:'检测',
title:'重新检测页面中的视频',
onclick:videoDetech
},
selector = _c({
nodeType:'select',
className:'h5vc-block',
title:'选择视频',
style:'width:unset;min-width:30px',
onchange: ()=>videoSelect(selector.value)
}),
speed = _c({
nodeType:'input',
className:'h5vc-block',
type:'number',step:0.25,min:0,
title:'视频速度,双击截图工具标题恢复原速',
style:'width:40px;',
oninput:()=> {
speed.step = speed.value<1?0.1:0.25;
videoAction('speed', +speed.value);
}
}),
play = _c({
nodeType:'button',
className:'h5vc-block',
innerText:'播放',
onclick: ()=> actionHandler('play')
}),
{
nodeType:'button',
className:'h5vc-block',
style:'margin-right:0',
innerText:'<<',
title:'后退1秒,按住shift 5倍,ctrl 10倍,alt 60倍,多按相乘',
onclick:e=> actionHandler('backward', e)
},
{
nodeType:'button',
className:'h5vc-block',
innerText:'<',
title:'上一帧(1/60秒)',
onclick:e=> actionHandler('preFrame', e)
},
{
nodeType:'button',
className:'h5vc-block',
style:'margin-right:0',
innerText:'截图',
title:'新建标签页打开视频截图',
onclick:e=> actionHandler('capture', e)
},
{
nodeType:'button',
className:'h5vc-block',
innerText:'↓',
title:'直接下载截图(如果可用)',
onclick:()=> actionHandler('downCapture')
},
{
nodeType:'button',
className:'h5vc-block',
style:'margin-right:0',
innerText:'>',
title:'下一帧(1/60秒)',
onclick:e=> actionHandler('nextFrame')
},
{
nodeType:'button',
className:'h5vc-block',
innerText:'>>',
title:'前进1秒,按住shift 5倍,ctrl 10倍,alt 60倍,多按相乘',
onclick:e=> actionHandler('forward', e)
},
{
nodeType:'button',
className:'h5vc-block',
innerText:'关闭',
title:'关闭截图工具栏',
style:'margin-right:0',
onclick:panelActive
},
//以下为快捷键设置和相关控制逻辑
{
nodeType:'div',className:'setting-switcher',
style:'text-align: center;cursor: pointer;user-select: none;margin-bottom:0',
onclick:(ev)=>ev.target.classList.toggle('setting-open')
},
settingForm = _c({
nodeType:'form',
style:'user-select: none;height: auto;overflow: hidden;margin-right: 0; font-size:12px',
childs:[
...Object.entries(configList).map(([k,v])=>([
{
nodeType:'input',className:'h5vc-block',name:k,type:v.type,
title:v.title,id:'h5vc-setting-'+k,style:'display: inline-block;-webkit-appearance: checkbox;',
disabled:v.disabled,
onclick:function(ev){this.select()&&ev.preventDefault()},
onkeydown:function(ev){
const key = ev.key;
if (key!='Control' && key!='Shift' && key!='Alt') {
this.value = (ev.ctrlKey&&'Ctrl+'||'')+(ev.shiftKey&&'Shift+'||'')+(ev.altKey&&'Alt+'||'')+ev.key.toUpperCase();
}
if(key!='Backspace' && key != 'Delete') ev.preventDefault();
else this.value = '';
},
},
{nodeType:'label',innerHTML:v.content,title:v.title,for:'h5vc-setting-'+k,style:'display:inline-block'},
{nodeType:'br'}
])).flat(),
{
nodeType:'button',
className:'h5vc-block',
innerHTML:'保存默认',
title:'保存通用默认设置,默认设置将在没有设置专用设置的网站生效',
onclick:(ev)=> confirm('是否确认保存默认设置') &&
checkSettingFrom()
.then(config=>saveConfig(config,'default')&toast('保存成功'))
.catch(e=>toast('保存错误',e))&ev.preventDefault()
},
{
nodeType:'button',
className:'h5vc-block',
innerHTML:'重设默认',
title:'重设默认设置为原始值,此操作不会改变其它专用网站设置',
onclick:(ev)=> confirm('是否确认清除默认设置') &&
saveConfig(undefined,'default')
.then(()=>loadSettingForm(configList)&toast('重设成功'))
.catch(e=>toast('重设错误',e))&ev.preventDefault()
},
loadSite = _c({
nodeType:'select',className:'h5vc-block',
style:'width:55px;',
innerHTML:'<option value="">查看...</option>',
title:'显示保存的设置内容,此网站中的内嵌网页域名会有与视频编号对应的标识',
onchange:(ev)=>getConfig(ev.target.value).then(loadSettingForm)
}),
saveSite = _c({
nodeType:'select', className:'h5vc-block',
style:'width:70px;',
innerHTML:'<option value="">保存为...</option><option value="'+location.host+'">'+location.host+'</option>',
title:'保存网站专用设置,专用设置在该网站内将覆盖默认设置\n'
+'仅显示在本网页上加载的域名,带有编号的是内嵌网页的域名,可根据视频编号识别',
onchange:(ev)=> {
const value = ev.target.value;
ev.target.value = '';
if (value=='' || !confirm('是否确认保存'+value+'设置')) {
return;
}
checkSettingFrom().then(config=>{
saveConfig(config, value);
loadSettingForm(config);
toast('保存成功');
if (clearSite.querySelector(`[value="${value}"]`)) return;
loadSite.add(_c({nodeType:'option',value:value,innerHTML:value}));
clearSite.add(_c({nodeType:'option',value:value,innerHTML:value}))
}).catch(e=>toast('保存错误',e))
}
}),
clearSite = _c({
nodeType:'select', className:'h5vc-block',
style:'width:55px;',
innerHTML:'<option value="">清除...</option>',
title:'清除网站专用设置,清除之后默认设置内容将在该网站生效',
onchange:(ev)=> {
const value = ev.target.value;
ev.target.value = '';
if (!confirm('是否确认清除'+value+'设置')) return;
saveConfig(undefined, value)
.then(()=>loadSite.querySelector(`[value="${value}"]`))
.then(find=>find&&loadSite.removeChild(find))
.then(()=>clearSite.querySelector(`[value="${value}"]`))
.then(find=>find&&clearSite.removeChild(find))
.then(()=>loadSettingForm(config)&toast('清除成功'))
.catch(e=>toast('清除错误',e))
}
}),
]
})
]
});
//初始化设置面板的配置
loadSite.add(_c({
nodeType: 'option',
innerHTML: '默认',
}));
for (const item in allConfigs) {
if (item=='default') continue;
loadSite.add(_c({
nodeType: 'option',
value: item,
innerHTML: item==location.host?'【△】'+item:item,
}));
clearSite.add(_c({
nodeType: 'option',
value: item,
innerHTML: item==location.host?'【△】'+item:item,
}));
}
loadSettingForm(config);
}
//检查并返回设置窗口中的设置,实际方法是同步的,设置成异步是为了方便.then
//throw: 检查设置不符合要求时抛出错误string,目前仅检测全局启动快捷键
async function checkSettingFrom() {
let value = cloneConfig(config);
for(let item of settingForm) {
if(value[item.name]) {
if(item.type=='checkbox') {
value[item.name].checked = item.checked;
}
else if(item.name){
let keys = item.value.split('+');
if(keys.length<2&&item.name=='active') throw '全局快捷键至少应当同时按下ctrl/shift/alt之一';
value[item.name].key = keys[keys.length-1];
value[item.name].ctrlKey = keys.indexOf('Ctrl')!=-1;
value[item.name].shiftKey = keys.indexOf('Shift')!=-1;
value[item.name].altKey = keys.indexOf('Alt')!=-1;
}
}
}
return value;
}
//给定一个设置,显示在设置面板中,读取设置时使用
function loadSettingForm(value) {
for(let item of settingForm) {
if(value[item.name]) {
if(item.type=='checkbox') {
item.checked = value[item.name].checked;
}
else {
let v = value[item.name];
item.value = (v.ctrlKey&&'Ctrl+'||'')+(v.shiftKey&&'Shift+'||'')+(v.altKey&&'Alt+'||'')+v.key.toUpperCase()
}
}
else {
if(item.type=='checkbox') {
item.checked = configList[item.name].checked;
}
else if (item.name){
let v = configList[item.name];
item.value = (v.ctrlKey&&'Ctrl+'||'')+(v.shiftKey&&'Shift+'||'')+(v.altKey&&'Alt+'||'')+v.key.toUpperCase()
}
}
}
loadSite.value = '';
}
function panelActive(){
if(document.body.contains(panel)) document.body.removeChild(panel);
else {
if(!panel) {
createPanel();
}
document.body.appendChild(panel);
if(!selector.length) videoDetech();
}
}
if ('function'==typeof(GM_registerMenuCommand) && window==top){
GM_registerMenuCommand('启用HTML5视频截图器',panelActive);
}
})();