mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-23 17:52:05 +02:00
38 lines
976 B
JavaScript
38 lines
976 B
JavaScript
import { h } from 'preact';
|
|
import { baseUrl } from '../api/baseUrl';
|
|
import { useRef, useEffect } from 'preact/hooks';
|
|
import JSMpeg from '@cycjimmy/jsmpeg-player';
|
|
|
|
export default function JSMpegPlayer({ camera, width, height }) {
|
|
const playerRef = useRef();
|
|
const url = `${baseUrl.replace(/^http/, 'ws')}live/${camera}`;
|
|
|
|
useEffect(() => {
|
|
const video = new JSMpeg.VideoElement(
|
|
playerRef.current,
|
|
url,
|
|
{},
|
|
{protocols: [], audio: false, videoBufferSize: 1024*1024*4}
|
|
);
|
|
|
|
const fullscreen = () => {
|
|
if (video.els.canvas.webkitRequestFullScreen) {
|
|
video.els.canvas.webkitRequestFullScreen();
|
|
}
|
|
else {
|
|
video.els.canvas.mozRequestFullScreen();
|
|
}
|
|
};
|
|
|
|
video.els.canvas.addEventListener('click',fullscreen);
|
|
|
|
return () => {
|
|
video.destroy();
|
|
};
|
|
}, [url]);
|
|
|
|
return (
|
|
<div ref={playerRef} class="jsmpeg" style={`max-height: ${height}px; max-width: ${width}px`} />
|
|
);
|
|
}
|