You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.9KB

  1. {
  2. "slug": "TyrannosaurusRu",
  3. "name": "TyrannosaurusRu",
  4. "version": "2.1.0",
  5. "license": "WTFPL",
  6. "brand": "TyrannosaurusRu",
  7. "author": "Ivan Metalnikov",
  8. "authorEmail": "fairplay@gmail.com",
  9. "authorUrl": "https://tyrannosaurus.ru/",
  10. "pluginUrl": "https://github.com/fairplay/vcv-rack-plugins",
  11. "manualUrl": "",
  12. "sourceUrl": "https://github.com/fairplay/vcv-rack-plugins",
  13. "donateUrl": "",
  14. "changelogUrl": "",
  15. "modules": [
  16. {
  17. "slug": "muLooper",
  18. "name": "muLooper",
  19. "description": "Recording sampler for the very short (65536 samples max) loops",
  20. "tags": [
  21. "Sampler",
  22. "Recording",
  23. "Polyphonic"
  24. ]
  25. },
  26. {
  27. "slug": "LogisticScratch",
  28. "name": "LogisticScratch",
  29. "description": "Scratching chaotic oscillator based on https://www.mathematica-journal.com/2013/05/27/using-the-logistic-map-to-generate-scratching-sounds/",
  30. "tags": [
  31. "Oscillator",
  32. "Noise",
  33. "Physical modeling"
  34. ]
  35. },
  36. {
  37. "slug": "LFSR8Poly",
  38. "name": "LFSR8 Poly",
  39. "description": "Fully deterministic sequencer based on 8-bit LFSR capable to produce pseudo-random results",
  40. "tags": [
  41. "Sequencer",
  42. "Polyphonic"
  43. ]
  44. },
  45. {
  46. "slug": "LFSR16Poly",
  47. "name": "LFSR16 Poly",
  48. "description": "16-bit LFSR sequencer with ability to split for two independent registers",
  49. "tags": [
  50. "Sequencer",
  51. "Polyphonic"
  52. ]
  53. },
  54. {
  55. "slug": "Droplets",
  56. "name": "Droplets",
  57. "description": "Sequencer loosely based on the liquid flow in the leaky faucet",
  58. "tags": [
  59. "Sequencer",
  60. "Polyphonic"
  61. ]
  62. },
  63. {
  64. "slug": "ChaosMaps",
  65. "name": "ChaosMaps",
  66. "description": "Sequencer based on the logistic and tent maps",
  67. "tags": [
  68. "Sequencer"
  69. ]
  70. },
  71. {
  72. "slug": "Pluck",
  73. "name": "Pluck",
  74. "description": "Karplus-Strong plucked string implementation",
  75. "tags": [
  76. "Oscillator",
  77. "Physical modeling",
  78. "Polyphonic"
  79. ]
  80. },
  81. {
  82. "slug": "MicroLooper",
  83. "name": "MicroLooper",
  84. "description": "Recording sampler for the very short (16384 samples max) loops. Replaced with muLooper",
  85. "deprecated": true,
  86. "tags": [
  87. "Sampler",
  88. "Recording"
  89. ]
  90. },
  91. {
  92. "slug": "LFSR8",
  93. "name": "LFSR8",
  94. "description": "Fully deterministic sequencer based on 8-bit LFSR capable to produce pseudo-random results. Replaced witg LFSR8Poly",
  95. "deprecated": true,
  96. "tags": [
  97. "Sequencer"
  98. ]
  99. },
  100. {
  101. "slug": "LFSR16",
  102. "name": "LFSR16",
  103. "description": "16-bit LFSR sequencer with ability to split for two independent registers. Replaced witg LFSR16Poly",
  104. "deprecated": true,
  105. "tags": [
  106. "Sequencer"
  107. ]
  108. }
  109. ]
  110. }