mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
245 lines
8.3 KiB
TypeScript
245 lines
8.3 KiB
TypeScript
import style from './style.css?inline';
|
|
|
|
import { t } from '@/i18n';
|
|
import { createPlugin } from '@/utils';
|
|
import { menu } from './menu';
|
|
import { AmbientModePluginConfig } from './types';
|
|
|
|
const defaultConfig: AmbientModePluginConfig = {
|
|
enabled: false,
|
|
quality: 50,
|
|
buffer: 30,
|
|
interpolationTime: 1500,
|
|
blur: 100,
|
|
size: 100,
|
|
opacity: 1,
|
|
fullscreen: false,
|
|
};
|
|
|
|
export default createPlugin({
|
|
name: () => t('plugins.ambient-mode.name'),
|
|
description: () => t('plugins.ambient-mode.description'),
|
|
restartNeeded: false,
|
|
config: defaultConfig,
|
|
stylesheets: [style],
|
|
menu: menu,
|
|
|
|
renderer: {
|
|
interpolationTime: defaultConfig.interpolationTime,
|
|
buffer: defaultConfig.buffer,
|
|
qualityRatio: defaultConfig.quality,
|
|
size: defaultConfig.size,
|
|
blur: defaultConfig.blur,
|
|
opacity: defaultConfig.opacity,
|
|
isFullscreen: defaultConfig.fullscreen,
|
|
|
|
unregister: null as (() => void) | null,
|
|
update: null as (() => void) | null,
|
|
interval: null as NodeJS.Timeout | null,
|
|
lastMediaType: null as "video" | "image" | null,
|
|
lastVideoSource: null as string | null,
|
|
lastImageSource: null as string | null,
|
|
|
|
async start({ getConfig }) {
|
|
const config = await getConfig();
|
|
this.interpolationTime = config.interpolationTime;
|
|
this.buffer = config.buffer;
|
|
this.qualityRatio = config.quality;
|
|
this.size = config.size;
|
|
this.blur = config.blur;
|
|
this.opacity = config.opacity;
|
|
this.isFullscreen = config.fullscreen;
|
|
|
|
const songImage = document.querySelector<HTMLImageElement>('#song-image');
|
|
const songVideo = document.querySelector<HTMLDivElement>('#song-video');
|
|
const image = songImage?.querySelector<HTMLImageElement>('yt-img-shadow > img');
|
|
const video = songVideo?.querySelector<HTMLVideoElement>('.html5-video-container > video');
|
|
const videoWrapper = document.querySelector('#song-video > .player-wrapper');
|
|
|
|
const injectBlurImage = () => {
|
|
if (!songImage || !image) return null;
|
|
|
|
this.lastImageSource = image.src;
|
|
|
|
const blurImage = document.createElement('img');
|
|
blurImage.classList.add('html5-blur-image');
|
|
blurImage.src = image.src;
|
|
|
|
this.update = () => {
|
|
if (this.isFullscreen) blurImage.classList.add('fullscreen');
|
|
else blurImage.classList.remove('fullscreen');
|
|
|
|
blurImage.style.setProperty('--width', `${this.size}%`);
|
|
blurImage.style.setProperty('--height', `${this.size}%`);
|
|
blurImage.style.setProperty('--blur', `${this.blur}px`);
|
|
blurImage.style.setProperty('--opacity', `${this.opacity}`);
|
|
};
|
|
this.update();
|
|
|
|
/* injecting */
|
|
songImage.prepend(blurImage);
|
|
|
|
/* cleanup */
|
|
return () => {
|
|
if (blurImage.isConnected) blurImage.remove();
|
|
};
|
|
};
|
|
|
|
const injectBlurVideo = () => {
|
|
if (!songVideo || !video || !videoWrapper) return null;
|
|
|
|
this.lastVideoSource = video.src;
|
|
|
|
const blurCanvas = document.createElement('canvas');
|
|
blurCanvas.classList.add('html5-blur-canvas');
|
|
|
|
const context = blurCanvas.getContext('2d', { willReadFrequently: true });
|
|
|
|
/* effect */
|
|
let lastEffectWorkId: number | null = null;
|
|
let lastImageData: ImageData | null = null;
|
|
|
|
const onSync = () => {
|
|
if (typeof lastEffectWorkId === 'number')
|
|
cancelAnimationFrame(lastEffectWorkId);
|
|
|
|
lastEffectWorkId = requestAnimationFrame(() => {
|
|
if (!context) return;
|
|
|
|
const width = this.qualityRatio;
|
|
let height = Math.max(Math.floor((blurCanvas.height / blurCanvas.width) * width), 1,);
|
|
if (!Number.isFinite(height)) height = width;
|
|
if (!height) return;
|
|
|
|
context.globalAlpha = 1;
|
|
if (lastImageData) {
|
|
const frameOffset = (1 / this.buffer) * (1000 / this.interpolationTime);
|
|
context.globalAlpha = 1 - (frameOffset * 2); // because of alpha value must be < 1
|
|
context.putImageData(lastImageData, 0, 0);
|
|
context.globalAlpha = frameOffset;
|
|
}
|
|
context.drawImage(video, 0, 0, width, height);
|
|
|
|
lastImageData = context.getImageData(0, 0, width, height); // current image data
|
|
|
|
lastEffectWorkId = null;
|
|
});
|
|
};
|
|
|
|
this.update = () => {
|
|
const rect = video.getBoundingClientRect();
|
|
|
|
const newWidth = Math.floor(video.width || rect.width);
|
|
const newHeight = Math.floor(video.height || rect.height);
|
|
|
|
if (newWidth === 0 || newHeight === 0) return;
|
|
|
|
blurCanvas.width = this.qualityRatio;
|
|
blurCanvas.height = Math.floor((newHeight / newWidth) * this.qualityRatio);
|
|
|
|
if (this.isFullscreen) blurCanvas.classList.add('fullscreen');
|
|
else blurCanvas.classList.remove('fullscreen');
|
|
|
|
blurCanvas.style.setProperty('--width', `${this.size}%`);
|
|
blurCanvas.style.setProperty('--height', `${this.size}%`);
|
|
blurCanvas.style.setProperty('--blur', `${this.blur}px`);
|
|
blurCanvas.style.setProperty('--opacity', `${this.opacity}`);
|
|
};
|
|
this.update();
|
|
|
|
/* hooking */
|
|
let canvasInterval: NodeJS.Timeout | null = null;
|
|
canvasInterval = setInterval(onSync, Math.max(1, Math.ceil(1000 / this.buffer)));
|
|
|
|
const onPause = () => {
|
|
if (canvasInterval) clearInterval(canvasInterval);
|
|
canvasInterval = null;
|
|
};
|
|
const onPlay = () => {
|
|
if (canvasInterval) clearInterval(canvasInterval);
|
|
canvasInterval = setInterval(onSync, Math.max(1, Math.ceil(1000 / this.buffer)));
|
|
};
|
|
songVideo.addEventListener('pause', onPause);
|
|
songVideo.addEventListener('play', onPlay);
|
|
|
|
/* injecting */
|
|
videoWrapper.prepend(blurCanvas);
|
|
|
|
/* cleanup */
|
|
return () => {
|
|
if (canvasInterval) clearInterval(canvasInterval);
|
|
|
|
songVideo.removeEventListener('pause', onPause);
|
|
songVideo.removeEventListener('play', onPlay);
|
|
|
|
if (blurCanvas.isConnected) blurCanvas.remove();
|
|
};
|
|
};
|
|
|
|
const isVideoMode = () => {
|
|
const songVideo = document.querySelector<HTMLDivElement>('#song-video');
|
|
if (!songVideo) {
|
|
this.lastMediaType = "image";
|
|
return false;
|
|
}
|
|
|
|
const isVideo = getComputedStyle(songVideo).display !== 'none';
|
|
this.lastMediaType = isVideo ? "video" : "image";
|
|
return isVideo;
|
|
};
|
|
|
|
const playerPage = document.querySelector<HTMLElement>('#player-page');
|
|
const ytmusicAppLayout = document.querySelector<HTMLElement>('#layout');
|
|
|
|
const injectBlurElement = (force?: boolean): boolean | void => {
|
|
const isPageOpen = ytmusicAppLayout?.hasAttribute('player-page-open');
|
|
if (isPageOpen) {
|
|
const isVideo = isVideoMode();
|
|
if (!force) {
|
|
if (this.lastMediaType === "video" && this.lastVideoSource === video?.src) return false;
|
|
if (this.lastMediaType === "image" && this.lastImageSource === image?.src) return false;
|
|
}
|
|
this.unregister?.();
|
|
this.unregister = (isVideo ? injectBlurVideo() : injectBlurImage()) ?? null;
|
|
} else {
|
|
this.unregister?.();
|
|
this.unregister = null;
|
|
}
|
|
}
|
|
|
|
/* needed for switching between different views (e.g. miniplayer) */
|
|
const observer = new MutationObserver((mutationsList) => {
|
|
for (const mutation of mutationsList) {
|
|
if (mutation.type === 'attributes') {
|
|
injectBlurElement(true);
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
|
|
if (playerPage) {
|
|
observer.observe(playerPage, { attributes: true });
|
|
|
|
/* fallback ticker for when the observer isn't triggered */
|
|
this.interval = setInterval(injectBlurElement, 1000);
|
|
}
|
|
},
|
|
onConfigChange(newConfig) {
|
|
this.interpolationTime = newConfig.interpolationTime;
|
|
this.buffer = newConfig.buffer;
|
|
this.qualityRatio = newConfig.quality;
|
|
this.size = newConfig.size;
|
|
this.blur = newConfig.blur;
|
|
this.opacity = newConfig.opacity;
|
|
this.isFullscreen = newConfig.fullscreen;
|
|
|
|
this.update?.();
|
|
},
|
|
stop() {
|
|
this.update = null;
|
|
this.unregister?.();
|
|
if (this.interval) clearInterval(this.interval);
|
|
},
|
|
},
|
|
});
|