Skip to content

Instantly share code, notes, and snippets.

@guerrerocarlos
Created May 21, 2014 20:26
Show Gist options
  • Save guerrerocarlos/a624b92bd6d87bb77bb6 to your computer and use it in GitHub Desktop.
Save guerrerocarlos/a624b92bd6d87bb77bb6 to your computer and use it in GitHub Desktop.
iMovie Bug: won't load sound from some .mp4 files when importing. Use this line to convert them all to .mov in the most efficient way.
find . -name "*.mp4" -exec ffmpeg -i {} -acodec copy -vcodec copy -f mov {}.mov \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment