-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from haslo/plugin_additions
Plugin additions - coming soon section
- Loading branch information
Showing
10 changed files
with
144 additions
and
25 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import * as React from "react"; | ||
|
||
import {Box, CardMedia, Typography} from "@mui/material"; | ||
|
||
import {PriceStamp} from "./PriceStamp"; | ||
|
||
export function BfgCompressor({plugin_link}) { | ||
return ( | ||
<> | ||
<Box sx={{position: 'relative', marginBottom: '30px'}}> | ||
<PriceStamp | ||
top={-60} | ||
color={'#243667'} | ||
price={null} | ||
/> | ||
</Box> | ||
<Typography variant="h5" color="text.secondary" sx={{marginBottom: '10px'}}> | ||
Extreme multiband upward compression | ||
</Typography> | ||
<Typography variant="body2" color="text.secondary"> | ||
You've heard this sound before. You've seen similar plugins before. This one will add a unique twist to the | ||
"extreme upward compression" game, with added distortion and wavefolding. | ||
<br/><br/> | ||
I'm using some algorithms from DeSTRuKTor here, but add oversampling and generally better DSP (as enabled by | ||
using C++ rather than Java in the background)... 🤓 | ||
</Typography> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import * as React from "react"; | ||
|
||
import {Box, CardMedia, Typography} from "@mui/material"; | ||
|
||
import {PriceStamp} from "./PriceStamp"; | ||
|
||
export function TinyHaas({plugin_link}) { | ||
return ( | ||
<> | ||
<Box sx={{position: 'relative', marginBottom: '30px'}}> | ||
<PriceStamp | ||
top={-60} | ||
color={'#f50057'} | ||
price={null} | ||
/> | ||
</Box> | ||
<Typography variant="h5" color="text.secondary" sx={{marginBottom: '10px'}}> | ||
Like HÄÄSchen, but multiband and VST3 | ||
</Typography> | ||
<Typography variant="body2" color="text.secondary"> | ||
If you don't know what HÄÄSchen is, it's a Voltage Modular module I built a while ago. | ||
It's just a Haas effect, where one of the channels is delayed by a very short delay time | ||
and adds the impression of width. | ||
<br/><br/> | ||
This version will be a bit more ambitious and will add multiband processing (which <em>will</em> lead to | ||
phasing effects, that's the whole point of that) and in-plugin modulation. | ||
</Typography> | ||
</> | ||
); | ||
} |