Skip to content

Instantly share code, notes, and snippets.

@skalahonza
Created October 16, 2021 14:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skalahonza/f813ae40207509bc58717c3aec61b820 to your computer and use it in GitHub Desktop.
Save skalahonza/f813ae40207509bc58717c3aec61b820 to your computer and use it in GitHub Desktop.
Convert all avi files to mp4 using HW accelerated FFMPEG
for i in *.avi; do ffmpeg -hwaccel cuda -i "$i" "${i%.*}.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment