mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
improvement: migrated to videojs
This commit is contained in:
parent
37011c2fda
commit
17b745434c
@ -3,6 +3,12 @@ import { useCallback, useEffect, useRef, useState } from 'preact/hooks';
|
||||
import { useApiHost } from '../../api';
|
||||
import { isNullOrUndefined } from '../../utils/objectUtils';
|
||||
|
||||
import 'videojs-seek-buttons';
|
||||
import 'video.js/dist/video-js.css';
|
||||
import 'videojs-seek-buttons/dist/videojs-seek-buttons.css';
|
||||
|
||||
import videojs from 'video.js';
|
||||
|
||||
interface OnTimeUpdateEvent {
|
||||
timestamp: number;
|
||||
isPlaying: boolean;
|
||||
@ -31,75 +37,45 @@ export const HistoryVideo = ({
|
||||
onPlay,
|
||||
}: HistoryVideoProps) => {
|
||||
const apiHost = useApiHost();
|
||||
const videoRef = useRef<HTMLVideoElement | null>(null);
|
||||
|
||||
const [posterLoaded, setPosterLoaded] = useState(false);
|
||||
const [videoHeight, setVideoHeight] = useState<number | undefined>(undefined);
|
||||
const videoRef = useRef<HTMLVideoElement>();
|
||||
|
||||
const [videoProperties, setVideoProperties] = useState<VideoProperties>({
|
||||
posterUrl: '',
|
||||
videoUrl: '',
|
||||
});
|
||||
|
||||
const videoCallback = useCallback(
|
||||
(domNode: any) => {
|
||||
videoRef.current = domNode;
|
||||
|
||||
if (posterLoaded) {
|
||||
setVideoHeight(videoRef.current?.offsetHeight);
|
||||
useEffect(() => {
|
||||
let video: any;
|
||||
if (videoRef.current && id) {
|
||||
video = videojs(videoRef.current, {});
|
||||
}
|
||||
},
|
||||
[posterLoaded]
|
||||
);
|
||||
}, [videoRef]);
|
||||
|
||||
useEffect(() => {
|
||||
const idExists = !isNullOrUndefined(id);
|
||||
if (idExists) {
|
||||
if (videoRef.current && !videoRef.current.paused) {
|
||||
videoRef.current = null;
|
||||
if (!id) {
|
||||
return;
|
||||
}
|
||||
|
||||
const posterUrl = `${apiHost}/api/events/${id}/snapshot.jpg`;
|
||||
const poster = new Image();
|
||||
poster.src = posterUrl;
|
||||
poster.onload = () => {
|
||||
setPosterLoaded(true);
|
||||
};
|
||||
setVideoProperties({
|
||||
posterUrl,
|
||||
videoUrl: `${apiHost}/vod/event/${id}/index.m3u8`,
|
||||
const video = videojs(videoRef.current);
|
||||
video.src({
|
||||
src: `${apiHost}/vod/event/${id}/index.m3u8`,
|
||||
type: 'application/vnd.apple.mpegurl',
|
||||
});
|
||||
} else {
|
||||
setVideoProperties({
|
||||
posterUrl: '',
|
||||
videoUrl: '',
|
||||
});
|
||||
}
|
||||
}, [id, videoHeight, videoRef, apiHost]);
|
||||
|
||||
useEffect(() => {
|
||||
const playVideo = (video: HTMLMediaElement) => video.play();
|
||||
|
||||
const attemptPlayVideo = (video: HTMLMediaElement) => {
|
||||
const videoHasNotLoaded = video.readyState <= 1;
|
||||
if (videoHasNotLoaded) {
|
||||
video.oncanplay = () => {
|
||||
playVideo(video);
|
||||
};
|
||||
video.load();
|
||||
} else {
|
||||
playVideo(video);
|
||||
}
|
||||
};
|
||||
|
||||
const video = videoRef.current;
|
||||
const videoExists = !isNullOrUndefined(video);
|
||||
if (video && videoExists) {
|
||||
video.poster(`${apiHost}/api/events/${id}/snapshot.jpg`);
|
||||
if (videoIsPlaying) {
|
||||
attemptPlayVideo(video);
|
||||
} else {
|
||||
video.pause();
|
||||
video.play();
|
||||
}
|
||||
}, [id]);
|
||||
|
||||
useEffect(() => {
|
||||
if (!videoRef) {
|
||||
return;
|
||||
}
|
||||
|
||||
const video = videojs(videoRef.current);
|
||||
if (video.paused() && videoIsPlaying) {
|
||||
video.play();
|
||||
} else if (!video.paused() && !videoIsPlaying) {
|
||||
video.pause();
|
||||
}
|
||||
}, [videoIsPlaying, videoRef]);
|
||||
|
||||
@ -119,7 +95,6 @@ export const HistoryVideo = ({
|
||||
isPlaying: videoIsPlaying,
|
||||
timestamp: target.currentTime,
|
||||
};
|
||||
|
||||
onTimeUpdate && onTimeUpdate(timeUpdateEvent);
|
||||
},
|
||||
[videoIsPlaying, onTimeUpdate]
|
||||
@ -127,19 +102,17 @@ export const HistoryVideo = ({
|
||||
|
||||
const { posterUrl, videoUrl } = videoProperties;
|
||||
return (
|
||||
<div data-vjs-player>
|
||||
<video
|
||||
ref={videoCallback}
|
||||
key={posterUrl}
|
||||
ref={videoRef}
|
||||
onTimeUpdate={onTimeUpdateHandler}
|
||||
onPause={onPause}
|
||||
onPlay={onPlay}
|
||||
poster={posterUrl}
|
||||
preload="metadata"
|
||||
controls
|
||||
style={videoHeight ? { minHeight: `${videoHeight}px` } : {}}
|
||||
playsInline
|
||||
>
|
||||
<source type="application/vnd.apple.mpegurl" src={videoUrl} />
|
||||
</video>
|
||||
src={videoUrl}
|
||||
className="video-js vjs-fluid"
|
||||
data-setup="{}"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user