Skip to content

Instantly share code, notes, and snippets.

@glowinthedark
Last active December 6, 2022 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glowinthedark/942ebd810c42a1996ecaae41c627942c to your computer and use it in GitHub Desktop.
Save glowinthedark/942ebd810c42a1996ecaae41c627942c to your computer and use it in GitHub Desktop.
Extract AAC streams from all MP4 files in current directory without recoding (fastest)
find . -type f -iname "*.mp4" -exec sh -c 'ffmpeg -i "${0}" -acodec copy "${0%.*}.aac"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment