Fix audio always being re-encoded even for passthrough-eligible media (#1839)
This commit is contained in:
		@@ -40,8 +40,10 @@ module Paperclip
 | 
				
			|||||||
        @output_options['f']       = 'image2'
 | 
					        @output_options['f']       = 'image2'
 | 
				
			||||||
        @output_options['vframes'] = 1
 | 
					        @output_options['vframes'] = 1
 | 
				
			||||||
      when 'mp4'
 | 
					      when 'mp4'
 | 
				
			||||||
        @output_options['acodec'] = 'aac'
 | 
					        unless eligible_to_passthrough?(metadata)
 | 
				
			||||||
        @output_options['strict'] = 'experimental'
 | 
					          @output_options['acodec'] = 'aac'
 | 
				
			||||||
 | 
					          @output_options['strict'] = 'experimental'
 | 
				
			||||||
 | 
					        end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if high_vfr?(metadata) && !eligible_to_passthrough?(metadata)
 | 
					        if high_vfr?(metadata) && !eligible_to_passthrough?(metadata)
 | 
				
			||||||
          @output_options['vsync'] = 'vfr'
 | 
					          @output_options['vsync'] = 'vfr'
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user