{"id":30044762,"url":"https://github.com/plugdata-team/plugdata-plugin-export","last_synced_at":"2025-08-07T06:46:19.306Z","repository":{"id":307360365,"uuid":"1029202975","full_name":"plugdata-team/plugdata-plugin-export","owner":"plugdata-team","description":"Template for plugdata plugin exports","archived":false,"fork":false,"pushed_at":"2025-07-30T22:02:14.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-30T22:14:20.823Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plugdata-team.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"timothyschoen"}},"created_at":"2025-07-30T17:14:27.000Z","updated_at":"2025-07-30T22:02:18.000Z","dependencies_parsed_at":"2025-07-30T22:15:30.150Z","dependency_job_id":"0ece2f80-b14d-4739-bbcb-23618268bc31","html_url":"https://github.com/plugdata-team/plugdata-plugin-export","commit_stats":null,"previous_names":["plugdata-team/plugdata-plugin-export"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/plugdata-team/plugdata-plugin-export","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plugdata-team%2Fplugdata-plugin-export","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plugdata-team%2Fplugdata-plugin-export/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plugdata-team%2Fplugdata-plugin-export/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plugdata-team%2Fplugdata-plugin-export/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plugdata-team","download_url":"https://codeload.github.com/plugdata-team/plugdata-plugin-export/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plugdata-team%2Fplugdata-plugin-export/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269213683,"owners_count":24379499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-07T06:46:14.940Z","updated_at":"2025-08-07T06:46:19.258Z","avatar_url":"https://github.com/plugdata-team.png","language":"Python","funding_links":["https://github.com/sponsors/timothyschoen"],"categories":[],"sub_categories":[],"readme":"# Automated build script for plugdata powered plugins\n\nNote: this is currently still in development, don't use this in production yet!\n\n1. Fork this repository.\n2. Click on the \"Actions\" tab and enable github actions\n3. Add your patch files and plugin definitions to config.json.\n4. Wait for GitHub Actions to complete the build.\n5. Download your VST3 / AU / CLAP / LV2 / Standalone plugins!\n\n\n# Config syntax\n\nExample:\n```\n[\n  {\n    \"name\": \"N-SPEC COMP LITE 2\",\n    \"author\": \"Nasko\",\n    \"path\": \"Plugins/N-SPEC COMP LITE 2.zip\",\n    \"formats\": [\"VST3\", \"AU\", \"LV2\", \"CLAP\"],\n    \"type\": \"fx\",\n    \"version\": \"1.0.0\",\n    \"enable_gem\": false,\n    \"enable_sfizz\": false,\n    \"enable_ffmpeg\": false\n  },\n  {\n    \"name\": \"N-TILT\",\n    \"author\": \"Nasko\",\n    \"path\": \"Plugins/N-TILT.zip\",\n    \"formats\": [\"Standalone\"],\n    \"type\": \"fx\",\n    \"version\": \"1.0.0\",\n    \"enable_gem\": false,\n    \"enable_sfizz\": false,\n    \"enable_ffmpeg\": false\n  }\n]\n```\n\n## Parameter Reference\n\n### Required Fields\n\n| Field     | Type     | Description |\n|-----------|----------|-------------|\n| `name`    | `string` | **Unique name** of the plugin. This is how it will appear in your DAW. \u003cbr\u003e_Note: You cannot load two plugdata plugins with the same name._ |\n| `author`  | `string` | Name of the plugin's creator, displayed inside the DAW. |\n| `path`    | `string` | Path to the patch location within the repository. Can be a **folder** or a **.zip** file. |\n| `formats` | `array`  | List of plugin formats to build. Valid values: `VST3`, `AU`, `CLAP`, `LV2`, `Standalone`. |\n| `type`    | `string` | Type of plugin: either `\"fx\"` for effects or `\"instrument\"` for instruments/synths. |\n---\n\n### Optional Fields\n\n| Field           | Type      | Description |\n|------------------|-----------|-------------|\n| `version`        | `string`  | Plugin version, new versions will not install correctly unless you increment this. \u003cbr\u003e_Default: `1.0.0`_ |\n| `enable_gem`     | `boolean` | Enables experimental [GEM](https://puredata.info/downloads/Gem) support \u003cbr\u003e_Default: `false`_ |\n| `enable_sfizz`   | `boolean` | Enables the `[sfz~]` object for SFZ sample playback. \u003cbr\u003e_Default: `false`_ |\n| `enable_ffmpeg`  | `boolean` | Enables FFmpeg-based audio objects. \u003cbr\u003eRecommended if your patch plays audio files. \u003cbr\u003e_Default: `false`_ |\n\n# Running locally\n\nYou can also run the build script locally instead of through github actions:\n```\npython3 build.py\n```\nYou can use the `--generator` flag to set the project cmake generates. Valid values are `xcode`, `visualstudio` or `ninja` (default).\nAditionally, you can use the `--configure-only` flag if you want to skip the build step.\n\n# Licensing note\nAfter building, the original patch file you used is directly accessible via the “Info” menu in the plugin. This is required to comply with the GPL license (required by both plugdata and the JUCE GPL tier), as your patch could now legally be considered as \"source code\" of the generated plugins.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplugdata-team%2Fplugdata-plugin-export","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplugdata-team%2Fplugdata-plugin-export","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplugdata-team%2Fplugdata-plugin-export/lists"}