Created
May 6, 2014 17:08
-
-
Save tyrells/7cb6821c6d9c88cef7bd to your computer and use it in GitHub Desktop.
How to extract audio from a .mp4 file
This file contains 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
# 1. Find audio track number | |
MP4Box -info file.mp4 | |
# 2. Extract raw audio track | |
MP4Box -raw 2 file.mp4 | |
# 3. Package raw audio track into m4a container | |
MP4Box -add file_track2.aac#audio file.m4a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment