Replicating the issue
Selecting an image with a z-stack in omero web clicking 'publishing options' and 'make movie' then 'create movie' results in an error in the logs: sh: line 1: mencoder: command not found (I used MPEG format and have not tested the other formats)
Proposed Solution:
mencoder seems not to be in the main or expended repos for rocky but is in rpmfusion (free) so can be installed from there.
RUN dnf install https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm -y
RUN dnf config-manager --set-disabled rpmfusion-free-updates
RUN dnf --enablerepo rpmfusion-free-updates install -y mencoder
This approach adds the rpmfusion free repo but disables it by default which should prevent conflicts with any duplicates in rpmfusion and other repos.
I'm happy to open a PR adding this commit RichardJActon@11cccb7 if this approach to installing mencoder is acceptable.
Replicating the issue
Selecting an image with a z-stack in omero web clicking 'publishing options' and 'make movie' then 'create movie' results in an error in the logs:
sh: line 1: mencoder: command not found(I used MPEG format and have not tested the other formats)Proposed Solution:
mencoder seems not to be in the main or expended repos for rocky but is in rpmfusion (free) so can be installed from there.
This approach adds the rpmfusion free repo but disables it by default which should prevent conflicts with any duplicates in rpmfusion and other repos.
I'm happy to open a PR adding this commit RichardJActon@11cccb7 if this approach to installing mencoder is acceptable.