# A plugin profile — machine-readable facts about demucs-rs.
#
# Host this next to your plugin as profile.ttl and it can be read by this
# catalogue and by anything else that speaks RDF. It is yours: edit it, version
# it with the plugin, and it stays correct because you control it.
#
# The subject below is the plugin's homepage, which is what identifies it here.
# If you would rather use your own namespace, change that one IRI and keep the
# foaf:homepage line, so the two can still be joined up.
#
# Terms: https://plugin-universe.com/ns   Guide: https://plugin-universe.com/about/profiles

@prefix trn:  <http://purl.org/stuff/transmissions/> .
@prefix pu:   <http://purl.org/stuff/plugin-universe/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix schema: <https://schema.org/> .

<https://github.com/nikhilunni/demucs-rs>
    a trn:PluginProfile ;
    rdfs:label "demucs-rs" ;
    rdfs:comment "Native Rust implementation of HTDemucs v4 for music source separation. Splits a song into stems (drums, bass, vocals, other) using GPU-accelerated inference, as a native CLI or a DAW plugin (VST3/CLAP on macOS)." ;
    trn:vendor "Nikhil Unni" ;
    foaf:homepage <https://github.com/nikhilunni/demucs-rs> ;
    trn:format trn:VST3, trn:CLAP, trn:Standalone ;
    trn:role trn:AudioEffect ;
    pu:category <http://purl.org/stuff/plugin-universe/category/effect> ;
    pu:supportedPlatform pu:Windows ;
    pu:supportedPlatform pu:MacOS ;
    pu:supportedPlatform pu:Linux ;
    pu:licenceId "Apache-2.0" ;
    schema:downloadUrl <https://github.com/nikhilunni/demucs-rs/releases/download/v0.3.4/Demucs-clap-aarch64-apple-darwin.zip> ;
    schema:downloadUrl <https://github.com/nikhilunni/demucs-rs/releases/download/v0.3.4/Demucs-vst3-aarch64-apple-darwin.zip> ;
    schema:downloadUrl <https://github.com/nikhilunni/demucs-rs/releases/download/v0.3.4/demucs-aarch64-apple-darwin.tar.gz> ;
    schema:downloadUrl <https://github.com/nikhilunni/demucs-rs/releases/download/v0.3.4/demucs-x86_64-pc-windows-msvc.zip> ;
    schema:downloadUrl <https://github.com/nikhilunni/demucs-rs/releases/download/v0.3.4/demucs-x86_64-unknown-linux-gnu.tar.gz> .
