summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorWilliam <william.hak57@gmail.com>2023-01-18 19:26:48 +0100
committerGitHub <noreply@github.com>2023-01-18 19:26:48 +0100
commit2c4afdcdd1e0be19557923ad8759693252b6db0e (patch)
tree9bdc8c2c7e0ce6292601e74c2ef9182d10f33a27 /config
parentc5a01695d141b80fc1b5802e629ede8044658d57 (diff)
downloadnextcloud-server-2c4afdcdd1e0be19557923ad8759693252b6db0e.tar.gz
nextcloud-server-2c4afdcdd1e0be19557923ad8759693252b6db0e.zip
add documentation preview_ffmpeg_path
add preview_ffmpeg_path documentation. document custom path for ffmpeg so it can be used by the previewprovider to create video previews with the snap package of nextcloud. Signed-off-by: William <william.hak57@gmail.com>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 0267ae51c91..b9ed39d97a7 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1190,7 +1190,14 @@ $CONFIG = [
'preview_office_cl_parameters' =>
' --headless --nologo --nofirststartwizard --invisible --norestore '.
'--convert-to png --outdir ',
-
+
+/**
+ * custom path for ffmpeg binary
+ *
+ * Defaults to ``''`` (empty string)
+ */
+'preview_ffmpeg_path' => '/usr/bin/ffmpeg',
+
/**
* Set the URL of the Imaginary service to send image previews to.
* Also requires the ``OC\Preview\Imaginary`` provider to be enabled.