From cd042a4ee30c46b117d74a182e14846a1d62540b Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 12 Apr 2019 02:22:56 -0500 Subject: Handle more audio formats, only converting formats not supported by HTML5 audio --- lib/paperclip/audio_transcoder.rb | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'lib/paperclip/audio_transcoder.rb') 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 -- cgit