1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
|
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:af="http://purl.org/ontology/af/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:event="http://purl.org/NET/c4dm/event.owl#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:vamp="http://purl.org/ontology/vamp/" xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns="file:///work/vamp-svn/website/rdf/vamp.n3">
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<dc:title>Vamp Plugins Ontology</dc:title>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<rdfs:label>Vamp Plugins Ontology</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<rdfs:comment>
Vamp Ontology. This ontology includes the following descriptions:
- OWL description of the Vamp API
- OWL description of the Transform environment necessary to set up the execution of any plugin
This Ontology provides semantics to describe and control Vamp plugins in RDF. Any "RDF-speaker" host is therefore able to
use this ontology to read, set up and execute plugins.
The extracted features are expressed in terms of the Audio Features Ontology: http://purl.org/ontology/af/.
For more information, please visit the Vamp Plugins website: http://www.vamp-plugins.org/
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<foaf:maker>Chris Cannam</foaf:maker>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<foaf:maker>Chris Sutton</foaf:maker>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<foaf:maker>Yves Raimond</foaf:maker>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<foaf:maker>David Pastor Escuredo</foaf:maker>
</rdf:Description>
<rdf:Description rdf:about="file:///work/vamp-svn/website/rdf/vamp.n3">
<dc:date>$Date: 2008/05/21 17:05:11 $</dc:date>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Plugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Plugin">
<rdfs:label>Vamp Plugin</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Plugin">
<rdfs:comment>
A Vamp plugin is an implementation of an audio feature extraction algorithm using the Vamp API.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Plugin">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginLibrary">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginLibrary">
<rdfs:label>Vamp Plugin Library</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginLibrary">
<rdfs:comment>
Library of Vamp Plugins. This may need to include rights.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginLibrary">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Parameter">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Parameter">
<rdfs:label>Vamp Plugin Parameter</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Parameter">
<rdfs:comment>
Descriptor for a plugin parameter. Hosts need to know about the specific type and form of the parameters of a particular plugin for a correct transform setup.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Parameter">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedParameter">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedParameter">
<rdfs:label>Quantized Parameter</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedParameter">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedParameter">
<rdfs:comment>
Descriptor of a parameter that does have quantized values. The property quantize_step is just defined for this subclass and not for the general Parameter.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedParameter">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginOutput">
<rdfs:label>Vamp Plugin output descriptor</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginOutput">
<rdfs:comment>
Descriptor for an output of a plugin. This descriptor provides information that is necessary to correctly interpret the output features. The output type will determine how to read the temporal information of the extracted features and how to manage the burden of ouput data.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginOutput">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedOutput">
<rdfs:label>Quantized Output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedOutput">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedOutput">
<rdfs:comment>
Descriptor of an output that does have quantized values.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/QuantizedOutput">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/KnownExtentsOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/KnownExtentsOutput">
<rdfs:label>Known Extents Output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/KnownExtentsOutput">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/KnownExtentsOutput">
<rdfs:comment>
Descriptor of an output that does have known extents.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/KnownExtentsOutput">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/DenseOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/DenseOutput">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/DenseOutput">
<rdfs:label>Dense output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/DenseOutput">
<rdfs:comment>
Specific output type for data evenly spaced in time, which may be of high volume and which it is usually desirable to represent in a compact form.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/DenseOutput">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SparseOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SparseOutput">
<rdfs:label>Sparse output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SparseOutput">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SparseOutput">
<rdfs:comment>
Specific output type for data that consist of features that require their own individual temporal information.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SparseOutput">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TrackLevelOutput">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TrackLevelOutput">
<rdfs:label>track level output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TrackLevelOutput">
<rdfs:subClassOf rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TrackLevelOutput">
<rdfs:comment>
Specific output type for track level information. The Vamp API does not provide for this sort of output directly, so this will require a "hacky" interpretation of the feature timestamp to establish that it reflects track metadata instead of temporal data.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TrackLevelOutput">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginProgram">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginProgram">
<rdfs:label>Plugin program</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginProgram">
<rdfs:comment>
The program is a predefined context of parameters. We may not need a concept for this and just a property linking a string representing the program name.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/PluginProgram">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Feature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Feature">
<rdfs:label>Vamp Feature</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Feature">
<rdfs:comment>This may be removed mighty soon as we rely on the Audio Features Ontology for this</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Feature">
<vs:term_status>deprecated</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/InputDomain">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/InputDomain">
<rdfs:label>Plugin input domain</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/InputDomain">
<rdfs:comment>
Plugins declare the input domain they require, so the host can convert the input data properly. Hosts using the Vamp SDK PluginAdapter to wrap plugins should see this work done for them automatically - see the Vamp documentation.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/InputDomain">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SampleType">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SampleType">
<rdfs:label>sample type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SampleType">
<rdfs:comment>
The sample type specifies the temporal information of the plugin output. This information should be combined with the output type for a correct interpretation.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/SampleType">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdfs:label>parameter descriptor</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdfs:comment>
Links each parameter descriptor to the plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/ParameterBinding"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdfs:label>output</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdfs:comment>
Links each output type to the plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/output">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdfs:label>available plugin</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdfs:comment>
Available plugins in the library
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginLibrary"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/available_plugin">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:label>plugin identifier</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:comment>
Machine-readable identifier for a Vamp plugin within the scope of its library, or for a plugin descriptor within the scope of the plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginLibrary"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginProgram"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/identifier">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<rdfs:label>plugin name</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<rdfs:comment>
Human-readable identifier for the plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/name">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<rdfs:label>Vamp API version</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<rdfs:comment>
Version of the Vamp API used to implement this plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/vamp_API_version">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdfs:label>input domain</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdfs:comment>
Input domain required by the plugin (time or frequency).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/InputDomain"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/input_domain">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdfs:label>max value</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdfs:comment>
Maximum value of the parameter range
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/KnownExtentsOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/max_value">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdfs:label>min value</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdfs:comment>
Minimum value of the parameter range
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/KnownExtentsOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/min_value">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdfs:label>default value</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdfs:comment>
Default value of the parameter
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/default_value">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdfs:label>quantized step</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdfs:comment>
Quantize step. Only defined for quantized outputs
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/QuantizedOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/QuantizedParameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/quantize_step">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdfs:label>has duration</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdfs:comment>
True if features on this output are known to have durations
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/has_duration">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdfs:label>unit</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdfs:comment>
Unit of the output/parameter. A string type
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/unit">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<rdfs:label>value names</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<rdfs:comment>
List of value names if available
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value_names">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<rdfs:label>fixed bin count</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<rdfs:comment>
Fixed bin count. A boolean type.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/fixed_bin_count">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:label>sample rate</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:comment>
Sample rate of the output if any. Should be read depending on SampleType and Output classes.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<rdfs:label>bin count</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<rdfs:comment>
Number of elements of the bin output. This information is necessary to define the output as belonging to a specific subclass of Plugin Output.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_count">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<rdfs:label>bin names</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<rdfs:comment>
List of bin names if available.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/bin_names">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdfs:label>sample type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdfs:comment>
The sample type specifies the temporal information of the output.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/SampleType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdfs:label>event type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdfs:comment>
Associates a plugin output with its corresponding event type (for example, in the Audio Features ontology).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<rdfs:range rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_event_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdfs:label>feature type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdfs:comment>
Associates a plugin output with the attribute connecting the event to its value data.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<rdfs:range rdf:resource="http://purl.org/NET/c4dm/event.owl#factor"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_feature">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdfs:label>signal type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdfs:comment>
Associates a dense plugin output with its corresponding signal type (for example, in the Audio Features ontology).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/PluginOutput"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<rdfs:range rdf:resource="http://purl.org/ontology/af/Signal"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computes_signal_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TimeDomain">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/InputDomain"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FrequencyDomain">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/InputDomain"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/OneSamplePerStep">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/SampleType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FixedSampleRate">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/SampleType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/VariableSampleRate">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/SampleType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Transform">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Transform">
<rdfs:label>Transform</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Transform">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Transform">
<rdfs:comment>
The Transform defines the environment of any audio processing computation.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/ParameterBinding">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/ParameterBinding">
<rdfs:label>Parameter binding</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/ParameterBinding">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/ParameterBinding">
<rdfs:comment>
Parameter setting used by the plugin transform to set up the plugin.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Configuration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Configuration">
<rdfs:label>Configuration</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Configuration">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Configuration">
<rdfs:comment>
For extension (key/value data provided to DSSI plugins, not relevant to Vamp)
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TransformType">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TransformType">
<rdfs:label>Transform Type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TransformType">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/TransformType">
<rdfs:comment>
Specifies the type of transform. May be feature extraction, effect...
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FeatureExtraction">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/TransformType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FeatureExtraction">
<rdfs:label>Feature Extraction</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FeatureExtraction">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/FeatureExtraction">
<rdfs:comment>
Feature extraction transform. This may be just a subclass of Transform...
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Effect">
<rdf:type rdf:resource="http://purl.org/ontology/vamp/TransformType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Effect">
<rdfs:label>Effect</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Effect">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/Effect">
<rdfs:comment>
Effect transform. This may be just a subclass of Transform...
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdfs:label>plugin</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdfs:comment>
Specifies the sort of plugin in execution. This is an extension to use Transform with other plugin libraries
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/engine">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Plugin"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdfs:label>program</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdfs:comment>
Specifies the program to set the plugin in execution. Here the plugin program matches with the one in the plugin descriptor. There is not descriptor required for the program (just a string), is it?
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/program">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/PluginProgram"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdfs:label>program</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdfs:comment>
Extension for configuration.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/configuration">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Configuration"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdfs:label>parameter</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdfs:comment>
Specifies the parameter to set the plugin in execution.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/parameter_binding">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/ParameterBinding"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdfs:label>step size</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdfs:comment>
Specifies the step size for the framing.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/step_size">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdfs:label>block size</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdfs:comment>
Specifies the block size for the framing.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/block_size">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:label>sample rate</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:comment>
Specifies the sample rate if it is not constant.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/sample_rate">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdfs:label>transform type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdfs:comment>
Specifies the transform type (we could do this by subclassin transform instead of using a property).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/transform_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdfs:label>window type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdfs:comment>
Specifies the window type (they should be individuals and clearly not here).
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/window_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdfs:label>start</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdfs:comment>
Specifies temporal information when processing a data stream.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/start">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdfs:label>start</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdfs:comment>
Specifies temporal information when processing a data stream.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/duration">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdfs:label>summary type</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdfs:comment>
Specifies a summary type to be used (for averaging etc) on transform results.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/summary_type">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdfs:label>value</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<vs:term_status>stable</vs:term_status>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdfs:comment>
Specifies the current value of the parameter.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/value">
<rdfs:domain rdf:resource="http://purl.org/ontology/vamp/ParameterBinding"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdfs:label>computed by</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdfs:comment>
Associates an audio feature with the transform that was used to compute it.
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdfs:domain rdf:resource="http://purl.org/NET/c4dm/event.owl#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdfs:domain rdf:resource="http://purl.org/ontology/af/Signal"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<rdfs:range rdf:resource="http://purl.org/ontology/vamp/Transform"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/ontology/vamp/computed_by">
<vs:term_status>unstable</vs:term_status>
</rdf:Description>
</rdf:RDF>
|