From: Hugo Gameiro Date: Sun, 6 Oct 2019 17:48:26 +0000 (+0100) Subject: add loglevel fatal to video and audio styles (#12088) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=a7917269d30104d0ba1e310d5f30f72891c9a37b;p=mastodon.git add loglevel fatal to video and audio styles (#12088) --- diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index 630dab55a..9c6c04556 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -57,6 +57,7 @@ class MediaAttachment < ApplicationRecord small: { convert_options: { output: { + 'loglevel' => 'fatal', vf: 'scale=\'min(400\, iw):min(400\, ih)\':force_original_aspect_ratio=decrease', }, }, @@ -70,6 +71,7 @@ class MediaAttachment < ApplicationRecord keep_same_format: true, convert_options: { output: { + 'loglevel' => 'fatal', 'map_metadata' => '-1', 'c:v' => 'copy', 'c:a' => 'copy', @@ -84,6 +86,7 @@ class MediaAttachment < ApplicationRecord content_type: 'audio/mpeg', convert_options: { output: { + 'loglevel' => 'fatal', 'q:a' => 2, }, },