diff options
author | Stephan Orbaugh <62374139+sorbaugh@users.noreply.github.com> | 2025-04-28 13:21:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 13:21:50 +0200 |
commit | 115cca57aa0c4cb03661f83a776a2d20213d5db8 (patch) | |
tree | e1611d856740b10d848ba05511fcf3016ffadcf7 | |
parent | 6a2c0a254ea71f3b94d49d4f0e3f5c4506d558ed (diff) | |
parent | 1386b8096d0c547b2bc518e7dd2bb545439d60c6 (diff) | |
download | nextcloud-server-115cca57aa0c4cb03661f83a776a2d20213d5db8.tar.gz nextcloud-server-115cca57aa0c4cb03661f83a776a2d20213d5db8.zip |
Merge pull request #52445 from invario/master
chore: Update config.sample.php to document new ffprobe path option
-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, |