paperclip-ffmpeg 0.6.4 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/paperclip-ffmpeg.rb +1 -1
- data/paperclip-ffmpeg.gemspec +1 -1
- metadata +1 -1
data/lib/paperclip-ffmpeg.rb
CHANGED
|
@@ -114,7 +114,7 @@ module Paperclip
|
|
|
114
114
|
begin
|
|
115
115
|
success = Paperclip.run("ffmpeg", parameters, :source => "#{File.expand_path(src.path)}", :dest => File.expand_path(dst.path))
|
|
116
116
|
|
|
117
|
-
rescue
|
|
117
|
+
rescue Cocaine::ExitStatusError => e
|
|
118
118
|
raise PaperclipError, "error while processing video for #{@basename}." if @whiny
|
|
119
119
|
end
|
|
120
120
|
|
data/paperclip-ffmpeg.gemspec
CHANGED