diff options
author | invario <67800603+invario@users.noreply.github.com> | 2025-04-25 20:33:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-25 20:33:25 -0400 |
commit | 1386b8096d0c547b2bc518e7dd2bb545439d60c6 (patch) | |
tree | 3cc42cbe6161040e84d74dc6085f8e6d67a41033 | |
parent | de23547ef99a30abb0487c576b29b54d649e776f (diff) | |
download | nextcloud-server-1386b8096d0c547b2bc518e7dd2bb545439d60c6.tar.gz nextcloud-server-1386b8096d0c547b2bc518e7dd2bb545439d60c6.zip |
chore: Update config.sample.php to document new ffprobe path option
PR #51712 added new preview_ffprobe_path parameter. This PR updates config.sample.php to document this new optional parameter and the fallback behavior if the option is not set.
Signed-off-by: invario <67800603+invario@users.noreply.github.com>
-rw-r--r-- | config/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index f9943ddfe19..737a94cce3d 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1422,6 +1422,15 @@ $CONFIG = [ 'preview_ffmpeg_path' => '/usr/bin/ffmpeg', /** + * custom path for ffprobe binary + * + * Defaults to ``null`` and falls back to using the same path as ffmpeg. + * ffprobe is typically packaged with ffmpeg and is required for + * enhanced preview generation for HDR videos. + */ +'preview_ffprobe_path' => '/usr/bin/ffprobe', + +/** * Set the URL of the Imaginary service to send image previews to. * Also requires the ``OC\Preview\Imaginary`` provider to be enabled in the * ``enabledPreviewProviders`` array, to create previews for these mimetypes: bmp, |