Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: batch extract raw aac from mp4 or m4a files (Read 5223 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

batch extract raw aac from mp4 or m4a files

Please help me to batch extarct raw aac from mp4 audio files.I tried YAMB,batchenc with mp4box but failed.YAMB does not support batch mode.No result with batchenc + MP4box.How can I use batchenc with MP4box.

batch extract raw aac from mp4 or m4a files

Reply #1
Open a Command Prompt or whatever the contemporary equivalent is (PowerShell?), and enter this:
Code: [Select]
FOR %1 IN (*.mp4) DO mp4box -raw TrackID "%1"
TrackID is usually 0 or 1; I can’t remember which. Run mp4box -info file.mp4 to check.