diff --git a/docker/Dockerfile b/docker/Dockerfile index 1e8de13a2..b1b91a65f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -79,12 +79,13 @@ RUN apt-get -qq update \ && apt-get -qq install --no-install-recommends --no-install-suggests -y \ # coral drivers libedgetpu1-max python3-tflite-runtime python3-pycoral \ - jellyfin-ffmpeg \ && pip3 install -U /wheels/*.whl \ - # amd64 specific packages + # arch specific packages && if [ "${TARGETARCH}" = "amd64" ]; then \ - apt-get -qq install --no-install-recommends -y \ - mesa-va-drivers; \ + apt-get -qq install --no-install-recommends --no-install-suggests -y \ + mesa-va-drivers jellyfin-ffmpeg; else \ + apt-get -qq install --no-install-recommends --no-install-suggests -y \ + ffmpeg; \ fi \ && rm -rf /wheels \ && apt-get remove gnupg apt-transport-https -y \ diff --git a/web/src/components/VideoPlayer.jsx b/web/src/components/VideoPlayer.jsx index 24ba747b5..df75ad5e4 100644 --- a/web/src/components/VideoPlayer.jsx +++ b/web/src/components/VideoPlayer.jsx @@ -18,7 +18,11 @@ const defaultSeekOptions = { export default function VideoPlayer({ children, options, seekOptions = {}, onReady = () => {}, onDispose = () => {} }) { const playerRef = useRef(); - + + if (!videojs.browser.IS_FIREFOX) { + defaultOptions.playbackRates.push(16); + } + useEffect(() => { const player = videojs(playerRef.current, { ...defaultOptions, ...options }, () => { onReady(player); diff --git a/web/src/routes/Events.jsx b/web/src/routes/Events.jsx index 4c8423210..f32f4ac32 100644 --- a/web/src/routes/Events.jsx +++ b/web/src/routes/Events.jsx @@ -388,7 +388,7 @@ export default function Events({ path, ...props }) { onClick={() => (viewEvent === event.id ? setViewEvent(null) : setViewEvent(event.id))} >