Strudel/post_rock.sh
2026-07-17 16:08:23 +00:00

30 lines
835 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Настройка темпа (85 циклов в минуту)
setcpm(85)
// 1. Тягучий бас (Ми-фригийский, плавное легато)
const bass = chord("e1 f1 c1 b0")
.scale("phrygian")
.s("saw")
.lp(300)
.legato(1)
.gain(0.7)
.room(0.6)
// 2. Эмбиентная гитара (Редкие аккорды в огромном пространстве)
const guitar = chord("[e3,g3,b3] ~ [f3,a3,c4] ~ [c3,e3,g3] ~ [b2,d3,f3] ~")
.scale("phrygian")
.s("sine")
.attack(0.3)
.release(1.5)
.delay(0.5).delayfeedback(0.6)
.room(0.95).sz(0.9)
.gain(0.4)
// 3. Редкие, отдалённые ударные
const drums = stack(
s("bd ~ ~ ~ bd ~ ~ ~").gain(0.6),
s("~ ~ ~ ~ sd ~ ~ ~").delay(0.2).room(0.8).gain(0.3)
)
// Финальный микс
stack(bass, guitar, drums)