Greasy Fork

来自缓存

Greasy Fork is available in English.

[kesai]记忆播放

很多在线播放器刷新页面后又从头开始播放,这个用来实现记忆播放功能

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         [kesai]记忆播放
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  很多在线播放器刷新页面后又从头开始播放,这个用来实现记忆播放功能
// @author       kesai
// @match        https://bde4.com/play/*
// @match        https://v.youku.com/*
// @match        https://movie.douban.com/trailer*
// @match        https://www.iqiyi.com/*
// @match        http://www.iqiyi.com/*
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    class VideoInfo {
        constructor(url, curTime, lastTime) {
            this.url = url; //播放视频所在url
            this.curTime = curTime; //视频上次播放到的位置            
        }
    }


    const isDebug = true;
    window.onload = function() {
        var video = document.getElementsByTagName("video")[0];
        debugInfo(video);
        var btn = $("<button type='button' style='position:fixed;left:10px;bottom:50px;height:30px;width:100px;border:none;color:#fff;background:#333333;cursor:pointer;'  title='我太菜了,无法自动记忆播放就点这个吧'>记忆播放</>")
        $("body").append(btn);

        btn.click(function() {
            playByMemory();
        });
    }



    function playByMemory() {
        let videoInfoArray = GM_getValue('videoInfoArray');

        debugInfo("videoInfoArray:")
        debugInfo(videoInfoArray);

        let videoInfo = videoInfoArray.find((videoInfo) => (videoInfo.url == window.location.href));
        if (videoInfo != null || videoInfo != undefined) {
            setCurrentTime(videoInfo.curTime);
        }
    }

    function setCurrentTime(t) {

        debugInfo('setCurrentTime:' + t)

        var video = document.getElementsByTagName("video")[0];
        video.currentTime = (t === null || t === undefined) ? 0 : t;
    }

    function getCurrentTime() {
        var video = document.getElementsByTagName("video")[0];
        return video.currentTime;
    }

    function saveCurrentTime() {
        debugger;
        var video = document.getElementsByTagName("video")[0];

        var videoInfoArray = GM_getValue('videoInfoArray');
        if (videoInfoArray === null || videoInfoArray === undefined || videoInfoArray.length <= 0)
            videoInfoArray = new Array();

        let videoInfo = videoInfoArray.find((videoInfo) => (videoInfo.url == window.location.href));
        if (videoInfo === null || videoInfo === undefined) {
            videoInfo = new VideoInfo(window.location.href, video.currentTime);
            videoInfoArray.push(videoInfo);
        } else {
            videoInfo.curTime = video.currentTime;
        }
        //if (videoInfoArray.length > 50) videoInfoArray.shift(); //最多不超过50条记录
        while (videoInfoArray.length > 25) videoInfoArray.shift(); //最多不超过50条记录
        GM_setValue('videoInfoArray', videoInfoArray);
        debugInfo('saveCurrentTime:' + video.currentTime);
    }


    window.onbeforeunload = function() {
        saveCurrentTime();
    }

    window.onunload = function() {
        saveCurrentTime();
    }

    function debugInfo(info) {
        if (isDebug) console.log(info)
    }

})();