Open Folder after Mixdown in OSX (Audio Export Post Processing)

Open Folder After Export

Took me quite a while, but I’ve made a little script that you can use to show the exported file in the finder automatically after the mixdown is done.

I know we have a button for that, but hey, any click saved is a click saved, right? Besided, I tried this before and it annoyed me that I couldn’t get it to work. The quotation marks around the $PATH argument were the problem AND the -R argument for the open command as well.

DISCLAIMER: do this if you enjoy tinkering and optimizing your workflow, it’s a low risk thing, but don’t blame me if you mess something up.

=============

Here are the steps (close Cubase or Nuendo first):

  1. Open TextEdit

  2. In the menu set it to “plain text” (format → make plain text)

  3. Paste the following script at the bottom of this post in there
    (you can add the name of an icon file between the icon tags if you want, any 32x32 png should do, see my screenshot for an example)

  4. Save it to your desktop, name it “OpenInFinder.aepp” for example. The extension is important, don’t name it .txt

  5. In the finder, navigate to the root of your harddrive and then to
    “/Library/Application Support/Steinberg/Audio Export Post Process Scripts”
    (not the library in your user folder)

  6. Drag the .aepp file from the desktop to this folder and use your password if prompted.

=============

<?xml version="1.0" encoding="UTF-8"?>
<AudioExportPostProcess>
	<Description>
		<us>Open in Finder</us>
		<de>In Finder der öffnen</de>
		<it>Aprire in Finder </it>
		<fr>Ouvrir dans Finder </fr>
		<es>Abrir en Finder </es>
		<jp>Finder で開く</jp>
		<zh>在 W Finder 开启</zh>
	</Description>
	<Icon></Icon>
	<Executable>
		<Name>Finder</Name>
		<Version>15.3</Version>
		<Path>/usr/bin/open</Path>
		<Argument>-R</Argument>
		<Argument>"$PATH"</Argument>
	</Executable>
	<RunOnce>false</RunOnce>
	<WaitDone>false</WaitDone>
</AudioExportPostProcess>


3 Likes

Thanks a bunch for this!!

1 Like

This is great. Thanks! Such a small but useful thing, will definitely be using this.

1 Like