Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | import type {
DataAddOptions,
LoadedData,
RenderPathAttachment,
RenderPathDefinition,
RenderPath,
} from '../ViewportArchitectureTypes';
import type { Point2, Point3 } from '../../../types';
import ViewportType from '../../../enums/ViewportType';
import type {
VideoViewState,
VideoDataPresentation,
VideoElementRenderContext,
VideoElementRendering,
VideoProperties,
VideoStreamPayload,
} from './VideoViewportTypes';
import { normalizeVideoPlaybackInfo } from '../../../utilities/VideoUtilities';
import { resolveVideoCanvasMapping } from './videoViewportCamera';
/** @internal */
export class HtmlVideoRenderPath
implements RenderPath<VideoElementRenderContext>
{
async addData(
ctx: VideoElementRenderContext,
data: LoadedData,
options: DataAddOptions
): Promise<RenderPathAttachment<VideoDataPresentation>> {
const videoData = data as unknown as LoadedData<VideoStreamPayload>;
const payload: VideoStreamPayload = videoData;
const element = document.createElement('video');
element.src = payload.renderedUrl;
element.preload = 'auto';
element.crossOrigin = 'anonymous';
element.playsInline = true;
element.style.position = 'absolute';
element.style.left = '0';
element.style.top = '0';
element.style.transformOrigin = 'top left';
element.style.objectFit = 'fill';
await new Promise<void>((resolve) => {
const onLoadedMetadata = () => {
element.removeEventListener('loadedmetadata', onLoadedMetadata);
resolve();
};
element.addEventListener('loadedmetadata', onLoadedMetadata);
ctx.element.appendChild(element);
});
const playbackInfo = normalizeVideoPlaybackInfo({
durationSeconds: element.duration,
cineRate: payload.fps,
numberOfFrames: payload.numberOfFrames,
});
const normalizedPayload: VideoStreamPayload = {
...payload,
durationSeconds: element.duration,
fps: playbackInfo.fps,
numberOfFrames: playbackInfo.numberOfFrames,
frameRange: playbackInfo.frameRange,
};
Object.assign(videoData, normalizedPayload);
const rendering: VideoElementRendering = {
renderMode: 'video2d',
element,
};
return {
rendering,
updateDataPresentation: (props) => {
this.updateDataPresentation(rendering, props);
},
applyViewState: (camera) => {
this.applyViewState(rendering, camera, videoData);
},
getFrameOfReferenceUID: () => {
return this.getFrameOfReferenceUID(rendering);
},
removeData: () => {
this.removeData(rendering);
},
};
}
private updateDataPresentation(
rendering: VideoElementRendering,
props: unknown
): void {
const videoProps = props as VideoDataPresentation | undefined;
const { element } = rendering;
element.style.display = videoProps?.visible === false ? 'none' : '';
element.style.opacity = String(videoProps?.opacity ?? 1);
element.loop = videoProps?.loop ?? true;
element.muted = videoProps?.muted ?? true;
element.playbackRate = videoProps?.playbackRate ?? 1;
element.style.objectFit = videoProps?.objectFit ?? 'contain';
}
private applyViewState(
rendering: VideoElementRendering,
camera: unknown,
data: VideoStreamPayload
): void {
const videoCamera = camera as VideoViewState;
const { element } = rendering;
const rotation = videoCamera.rotation ?? 0;
const mapping = this.getCanvasMapping(element, videoCamera);
rendering.currentCamera = videoCamera;
if (mapping) {
element.style.width = `${mapping.width}px`;
element.style.height = `${mapping.height}px`;
element.style.left = `${mapping.left}px`;
element.style.top = `${mapping.top}px`;
}
element.style.transform = `rotate(${rotation}deg)`;
if (
typeof videoCamera.currentTimeSeconds === 'number' &&
Math.abs(element.currentTime - videoCamera.currentTimeSeconds) >
0.5 / Math.max(1, data.fps)
) {
element.currentTime = videoCamera.currentTimeSeconds;
}
}
private canvasToWorld(
rendering: VideoElementRendering,
canvasPos: Point2
): Point3 {
const mapping = this.getCanvasMapping(
rendering.element,
rendering.currentCamera
);
if (!mapping) {
return [0, 0, 0];
}
return [
(canvasPos[0] - mapping.left) / mapping.worldToCanvasRatio,
(canvasPos[1] - mapping.top) / mapping.worldToCanvasRatio,
0,
];
}
private worldToCanvas(
rendering: VideoElementRendering,
worldPos: Point3
): Point2 {
const mapping = this.getCanvasMapping(
rendering.element,
rendering.currentCamera
);
if (!mapping) {
return [0, 0];
}
return [
mapping.left + worldPos[0] * mapping.worldToCanvasRatio,
mapping.top + worldPos[1] * mapping.worldToCanvasRatio,
];
}
private getCanvasMapping(element: HTMLVideoElement, camera?: VideoViewState) {
const container = element.parentElement;
return resolveVideoCanvasMapping({
containerWidth: container?.clientWidth ?? 0,
containerHeight: container?.clientHeight ?? 0,
intrinsicWidth: element.videoWidth || container?.clientWidth || 0,
intrinsicHeight: element.videoHeight || container?.clientHeight || 0,
objectFit: element.style.objectFit as VideoProperties['objectFit'],
camera,
});
}
private getFrameOfReferenceUID(
rendering: VideoElementRendering
): string | undefined {
const { element } = rendering;
return element.currentSrc || element.src;
}
private removeData(rendering: VideoElementRendering): void {
const { element } = rendering;
element.pause();
element.remove();
}
}
/** @internal */
export class HtmlVideoPath
implements RenderPathDefinition<VideoElementRenderContext>
{
readonly id = 'video:html-element';
readonly type = ViewportType.VIDEO_NEXT;
matches(data: LoadedData, options: DataAddOptions): boolean {
return data.type === 'video' && options.renderMode === 'video2d';
}
createRenderPath() {
return new HtmlVideoRenderPath();
}
}
|