Video not working in 2026.1

First, sorry for the confusion yesterday, the error I reported was my bad, had a wrong access on the Lib library. I should have got the idea before reporting.

My new server and the old one are both working now. Both running the “beta” version. They behave the same, everything works besides the video streams.

On the new server I have done a test, and if “transcodeVideos = true” then it will transcode the videos and they show correctly. As I have 2000+ videos, I was using “transcodeVideos = false” with great success, as it imports videos super fast. Everything worked.

I have exposed my test server on the internet directly for you to see the problem directly. It is using the below docker-compose.yml file. I know that the videos was working with “transcodeVideos = false” on the 2024 alpha version. If there is a way to get the 2024 version installed, I can install it on a second test server and show the differences, might help in finding the problem

The link to the server I will send in a private message :slight_smile:

services:
photostructure:

You can run alpha, beta, or stable builds. See

https://forum.photostructure.com/t/274 for details.

image: photostructure/server:beta
container_name: photostructure
restart: unless-stopped
stop_grace_period: 2m
volumes:

  • type: bind
    source: /home/home/lib
    target: /ps/library
  # Example additional directories to import into your library:
  - type: bind
    source: /home/home/A
    target: /a

  # Example additional directories to import into your library:
  - type: bind
    source: /home/home/B
    target: /b

  # Example additional directories to import into your library:
  - type: bind
    source: /home/home/V
    target: /v

ports:
  - 1787:1787/tcp

environment:
  - "TZ=Etc/GMT" # < CHANGE THIS LINE
  - "PUID=1000" # < CHANGE THIS LINE: replace 1000 with the result of `id -u`
  - "PGID=1000" # < CHANGE THIS LINE: replace 1000 with the result of `id -g`
labels:
  - "com.centurylinklabs.watchtower.enable=true"