mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 13:52:56 -04:00
Merge pull request #438 from linuxserver/lazylibrarian-ffmpeg-s6v3
switch to hybrid (lazylibrarian-ffmpeg)
This commit is contained in:
@@ -4,6 +4,6 @@ This mod adds ffmpeg to lazylibrarian, to be installed/updated during container
|
||||
|
||||
In lazylibrarian docker arguments, set an environment variable `DOCKER_MODS=linuxserver/mods:lazylibrarian-ffmpeg`
|
||||
|
||||
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=linuxserver/mods:lazylibrarian-ffmpeg|linuxserver/calibre-web:calibre`
|
||||
If adding multiple mods, enter them in an array separated by `|`, such as `DOCKER_MODS=linuxserver/mods:lazylibrarian-ffmpeg|linuxserver/mods:universal-calibre`
|
||||
|
||||
To enable it you can set the ffmpeg path under Settings > Processing > External Programs to `ffmpeg` in the LazyLibrarian Web UI.
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/with-contenv bash
|
||||
|
||||
if ! dpkg -s ffmpeg >/dev/null 2>&1; then
|
||||
echo "**** Adding ffmpeg to package install list ****"
|
||||
echo "ffmpeg" >> /mod-repo-packages-to-install.list
|
||||
else
|
||||
echo "**** ffmpeg already installed, skipping ****"
|
||||
fi
|
||||
@@ -0,0 +1 @@
|
||||
oneshot
|
||||
@@ -0,0 +1 @@
|
||||
/etc/s6-overlay/s6-rc.d/init-mod-lazylibrarian-ffmpeg-add-package/run
|
||||
Reference in New Issue
Block a user