Packaging of audio / stem files.
A packages consists of a required master track with <prject name>.wav name and optional stem files (*.wav).
If no files are passed, all files found in Export are packed.
Packed archives are saved to Export directory.
# Create package using 'pack.yml':
trackpack pack
# Pack master only
trackpack pack project1.wav stem1.wav stem2.wav
# Pack master and some stems:
trackpack pack project1.wav stem1.wav stem2.wavUse trackpack --help for full usage documentation.
The Yaml configuration uses same format as the CLI arguments, but _ instead of -:
# Required:
name: "project name"
# Optional:
archive_name: "package_archive_name" # Default: Same as required 'name' ('.zip' is optional)
append_date: True # Default: FalseCLI arguments to have higher priority and override file settings.