The LinuxServer.io team brings you another container release featuring :-
regular and timely application updates
easy user mappings (PGID, PUID)
custom base image with s6 overlay
weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
regular security updates
Find us at: * Blog - all the things you can do with our containers including How-To guides, opinions and much more! * Discord - realtime support / chat with the community and the team. * Discourse - post on our community forum. * Fleet - an online web interface which displays all of our maintained images. * Open Collective - please consider helping us by either donating or contributing to our budget
FFmpeg - A complete, cross-platform solution to record, convert and stream audio and video.
Unlike most of our container library this image is meant to be run ephemerally from the command line parsing user input for a custom FFmpeg command. You will need to understand some Docker basics to use this image and be familiar with how to construct an FFmpeg command. In the commands below we will be bind mounting our current working directory from the CLI to /config, the assumption is that input.mkv is in your current working directory.
If an input file is detected we will run FFmpeg as that user/group so the output file will match its permissions. The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below.
Included Intel Drivers (latest versions compiled):¶
iHD Driver: Supports gen8+ (default for Intel)
i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var LIBVA_DRIVER_NAME=i965 in docker arguments)
Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver
Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch)
The LinuxServer.io team brings you another container release featuring :-
regular and timely application updates
easy user mappings (PGID, PUID)
custom base image with s6 overlay
weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
regular security updates
Find us at: * Blog - all the things you can do with our containers including How-To guides, opinions and much more! * Discord - realtime support / chat with the community and the team. * Discourse - post on our community forum. * Fleet - an online web interface which displays all of our maintained images. * Open Collective - please consider helping us by either donating or contributing to our budget
FFmpeg - A complete, cross-platform solution to record, convert and stream audio and video.
Unlike most of our container library this image is meant to be run ephemerally from the command line parsing user input for a custom FFmpeg command. You will need to understand some Docker basics to use this image and be familiar with how to construct an FFmpeg command. In the commands below we will be bind mounting our current working directory from the CLI to /config, the assumption is that input.mkv is in your current working directory.
If an input file is detected we will run FFmpeg as that user/group so the output file will match its permissions. The image supports Hardware acceleration on x86 pay close attention to the variables for the examples below.
Included Intel Drivers (latest versions compiled):¶
iHD Driver: Supports gen8+ (default for Intel)
i965 Driver: Supports gen5+ (for gen5-gen9.5 it can be enabled by setting env var LIBVA_DRIVER_NAME=i965 in docker arguments)
Libva (VAAPI): Supports gen5+ with i965 driver and gen8+ with iHD driver
Qsv Dispatcher: OneVPL (supports both OneVPL and MSDK runtimes and should automatically switch)
05.10.23: - Add support for SVT-AV1. Update various libraries.
16.08.23: - Added support for WebP formats.
11.08.23: - Add optional i965 driver for gen5+ support.
14.06.23: - Switch to latest iHD for Intel, add qsv support.
13.06.23: - Bump to 6.0, update shared libraries, deprecate armhf, combine bin stage.
14.12.22: - Rebase to Jammy, bump to 5.1.2.
19.06.22: - Rebase to Focal.
26.08.21: - Add support for libOpenCL.
01.07.21: - Bump to 4.4.
17.06.20: - Bump to 4.3.
16.06.20: - Add support for libvmaf.
01.08.19: - Initial release.
Last update: October 9, 2023 Created: September 23, 2019
\ No newline at end of file
diff --git a/images/docker-series-troxide/index.html b/images/docker-series-troxide/index.html
index 8e762645ea..a9ddbf5e4f 100644
--- a/images/docker-series-troxide/index.html
+++ b/images/docker-series-troxide/index.html
@@ -29,4 +29,4 @@
Docker images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional -e UMASK=022 setting. Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up here before asking for support.
When using volumes (-v flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance PUID=1000 and PGID=1000, to find yours use id user as below:
We publish various Docker Mods to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.