Mac OS: 10.13.6
Audacity: 2.3.2
I have a macro to normalize my audio files. I would prefer to keep them in the same format as they are currently in (varies by file). The current steps that I have are:
01 - Normalize
02 - End
I am guessing I need an Export step as well (first time trying macro mode)? But I cannot find an export that will maintain the existing file format. For that matter it seems like the only exports are FLAC, MP3, MP3 56k (before and after), OOG, and WAV. No AAC, M4A, etc.
Macro export?
Forum rules
This forum is for Audacity on macOS 10.4 and later.
Please state which version of macOS you are using,
and the exact three-section version number of Audacity from "Audacity menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of macOS you are using,
and the exact three-section version number of Audacity from "Audacity menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
-
[email protected]
- Posts: 31
- Joined: Mon Jul 08, 2013 10:03 pm
- Operating System: macOS 10.15 Catalina or later
Re: Macro export?
Macros currently only offer a limited selection of file formats for export. However, if you export as WAV, then you could run a third party format converter to batch convert the files to the format that you require. (Additional export formats are likely to be added in the future).
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
[email protected]
- Posts: 31
- Joined: Mon Jul 08, 2013 10:03 pm
- Operating System: macOS 10.15 Catalina or later
Re: Macro export?
Thanks, but I wanted to retain them in their original format, so a third party app really doesn't help.
Re: Macro export?
Macros are deliberately very simple - they provide a single list of commands, and that's it. Macros are not able to handle "conditional" commands. You can't tell a Macro: "IF it's an MP3, THEN export as MP3, ELSE IF it's a WAV, THEN export as WAV..."
If you need to use conditional commands, you need to use a more powerful scripting language than a normal Macro. Audacity provides two such options, but both are significantly more complex (and more powerful) than Macros. The options are:
If you need to use conditional commands, you need to use a more powerful scripting language than a normal Macro. Audacity provides two such options, but both are significantly more complex (and more powerful) than Macros. The options are:
- Nyquist Macros: https://manual.audacityteam.org/man/nyquist_macros.html (additional information here: https://wiki.audacityteam.org/wiki/Nyqu ... o_Tutorial)
- Python Scripting: https://manual.audacityteam.org/man/scripting.html
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
[email protected]
- Posts: 31
- Joined: Mon Jul 08, 2013 10:03 pm
- Operating System: macOS 10.15 Catalina or later
Re: Macro export?
Thanks will look into them later.