// ==UserScript== // @name embyToLocalPlayer // @name:zh-CN embyToLocalPlayer // @name:en embyToLocalPlayer // @namespace https://github.com/kjtsune/embyToLocalPlayer // @version 2024.05.20 // @description Emby/Jellyfin 调用外部本地播放器,并回传播放记录。适配 Plex。 // @description:zh-CN Emby/Jellyfin 调用外部本地播放器,并回传播放记录。适配 Plex。 // @description:en Play in an external player. Update watch history to Emby/Jellyfin server. Support Plex. // @author Kjtsune // @match *://*/web/index.html* // @match *://*/*/web/index.html* // @match *://*/web/ // @match *://*/*/web/ // @match https://app.plex.tv/* // @icon https://www.google.com/s2/favicons?sz=64&domain=emby.media // @grant unsafeWindow // @grant GM_info // @grant GM_xmlhttpRequest // @grant GM_registerMenuCommand // @grant GM_unregisterMenuCommand // @run-at document-start // @connect 127.0.0.1 // @license MIT // @downloadURL none // ==/UserScript== 'use strict'; /* 2024.03.27: 1. 预重定向下一集视频流 url (配置文件有新增条目 [dev]) * 版本间累积更新: * 可播放前检查视频流重定向。 * 新版 mpv 播放列表报错。@verygoodlee * 修了些回传失败的情况。 * 适配 Emby 全部播放/随机播放/播放列表 (油猴也需要更新,限电影和音乐视频类型) 2024-1-2: 1. 适配 Emby 跳过简介/片头。(限 mpv,且视频本身无章节,通过添加章节实现。) * 版本间累积更新: * mpv script-opts 被覆盖。@verygoodlee * mpv 切回第一集时网络外挂字幕丢失。@verygoodlee 2023-12-11: 1. 美化 mpv pot 标题。 2. 改善版本筛选逻辑。 */ (function () { 'use strict'; let _crackFullPath = Boolean(localStorage.getItem('crackFullPath')); let _disableOpenFolder = Boolean(localStorage.getItem('disableOpenFolder')); let fistTime = true; let config = { logLevel: 2, disableOpenFolder: _disableOpenFolder, // _disableOpenFolder 改为 true 则禁用打开文件夹的按钮。 crackFullPath: _crackFullPath, }; let logger = { error: function (...args) { if (config.logLevel >= 1) { console.log('%cerror', 'color: yellow; font-style: italic; background-color: blue;', ...args); } }, info: function (...args) { if (config.logLevel >= 2) { console.log('%cinfo', 'color: yellow; font-style: italic; background-color: blue;', ...args); } }, debug: function (...args) { if (config.logLevel >= 3) { console.log('%cdebug', 'color: yellow; font-style: italic; background-color: blue;', ...args); } }, } async function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } function removeErrorWindows() { let okButtonList = document.querySelectorAll('button[data-id="ok"]'); let state = false; for (let index = 0; index < okButtonList.length; index++) { const element = okButtonList[index]; if (element.textContent.search(/(了解|好的|知道|Got It)/) != -1) { element.click(); state = true; } } let jellyfinSpinner = document.querySelector('div.docspinner'); if (jellyfinSpinner) { jellyfinSpinner.remove(); state = true; }; return state; } function switchLocalStorage(key, defaultValue = 'true', trueValue = 'true', falseValue = 'false') { if (key in localStorage) { let value = (localStorage.getItem(key) === trueValue) ? falseValue : trueValue; localStorage.setItem(key, value); } else { localStorage.setItem(key, defaultValue) } logger.info('switchLocalStorage ', key, ' to ', localStorage.getItem(key)); } function setModeSwitchMenu(storageKey, menuStart = '', menuEnd = '', defaultValue = '关闭', trueValue = '开启', falseValue = '关闭') { let switchNameMap = { 'true': trueValue, 'false': falseValue, null: defaultValue }; let menuId = GM_registerMenuCommand(menuStart + switchNameMap[localStorage.getItem(storageKey)] + menuEnd, clickMenu); function clickMenu() { GM_unregisterMenuCommand(menuId); switchLocalStorage(storageKey) menuId = GM_registerMenuCommand(menuStart + switchNameMap[localStorage.getItem(storageKey)] + menuEnd, clickMenu); } } function sendDataToLocalServer(data, path) { let url = `http://127.0.0.1:58000/${path}/`; GM_xmlhttpRequest({ method: 'POST', url: url, data: JSON.stringify(data), headers: { 'Content-Type': 'application/json' }, }); } async function removeErrorWindowsMultiTimes() { for (const times of Array(15).keys()) { await sleep(200); if (removeErrorWindows()) { logger.info(`remove error window used time: ${(times + 1) * 0.2}`); break; }; } } async function embyToLocalPlayer(playbackUrl, request, playbackData, extraData) { let data = { ApiClient: ApiClient, playbackData: playbackData, playbackUrl: playbackUrl, request: request, mountDiskEnable: localStorage.getItem('mountDiskEnable'), extraData: extraData, fistTime: fistTime, }; sendDataToLocalServer(data, 'embyToLocalPlayer'); removeErrorWindowsMultiTimes(); fistTime = false; } function isHidden(el) { return (el.offsetParent === null); } function getVisibleElement(elList) { if (!elList) return; if (NodeList.prototype.isPrototypeOf(elList)) { for (let i = 0; i < elList.length; i++) { if (!isHidden(elList[i])) { return elList[i]; } } } else { return elList; } } async function addOpenFolderElement() { if (config.disableOpenFolder) return; let mediaSources = null; for (const _ of Array(5).keys()) { await sleep(500); mediaSources = getVisibleElement(document.querySelectorAll('div.mediaSources')); if (mediaSources) break; } if (!mediaSources) return; let pathDiv = mediaSources.querySelector('div[class^="sectionTitle sectionTitle-cards"] > div'); if (!pathDiv || pathDiv.className == 'mediaInfoItems' || pathDiv.id == 'addFileNameElement') return; let full_path = pathDiv.textContent; if (!full_path.match(/[/:]/)) return; if (full_path.match(/\d{1,3}\.?\d{0,2} (MB|GB)/)) return; let openButtonHtml = `linkOpen Folder` pathDiv.insertAdjacentHTML('beforebegin', openButtonHtml); let btn = mediaSources.querySelector('a#openFolderButton'); btn.addEventListener("click", () => { logger.info(full_path); sendDataToLocalServer({ full_path: full_path }, 'openFolder'); }); } async function addFileNameElement(url, request) { let mediaSources = null; for (const _ of Array(5).keys()) { await sleep(500); mediaSources = getVisibleElement(document.querySelectorAll('div.mediaSources')); if (mediaSources) break; } if (!mediaSources) return; let pathDivs = mediaSources.querySelectorAll('div[class^="sectionTitle sectionTitle-cards"] > div'); if (!pathDivs) return; pathDivs = Array.from(pathDivs); let _pathDiv = pathDivs[0]; if (!/\d{4}\/\d+\/\d+/.test(_pathDiv.textContent)) return; if (_pathDiv.id == 'addFileNameElement') return; let response = await originFetch(url, request); let data = await response.json(); data = data.MediaSources; for (let index = 0; index < pathDivs.length; index++) { const pathDiv = pathDivs[index]; let filePath = data[index].Path; let fileName = filePath.split('\\').pop().split('/').pop(); fileName = (config.crackFullPath) ? filePath : fileName; let fileDiv = `