diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-08-25 17:18:22 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-08-25 17:18:22 -0500 |
commit | 899ea2da3e77ca64598e45eba986d5315b523120 (patch) | |
tree | bba793a5778bd5c18953d9f85a648457ece76b49 /config | |
parent | 479578b148f28f311a7d20f6da99bbc0dab1652c (diff) | |
download | pleroma-899ea2da3e77ca64598e45eba986d5315b523120.tar.gz |
Switch to imagemagick, only support videos
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 2 | ||||
-rw-r--r-- | config/description.exs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/config.exs b/config/config.exs index e1558e29e..972b96d2d 100644 --- a/config/config.exs +++ b/config/config.exs @@ -444,7 +444,7 @@ config :pleroma, :media_preview_proxy, enabled: false, thumbnail_max_width: 600, thumbnail_max_height: 600, - quality: 2, + image_quality: 85, proxy_opts: [ head_request_max_read_duration: 5_000 ] diff --git a/config/description.exs b/config/description.exs index 0082cc84f..60f76be45 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1975,9 +1975,9 @@ config :pleroma, :config_description, [ description: "Max height of preview thumbnail." }, %{ - key: :quality, + key: :image_quality, type: :integer, - description: "Quality of the output. Ranges from 1 (max quality) to 31 (lowest quality)." + description: "Quality of the output. Ranges from 0 (min quality) to 100 (max quality)." }, %{ key: :proxy_opts, |