.circleci
.dependabot
.github
app
bin
config
db
dist
lib
assets
chewy
devise
generators
json_ld
mastodon
paperclip
blurhash_transcoder.rb
gif_transcoder.rb
lazy_thumbnail.rb
type_corrector.rb
video_transcoder.rb
tasks
templates
cli.rb
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
crowdin.yml
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Change animated GIF detection to not shell out to ImageMagick Signed-off-by: Eugen Rochko <eugen@zeonfederated.com> * Change video encoding parameters to limit to 10800 video frames Signed-off-by: Eugen Rochko <eugen@zeonfederated.com> * Limit GIF image size further Signed-off-by: Eugen Rochko <eugen@zeonfederated.com> * Always strip metadata from video files * Fix code style issues
17 lines
554 B
Ruby
17 lines
554 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Paperclip
|
|
# This transcoder is only to be used for the MediaAttachment model
|
|
# to check when uploaded videos are actually gifv's
|
|
class VideoTranscoder < Paperclip::Processor
|
|
def make
|
|
meta = ::Av.cli.identify(@file.path)
|
|
|
|
attachment.instance.type = MediaAttachment.types[:gifv] unless meta[:audio_encode]
|
|
options[:format] = File.extname(attachment.instance.file_file_name)[1..-1] if options[:keep_same_format]
|
|
|
|
Paperclip::Transcoder.make(file, options, attachment)
|
|
end
|
|
end
|
|
end
|