A way for community creators to offer preset and sound packages to Bitwig users in the same way that official packages are offered. Bitwig currently has support for maintaining a curated list of first-party and chosen-third-party Content, and keeping Users up-to-date with that information by notifying them of changes, allowing install/uninstall/update, and managing all of the details of the synchronization. The same could be offered for community packages.
How this could be achieved:
- Standardizing the Protocols relating to the Packages
- Documenting the Standard and exposing it to the Community (publicly or with a few trusted parties)
- Altering the Bitwig Packages feature to allow multiple Repositories
A potential prototype Protocol which would achieve these needs, and looks to handle what Bitwig already does (aside from Dependencies and compressed/uncompressed size), is shown below. This Manifest could be present at i.e. https://repo.bitwiggers.com/manifest.json
, and a User could add that URL to their Repositories. Given this Response to that URL, Bitwig could show it as a Package and allow installing it.
{
"packages": [
{
"name": "bitwigger's best",
"authors": ["a", "b"],
"externalUrl": "https://repo.bitwiggers.com/bitwiggers-best/about",
"description": "a user-created package",
"updatedAt": 12345,
"iconUrl": "https://repo.bitwiggers.com/bitwiggers-best/icon.png",
"items": [
{
"id": "saxophone",
"sourceUrl": "https://repo.bitwiggers.com/bitwiggers-best/files/saxaphone.bwpreset",
"destination": "presets/Polymer/saxaphone.bwpreset",
"size": 123456,
"sha256": "abcd"
},
{
"id": "meow",
"sourceUrl": "https://repo.bitwiggers.com/bitwiggers-best/files/meow.multisample",
"destination": "multi-samples/meow.multisample",
"size": 123456,
"sha256": "abcd"
}
]
}
]
}
What problem(s) would this feature resolve?
Unless creators are working with Bitwig’s Team, there’s no ideal solution for delivering that Content to Users. Both the Provider and the Consumer must work out a custom/ad-hoc solution.
How does this feature fit in Bitwig as a product?
Bitwig already leverages this feature for their Official/Curated content. The community for Bitwig loves creating and sharing their content with others, so much so that we have multiple platforms outside of Bitwig to try to accomplish this goal. This request would connect a feature that is already working well on Bitwig with the increasing offer of community content that exists, for the benefit of Bitwig users.
Is there already an alternative way to achieve this on Bitwig?
Within Bitwig, no. Everything would be created/managed somewhere else, and there’s a lot of potential there - it’s just that none of it is easy or standard.
For example, Bitwiggers is manual-in and manual-out, or a Compressed Archive could be created and uploaded somewhere else. Both are one-off or ad-hoc situations.
It is also possible to clone a git repository with presets in your Presets folder, but this is a workflow totally external to Bitwig, and rather technical or unfamiliar for music producers in general.
Could it be implemented using Bitwig components or APIs, without Bitwig team’s support?
Not within Bitwig, no, and not using anything that Bitwig provides (outside of a concept of the folder-structure.
Could it be provided by a VST or something else reasonably integrated with Bitwig?
The community could build similar concepts outside of Bitwig. Polarity has tried making his own repositories and Windows programs to keep users up-to-date with his own Presets. A similar solution for Bitwiggers was proposed but not received with high demand from the Users.
Are there other products that offer this feature?
Native Instruments offers infrastructure for Community User Libraries and also the user features to install these packages and jeep them up to date. In this case, it’s a centralized repository with NI’s terms and conditions.