Musebox Scripting
Musebox’s scripting interface lets you build custom workflows using media and metadata in your libraries.
Apps that support the macOS Open Scripting Architecture have a scripting dictionary that describe a set of verbs (commands or actions, such as open
) and nouns (objects, such as album
). You write scripts to combine the actions with object specifiers
(queries) to control various apps.
Important: Musebox’s Help book (available from the
Key resources
- Mac Automation Scripting Guide
- AppleScript Language Guide
- JavaScript for Automation Release Notes
- macOS Automation
Choosing a scripting language
You can script apps using AppleScript or JavaScript by using the Script Editor app located at /Applications/Utilities on your Mac. You can check its help book from its Help menu for information about how to choose a scripting language.
AppleScript
- English-like syntax that’s great at combining verbs and nouns across different apps
- Lots of information and examples on the Internet
- It’s not actually English, which can make writing scripts unintuitive
- It’s cumbersome to write algorithms such as sorting using verbs and nouns
JavaScript
- Great at algorithms and manipulating data, has facilities built-in for things like sorting
- Very few examples on the Internet for controlling apps with JavaScript
- Combining verbs and nouns is simpler with AppleScript
- You’re still writing an OSA script; you’re not writing .js files and can’t use ECMAScript modules or packages
Delegating to other languages
You can use the do shell script
facility to incoporate anything that can be run from the macOS command line, including scripts written in python. A command line script can use /usr/bin/osascript
to run an AppleScript to communicate with Musebox.
You can also import system frameworks such as Foundation to use native macOS APIs directly from AppleScript (the sample AppleScript below for sd-webui uses this).
Musebox’s Scripting Dictionary
You can view Musebox’s full scripting dictionary from Script Editor by using the
Although your media files are represented as file assets
in the scripting dictionary, you’ll perform most actions on media versions
, which are the same items you work with in Musebox’s user interface. A file asset can have mutliple media versions associated with it, corresponding to the versions you make in Musebox.
The scripting dictionary includes examples for how to do some basic tasks, such as making/duplicating media versions and modifying properties.
Tutorial: Specifying items with AppleScript
AppleScript can be tricky because when reading a script, you can’t tell if a statement is using a reference
or a specifier
. This is important when the script runs because most command arguments need to be specifiers, but you may be using a reference instead. When that happens, AppleScript will probably give you an unhelpful error message.
For example, if you have selected multiple items in Musebox and you want to work with the first item, you might try this script,
The problem is that selection
is a property of the current library
that references whatever is currently selected. A reference doesn’t have any items — it points to items.
You can turn a reference into a specifier just by using the get
command,
By using get
, you obtain the actual items the selection property is pointing to, which is a list of media versions. Using item 1
with a list of items works.
Properties and elements
Objects have two categories of attributes, properties and elements. Elements are just what AppleScript calls relationships, like when an item such as an album is related to a set of other items, such as photos.
While properties are usually references, elements can be used as specifiers. If this is confusing, don’t worry — that’s perfectly normal.
For example, this is the scripting definition for the library object,
The statement media version 1 of box 1 of current library
is good because box
is an element. But you have to use media version 1 of (get selected media collection of current library)
because selected media collection
is a property that references a specifier.
When in doubt, adding a get
somewhere might make it work.
Snippets
Most of these snippets assume your script is targeting the current library, for example,
Making boxes
Making a box with a name
Making a box if needed
Making an album inside a folder
Importing
Importing the Finder’s selection into a box
Import by copying files with a subfolder naming preset
This assumes you’ve used the
Metadata
In the scripting dictionary, you can see that media versions have various properties, such as name, file name, rating, flagged, etc, and they also have elements for metadata tags, custom tags, and keywords.
The properties of media versions can be used to filter the media versions you want using a whose
test. However the elements like metadata tags
can’t be used with whose
; you’ll have to loop through the media versions you want to check and collect the ones you want to use in a list.
Finding media versions by properties
Updating properties on items matching a query
Exporting media versions that match a query
Collecting media versions by checking metadata tags
To use a metadata tag you have to know its special name. For example, the “Caption/Description” metadata tag’s name is IPTCCaptionAbstract in AppleScript. The easiest way to find the name of the tag you want to edit is to modify it in Musebox and use a script to get it,
Getting the value of a specific metadata tag
Setting the value of a metadata tag
Setting custom metadata
If Musebox doesn’t have an existing metadata tag for what you want to save, you can just make your own with a custom attribute.
Example: Import Folders as Boxes
Musebox lets you separate how you need to store files from how you want them organized. For example, if you have photos in your home folder and movies on a removable drive, you can put them into the same box in Musebox.
However, you might already have items sorted into folders in the Finder and you want to make boxes for each of them. Instead of importing them one folder at a time using Musebox’s Import window, you can use a script droplet to automate that.
An AppleScript with an open
handler that’s saved as an app is called a droplet. You can drag items onto the app’s icon in the Finder to run the script’s open handler with them.
Ready-to-Use Download
You can download the finished Import Folders as Boxes droplet.
If you want to customize anything (see the notes below), you can make your own droplet from the source code.
Making the Droplet Yourself
- Download the Import Folders as Boxes AppleScript file.
- Open the file using Script Editor.
- Use Script Editor’s
File > Export menu item to save it as an application (select ‘Application’ from the File Format popup button).
Using the Droplet
In the Finder, drag folders that you want to make into boxes onto the droplet’s icon. For each folder you drag onto the icon, the script will make a box using the name of that folder, and then import the folder’s media into the box.
Notes
- It doesn’t make boxes for subfolders, but you can drag multiple folders onto the droplet to make multiple boxes at once
- If a box already exists with the same name, it will just use that instead of making a new one
- It skips items that are already imported, so you can update a box to match the folder’s latest stuff by dragging the folder onto the droplet again
- The script imports RAW+JPEGs together using the JPEG as the master item. If you want different behaviour, just change the
process file pairs using JPEG as master
to use one of the other options in Musebox’s scripting dictionary, likeRAW as master
.
Example: Import Stable Diffusion metadata
Musebox defines Generative AI metadata tags which can store parameters for Stable Diffusion images, but it doesn’t import them due to the wide variety of tools and different metadata formats that are available. However, you can set a custom script action to run during import to automatically save parameters from any generative AI tool you use.
This is an example showing how to save metadata from AUTOMATIC1111’s stable-diffusion-webui into Musebox’s Generative AI metadata fields, as well as into custom fields for other data that Musebox doesn’t define.
Preparation: Saving the PNG Info
The sd-webui saves Stable Diffusion parameters in PNG and JPEG metadata. For JPEG files they’re saved in the Exif user comment field. For PNG files, sd-webui saves a custom PNG text chunk named ‘Parameters’. Musebox won’t import this automatically because it doesn’t have anywhere to put it.
However, if you add the custom attribute ‘Parameters’ to your library (
Note: if you’ve already imported images into your library before making the Parameters custom attribute, you can use select the items that need updating in Musebox and use the
Updating Generative AI metadata during import
-
Download the Process Generative AI Images script and save it as a compiled script (a .scpt file) using Script Editor. We recommend saving it to the Script Menu’s Musebox folder so it’s also available when you control-click items in Musebox (see Musebox’s Help book for details).
-
In Musebox, use the
Metadata > Edit Custom Attributes menu command to create a custom attribute named ‘Parameters’ so Musebox imports them from PNG files. -
In the Import window, use the Script Action popup menu to select the compiled script,
- Click the Import button to start importing your Stable Diffusion images
After adding items to the library, Musebox will run the script giving it the items it imported, which will set values for the Generative AI fields and some custom attribute fields. You can customize metadata displays including the Info inspector and list view columns to see the data,
Need help?
For scripting advice we recommend visiting the forums at MacScripter.net and at Late Night Software (makers of the excellent Script Debugger).
Unfortunately our programmers do not have enough caffine to help debug your scripts. Or they might have too much caffine. But if you find an issue with Musebox’s scripting or have a feature request, we’re more than happy to hear from you!