Skip to content

Instantly share code, notes, and snippets.

@galiminus
Created August 21, 2017 09:50
Show Gist options
  • Save galiminus/37f3542048f53fac5d7b44b1c9d83b92 to your computer and use it in GitHub Desktop.
Save galiminus/37f3542048f53fac5d7b44b1c9d83b92 to your computer and use it in GitHub Desktop.
Convert videos
#!/usr/bin/env ruby
Dir.glob('./TINY*.mp4') do |video|
system("ffmpeg -i #{video} -vf scale=-1:720 -c:v libx264 -crf 23 -preset slow -c:a copy -strict -2 #{video.gsub(".mp4", "_720.mp4")}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment