赞
踩
F12
进入开发者模式点击剪头之后,鼠标指向视频在的位置即可;
2. 看一下视频播放的位置
3. 在Console
中运行命令就可以实现倍速
输入命令之后需要用回车来运行:
4. 代码:
document.querySelector('video').defaultPlaybackRate = 1.0;//默认一倍速播放
document.querySelector('video').play();
/* now play three times as fast just for the heck of it */
document.querySelector('video').playbackRate = 10.0; //这个`10.0`是想要的倍速
参考:https://blog.csdn.net/weixin_46435234/article/details/114437203
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。