about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2018-12-27 20:19:26 -0600
committermultiple creatures <dev@multiple-creature.party>2019-05-21 03:16:21 -0500
commitcf557f18497e98aea0dbf8a799186aa92dc34663 (patch)
treeb4823a6d987278de3bd1b4d80e6b31d64d312c33 /app/models
parentf119ef489c488b20bae2f4f7f48b64d100a8878e (diff)
Plain AAC audio uploads live again. -DT
Diffstat (limited to 'app/models')
-rw-r--r--app/models/media_attachment.rb27
1 files changed, 22 insertions, 5 deletions
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb
index 6e1b37bac..7383be3b2 100644
--- a/app/models/media_attachment.rb
+++ b/app/models/media_attachment.rb
@@ -55,18 +55,35 @@ class MediaAttachment < ApplicationRecord
 
   AUDIO_STYLES = {
     original: {
-      format: 'mp4',
+      format: 'm4a',
       convert_options: {
         output: {
-          filter_complex: '"[0:a]compand,showwaves=s=640x360:mode=line,format=yuv420p[v]"',
-          map: '"[v]" -map 0:a', 
-          threads: 2,
-          vcodec: 'libx264',
+          vn: '',
           acodec: 'aac',
           movflags: '+faststart',
         },
       },
     },
+
+    small: {
+      format: 'png',
+      time: 0,
+      convert_options: {
+        output: {
+          filter_complex: '"showwavespic=s=400x100:colors=lime|green"',
+        },
+      },
+    },
+
+    thumb: {
+      format: 'png',
+      time: 0,
+      convert_options: {
+        output: {
+          filter_complex: '"showwavespic=s=400x100:colors=lime|green"',
+        },
+      },
+    },
   }.freeze
 
   VIDEO_STYLES = {