Skip to content

Instantly share code, notes, and snippets.

@andrelugomes
Last active August 28, 2016 22:25
Show Gist options
  • Save andrelugomes/25c4337d75cc74d91b02ca6d382bbb89 to your computer and use it in GitHub Desktop.
Save andrelugomes/25c4337d75cc74d91b02ca6d382bbb89 to your computer and use it in GitHub Desktop.
Convert .mkv to .mp4
#sudo apt install ffmpeg
Dir.glob("*.mkv") do |mkv_file|
puts "working on: #{mkv_file}"
mp4_file = mkv_file.gsub(".mkv", ".mp4")
system "ffmpeg -i #{mkv_file} -acodec copy -vcodec copy -c:s mov_text #{mp4_file}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment