about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-04-12 02:22:56 -0500
committermultiple creatures <dev@multiple-creature.party>2019-05-21 03:16:21 -0500
commitcd042a4ee30c46b117d74a182e14846a1d62540b (patch)
tree6c59e9155d36ac80278fe29e6062984a35cbadca /lib
parent7370ff5677c16aa88c96cfa5a05bdb404c73e5f6 (diff)
Handle more audio formats, only converting formats not supported by HTML5 audio
Diffstat (limited to 'lib')
-rw-r--r--lib/paperclip/audio_transcoder.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/paperclip/audio_transcoder.rb b/lib/paperclip/audio_transcoder.rb
index 3d79e8397..b84eb7650 100644
--- a/lib/paperclip/audio_transcoder.rb
+++ b/lib/paperclip/audio_transcoder.rb
@@ -6,14 +6,11 @@ module Paperclip
       max_aud_len = (ENV['MAX_AUDIO_LENGTH'] || 60.0).to_f
 
       meta = ::Av.cli.identify(@file.path)
-      # {:length=>"0:00:02.14", :duration=>2.14, :audio_encode=>"mp3", :audio_bitrate=>"44100 Hz", :audio_channels=>"mono"}
-
-      attachment.instance.file_file_name    = 'media.m4a'
-      attachment.instance.file_content_type = 'audio/mp4'
+      #attachment.instance.file_file_name    = 'media.m4a'
+      #attachment.instance.file_content_type = 'audio/mp4'
       attachment.instance.type              = MediaAttachment.types[:video]
 
-      final_file = Paperclip::Transcoder.make(file, options, attachment)
-      final_file
+      Paperclip::Transcoder.make(file, options, attachment)
     end
   end
 end