// ==UserScript== // @name embyToLocalPlayer // @name:zh-CN embyToLocalPlayer // @name:en embyToLocalPlayer // @namespace https://github.com/kjtsune/embyToLocalPlayer // @version 1.1.13.1 // @description 需要 Python。Emby/Jellyfin 调用外部本地播放器,并回传播放记录。适配 Plex。 // @description:zh-CN 需要 Python。Emby/Jellyfin 调用外部本地播放器,并回传播放记录。适配 Plex。 // @description:en Require Python. Play in an external player. Update watch history to Emby/Jellyfin server. Support Plex. // @author Kjtsune // @match *://*/web/index.html* // @match *://*/*/web/index.html* // @icon https://www.google.com/s2/favicons?sz=64&domain=emby.media // @grant unsafeWindow // @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-1-2: 1. 适配 Emby 跳过简介/片头。(限 mpv,且视频本身无章节,通过添加章节实现。) * 版本间累积更新: * mpv script-opts 被覆盖。@verygoodlee * mpv 切回第一集时网络外挂字幕丢失。@verygoodlee 2023-12-11: 1. 美化 mpv pot 标题。 2. 改善版本筛选逻辑。 2023-12-07: 1. mpv 播放列表避免与官方 autoload.lua 冲突。 2. pot 修复读盘模式播放列表漏播第零季选集。(详见 FAQ 隐藏功能) * 版本间累积更新: * 追更 TG 通知。(详见 FAQ 隐藏功能) * 适配 Emby beta 版本 api 变动。 * bgm.tv: 适配上游搜索结果变动。 * bgm.tv: 增加旧版搜索 api 备选。 * trakt: 适配上游新剧缺失单集 imdb/tvdb。 * .bat 强制使用 utf-8 编码。 * 默认启用日志文件。 * pot 播放列表 未加载完成时可退出。 * 网络流:外挂 sup 支持(限 Emby v4.8.0.55 | mpv)。升级 Emby 记得备份,无法回退。 */ (function () { 'use strict'; let fistTime = true; let config = { logLevel: 2, disableOpenFolder: false, // false 改为 true 则禁用打开文件夹的按钮。 }; 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(); let fileDiv = `