hls.user.js

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

Stan na 28-05-2017. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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']
    });
})();