Created
May 21, 2014 20:26
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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