妇幼营养与健康在线培训及考核倍速播放

妇幼营养与健康在线培训及考核里面培训视频的倍速播放

// ==UserScript==
// @name         妇幼营养与健康在线培训及考核倍速播放
// @namespace    http://tampermonkey.net/
// @version      2024-11-26
// @description  妇幼营养与健康在线培训及考核里面培训视频的倍速播放
// @author       You
// @match        https://mchtracourse.chinawch.org.cn/videoPlay/play?*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chinawch.org.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(document).ready(() => {
        setTimeout(() => {

            const $ = window.$;

            const __PLAYER__ = document.querySelector(`#${$('video')[0].id}`);

            // 设置初始播放速度为 16
            __PLAYER__.playbackRate = 16;

            const customInterval = setInterval("courseyunRecord()", 3000);

            // 监听视频播放进度
            __PLAYER__.addEventListener('timeupdate', function () {

                // 防止视频暂停
                __PLAYER__.play();

                const currentTime = __PLAYER__.currentTime; // 当前播放时间
                const duration = __PLAYER__.duration; // 视频总时长

                // 如果剩余时间小于 10 秒,恢复正常播放速度
                if (duration - currentTime <= 15) {
                    __PLAYER__.playbackRate = 1; // 恢复正常速度

                    // 取消轮询
                    clearInterval(customInterval);

                    courseyunRecord();
                }
            });
        }, 3000);
    });
})();


QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址