hls.user.js

m3u8 playback using HTML5 video and MediaSource Extensions (CORS Required!)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         hls.user.js
// @name:zh-CN   hls.user.js
// @namespace    hls.js
// @version      0.2.4
// @description  m3u8 playback using HTML5 video and MediaSource Extensions (CORS Required!)
// @description:zh-cn 基于HTML5和MediaSource Extensions的hls/m3u8播放
// @include      https://*
// @include      http://*
// @exclude      http://218.94.1.182:8080/*
// @exclude      http://www.itslaw.com/*
// @exclude      https://www.itslaw.com/*
// @exclude      http://www.epox.cn/*
// @exclude      https://cn.nytimes.com/*
// @grant        none
// @license      MIT
// @require      https://cdn.jsdelivr.net/hls.js/latest/hls.min.js
// ==/UserScript==
'use strict';

function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }

var makehls = function makehls(element) {
    'use strict';

    if (!(element && element.tagName.toLowerCase() === 'video')) return false;
    var src = element.currentSrc || element.src;
    if (!(src && src.match('m3u8'))) return false;
    //if(!(element.error&&element.error.code==4)) return;
    var hls = new Hls();
    hls.attachMedia(element);
    hls.on(Hls.Events.MEDIA_ATTACHED, function (e) {
        return hls.loadSource(src);
    });
    return hls;
};
(function () {
    'use strict';
    //console.log([...document.getElementsByTagName('video')].map(makehls));

    [].concat(_toConsumableArray(document.getElementsByTagName('video'))).map(makehls);
    var observerFn = function observerFn(mutationRecord) {
        if (mutationRecord.type === 'childList' && mutationRecord.target && typeof getElementsByTagName === 'function') return [].concat(_toConsumableArray(mutationRecord.target.getElementsByTagName('video'))).map(makehls);
        return makehls(mutationRecord.target);
    };
    var mutationObserver = new MutationObserver(function (mutations) {
        return mutations.map(observerFn);
    });
    mutationObserver.observe(document, {
        childList: true,
        attributes: true,
        subtree: true,
        attributeFilter: ['src']
    });
})();