Code or script to achieve double-speed video playback on various video sites

To sum up the method

One: Android and iOS

Direct download (ES file browser) software, bind Baidu cloud account

Two: web page

There are two methods, using code or script, the script is cumbersome, but it can expand many other functions

1, F12 development and debugging tools

Play the video page in the browser, press F12 to open the development and debugging tool, and enter the command in the second item (console) console:

videojs.getPlayers("video-player").html5player.tech_.setPlaybackRate(2)

The 2 in the final brackets represents the playback speed, which can be changed

2. Use tampermonkey to extend the application loading script to use

Open https://greasyfork.org/zh-CN

(1) Install the corresponding script manager according to the browser

Take micros Edge as an example

 

(2) Load script

After installing tempermonkey, find the required scripts at https://greasyfork.org/zh-CN/scripts . After installation, you can go to the corresponding website and use them. Each script has corresponding instructions.

There are many kinds of scripts, so you don't have to be disgusted by Baidu and others. . .

Guess you like

Origin blog.csdn.net/weixin_42748604/article/details/113414090