-
Notifications
You must be signed in to change notification settings - Fork 89
feat: Add 4-Cable Method example preset (#154) #356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
learnerabhinavdwivedi-droid
wants to merge
5
commits into
sudip-mondal-2002:main
Choose a base branch
from
learnerabhinavdwivedi-droid:feat/4-cable-method-preset
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+67
−0
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e560b90
feat: Add 4-Cable Method example preset (#154)
learnerabhinavdwivedi-droid 0a7549c
Update 05_4_Cable_Method.json
learnerabhinavdwivedi-droid 13ab94b
Fix formatting of Reverb to Out line in PRESETS.md
learnerabhinavdwivedi-droid d2f090d
Merge branch 'main' into feat/4-cable-method-preset
learnerabhinavdwivedi-droid 676b33d
Update PRESETS.md
learnerabhinavdwivedi-droid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,26 @@ | ||
| { | ||
| "format_version": 2, | ||
| "presetId": "05_4_Cable_Method", | ||
| "name": "4-Cable Method (4CM)", | ||
| "description": "Standard 4CM routing separating pre-amp effects (dynamics/drive) from post-amp effects (time/modulation).", | ||
| "routing": "graph", | ||
| "nodes": [ | ||
| { "id": "n0", "type": "Input", "x": 0, "y": 250 }, | ||
| { "id": "n1", "type": "Compressor", "x": 200, "y": 250 }, | ||
| { "id": "n2", "type": "Overdrive", "x": 400, "y": 250 }, | ||
| { "id": "n3", "type": "Wah", "x": 600, "y": 250 }, | ||
| { "id": "n4", "type": "AmpSimulator", "x": 800, "y": 250 }, | ||
| { "id": "n5", "type": "Delay", "x": 1000, "y": 250 }, | ||
| { "id": "n6", "type": "Reverb", "x": 1200, "y": 250 }, | ||
| { "id": "n7", "type": "Output", "x": 1400, "y": 250 } | ||
| ], | ||
| "links": [ | ||
| { "src_pin": "n0.out0", "dst_pin": "n1.in0" }, | ||
| { "src_pin": "n1.out0", "dst_pin": "n2.in0" }, | ||
| { "src_pin": "n2.out0", "dst_pin": "n3.in0" }, | ||
| { "src_pin": "n3.out0", "dst_pin": "n4.in0" }, | ||
| { "src_pin": "n4.out0", "dst_pin": "n5.in0" }, | ||
| { "src_pin": "n5.out0", "dst_pin": "n6.in0" }, | ||
| { "src_pin": "n6.out0", "dst_pin": "n7.in0" } | ||
| ] | ||
| } | ||
This file contains hidden or 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,41 @@ | ||
| ## 05. 4-Cable Method (4CM) | ||
|
|
||
| The 4-Cable Method is an industry-standard routing technique that takes advantage of our DAG architecture. It separates your signal chain into two distinct phases: **Pre-Amp** (Front of House) and **Post-Amp** (FX Loop). | ||
|
|
||
| By placing dynamics and drive pedals (Compressor, Overdrive, Wah) *before* the Amp Simulator, you drive the input stage naturally. By placing time-based effects (Delay, Reverb) *after* the Amp Simulator, you ensure your echoes and reflections remain clean and un-muddied by the amp's distortion. | ||
|
|
||
| ### Signal Flow | ||
|
|
||
| ```mermaid | ||
| graph LR | ||
| %% Styling | ||
| classDef io fill:#2d3748,stroke:#4a5568,stroke-width:2px,color:#fff; | ||
| classDef preamp fill:#9b2c2c,stroke:#f56565,stroke-width:2px,color:#fff; | ||
| classDef amp fill:#744210,stroke:#ecc94b,stroke-width:2px,color:#fff; | ||
| classDef fxloop fill:#2b6cb0,stroke:#63b3ed,stroke-width:2px,color:#fff; | ||
|
|
||
| %% Nodes | ||
| In([🎸 Input]):::io | ||
| Out([🔊 Output]):::io | ||
|
|
||
| subgraph Pre-Amp Effects [Pre-Amp / Front of House] | ||
| Comp(Compressor):::preamp | ||
| OD(Overdrive):::preamp | ||
| Wah(Wah-Wah):::preamp | ||
| end | ||
|
|
||
| Amp[Amp Simulator]:::amp | ||
|
|
||
| subgraph FX Loop [Post-Amp / FX Loop] | ||
| Delay(Delay):::fxloop | ||
| Reverb(Reverb):::fxloop | ||
| end | ||
|
|
||
| %% Connections | ||
| In --> Comp | ||
| Comp --> OD | ||
| OD --> Wah | ||
| Wah --> Amp | ||
| Amp --> Delay | ||
| Delay --> Reverb | ||
| Reverb --> Out |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.