diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/paperclip/audio_transcoder.rb | 9 |
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 |