Allow mp4 uploads, convert to WebM
This commit is contained in:
		
							parent
							
								
									32049e471d
								
							
						
					
					
						commit
						1474f87a14
					
				
					 1 changed files with 13 additions and 8 deletions
				
			
		|  | @ -1,6 +1,6 @@ | ||||||
| class MediaAttachment < ApplicationRecord | class MediaAttachment < ApplicationRecord | ||||||
|   IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif'].freeze |   IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif'].freeze | ||||||
|   VIDEO_MIME_TYPES = ['video/webm'].freeze |   VIDEO_MIME_TYPES = ['video/webm', 'video/mp4'].freeze | ||||||
| 
 | 
 | ||||||
|   belongs_to :account, inverse_of: :media_attachments |   belongs_to :account, inverse_of: :media_attachments | ||||||
|   belongs_to :status,  inverse_of: :media_attachments |   belongs_to :status,  inverse_of: :media_attachments | ||||||
|  | @ -43,6 +43,11 @@ private | ||||||
|       } |       } | ||||||
|     else |     else | ||||||
|       { |       { | ||||||
|  |         original: { | ||||||
|  |           convert_options: {}, | ||||||
|  |           format: 'webm' | ||||||
|  |         }, | ||||||
|  | 
 | ||||||
|         small: { |         small: { | ||||||
|           convert_options: { |           convert_options: { | ||||||
|             output: { |             output: { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue