diff --git a/_includes/sidebar.html b/_includes/sidebar.html index c7ea55f..a15e2ef 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -7,7 +7,8 @@ 📠Projetos por tipo de track 🎧 Beats Disponíveis 🎼 Projetos - 🔎 Buscas + 🔎 Buscas´ + 🧠 Crie seu projeto â„¹ï¸ Sobre diff --git a/_includes/sidebar_home.html b/_includes/sidebar_home.html index 39682e5..bdda058 100644 --- a/_includes/sidebar_home.html +++ b/_includes/sidebar_home.html @@ -7,6 +7,7 @@ 🎧 Beats Disponíveis 🎼 Projetos Disponíveis 🔎 Buscas + 🧠 Crie seu projeto â„¹ï¸ Sobre diff --git a/_layouts/projetos.html b/_layouts/projetos.html index f86a443..a40af5f 100644 --- a/_layouts/projetos.html +++ b/_layouts/projetos.html @@ -119,8 +119,8 @@ title: "{{ page.file }}"
diff --git a/assets/css/sidebar.css b/assets/css/sidebar.css index 8eb4d39..67d7608 100644 --- a/assets/css/sidebar.css +++ b/assets/css/sidebar.css @@ -6,7 +6,7 @@ background-color: #f4f4f4; padding: 1rem; border-radius: 8px; - box-shadow: 0 2px 5px rgba(0,0,0,0.1); + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); max-width: 100%; box-sizing: border-box; } @@ -40,4 +40,3 @@ padding: 0.3rem 0.6rem; } } - diff --git a/assets/css/sidebar_home.css b/assets/css/sidebar_home.css index e7f1d90..19de719 100644 --- a/assets/css/sidebar_home.css +++ b/assets/css/sidebar_home.css @@ -1,33 +1,32 @@ .sidebar-center { - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - background-color: #f4f4f4; - padding: 2rem 1.5rem; - border-radius: 12px; - box-shadow: 0 0 10px rgba(0,0,0,0.1); - z-index: 1000; - } - - .submenu { - display: flex; - flex-direction: column; - gap: 1rem; - align-items: center; - } - - .submenu a { - text-decoration: none; - color: #333; - font-weight: 500; - padding: 0.5rem 1rem; - border-radius: 6px; - transition: background 0.2s; - white-space: nowrap; - } - - .submenu a:hover { - background-color: #e0e0e0; - } - \ No newline at end of file + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background-color: #f4f4f4; + padding: 2rem 1.5rem; + border-radius: 12px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + z-index: 1000; +} + +.submenu { + display: flex; + flex-direction: column; + gap: 1rem; + align-items: center; +} + +.submenu a { + text-decoration: none; + color: #333; + font-weight: 500; + padding: 0.5rem 1rem; + border-radius: 6px; + transition: background 0.2s; + white-space: nowrap; +} + +.submenu a:hover { + background-color: #e0e0e0; +} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..f261937 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,703 @@ +/* =============================================== */ +/* VÃRIAVEIS GLOBAIS (ROOT) +/* =============================================== */ +:root { + --bg-body: #2d3035; + --bg-toolbar: #3b3f45; + --bg-editor: #33373d; + --border-color: #232529; + --text-light: #c0c0c0; + --text-dark: #888; + --accent-green: #2ecc71; + --accent-red: #d9534f; +} + +/* =============================================== */ +/* ESTILOS GLOBAIS E LAYOUT PRINCIPAL +/* =============================================== */ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + background-color: var(--bg-body); + color: var(--text-light); + padding-left: 300px; + transition: padding-left .3s ease; +} + +body.sidebar-hidden { + padding-left: 0; +} + +body.knob-dragging { + cursor: ns-resize; +} + +.main-content { + padding: 2rem; +} + +/* =============================================== */ +/* BARRA LATERAL (SAMPLE BROWSER) +/* =============================================== */ +.sample-browser { + position: fixed; + top: 0; + left: 0; + width: 300px; + height: 100vh; + background-color: var(--bg-toolbar); + border-right: 2px solid var(--border-color); + z-index: 1500; + display: flex; + flex-direction: column; + transform: translateX(0); + transition: transform .3s ease; +} + +body.sidebar-hidden .sample-browser { + transform: translateX(-100%); +} + +.browser-header { + padding: 15px; + background-color: #2a2c30; + border-bottom: 2px solid var(--border-color); + text-align: center; + font-weight: bold; + color: var(--text-light); +} + +.browser-content { + flex-grow: 1; + overflow-y: auto; + padding: 10px; +} + +.browser-content ul { + list-style: none; + padding-left: 15px; +} + +.browser-content li { + padding: 5px; + cursor: pointer; + border-radius: 3px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + user-select: none; +} + +.browser-content li:hover { + background-color: var(--bg-editor); +} + +.browser-content li i { + margin-right: 8px; + width: 12px; + color: var(--text-dark); + transition: transform .2s; +} + +.browser-content li.directory > ul { + display: none; +} + +.browser-content li.directory.open > ul { + display: block; +} + +.browser-content li.directory.open > .fa-folder { + transform: rotate(90deg); +} + +#sidebar-toggle { + position: fixed; + top: 60px; + left: 305px; + z-index: 1400; + background-color: var(--bg-toolbar); + border: 1px solid var(--border-color); + color: var(--text-light); + width: 25px; + height: 40px; + cursor: pointer; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + transition: left .3s ease; + display: flex; + align-items: center; + justify-content: center; +} + +body.sidebar-hidden #sidebar-toggle { + left: 5px; +} + +/* =============================================== */ +/* BARRA DE FERRAMENTAS GLOBAL +/* =============================================== */ +.global-toolbar { + padding: 8px 15px; + position: fixed; + top: 0; + /* Removido width 100% para se adaptar ao padding do body */ + left: 300px; + right: 0; + z-index: 1000; + display: flex; + align-items: center; + gap: 20px; + background-color: var(--bg-toolbar); + border-bottom: 2px solid var(--border-color); + transition: left .3s ease; +} + +body.sidebar-hidden .global-toolbar { + left: 0; +} + + +/* =============================================== */ +/* EDITOR DE BATIDAS (BEAT EDITOR) +/* =============================================== */ +.beat-editor { + background-color: var(--bg-body); + border: 1px solid var(--border-color); + width: 100%; + max-width: 900px; + margin: auto; + box-shadow: 0 5px 15px rgba(0, 0, 0, .3); + border-radius: 4px; + overflow: hidden; +} + +.editor-header { + background-color: var(--bg-toolbar); + padding: 4px 10px; + font-size: .8rem; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid var(--border-color); +} + +.window-controls i { + margin-left: 12px; + cursor: pointer; +} + +.editor-toolbar { + background-color: var(--bg-toolbar); + padding: 5px 10px; + display: flex; + align-items: center; + gap: 15px; + border-bottom: 2px solid var(--border-color); +} + +.editor-toolbar i { + cursor: pointer; + padding: 5px; + border-radius: 3px; +} + +.editor-toolbar i.enabled { + background-color: var(--bg-body); + box-shadow: inset 0 0 2px #000; +} + +.pattern-selector { + background-color: var(--bg-body); + padding: 5px 15px; + border: 1px solid var(--border-color); + flex-grow: 1; + font-size: .9rem; + border-radius: 2px; +} + +/* =============================================== */ +/* FAIXAS (TRACK LANES) E SEQUENCIADOR +/* =============================================== */ +.track-lane { + display: flex; + align-items: center; + padding: 8px 10px; + background-color: var(--bg-editor); + border: 2px dashed transparent; + transition: border-color 0.2s; +} + +.track-lane.drag-over { + border-color: var(--accent-green); +} + +.track-info { + display: flex; + align-items: center; + gap: 8px; + width: 180px; + flex-shrink: 0; +} + +.track-info .fa-gear { + font-size: 1.2rem; + cursor: pointer; +} + +.track-mute { + width: 25px; + height: 12px; + background-color: var(--accent-green); + border-radius: 6px; + cursor: pointer; + border: 1px solid var(--border-color); + box-shadow: inset 0 0 2px #000; +} + +.track-name { + color: var(--accent-red); + font-weight: 700; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.track-controls { + display: flex; + gap: 5px; + margin: 0 10px; + padding-left: 10px; + border-left: 1px solid var(--bg-toolbar); +} + +.knob-container { + text-align: center; + font-size: .7rem; + color: var(--text-dark); +} + +.knob { + width: 28px; + height: 28px; + background-color: var(--bg-toolbar); + border-radius: 50%; + border: 1px solid var(--border-color); + margin-bottom: 2px; + cursor: grab; + box-shadow: inset 0 0 4px #222; + position: relative; +} + +.knob:active { + cursor: grabbing; +} + +.knob-indicator { + width: 2px; + height: 8px; + background-color: var(--text-light); + position: absolute; + top: 2px; + left: 50%; + transform-origin: bottom center; + transform: translateX(-50%) rotate(0deg); + border-radius: 1px; +} + +.step-sequencer { + display: flex; + flex-grow: 1; + gap: 4px; + overflow-x: auto; + padding-bottom: 8px; +} + +.step-sequencer::-webkit-scrollbar { + height: 8px; +} + +.step-sequencer::-webkit-scrollbar-track { + background: var(--border-color); + border-radius: 4px; +} + +.step-sequencer::-webkit-scrollbar-thumb { + background: var(--bg-toolbar); + border-radius: 4px; +} + +.step-sequencer::-webkit-scrollbar-thumb:hover { + background: #555; +} + +.step-wrapper { + position: relative; +} + +.step-marker { + position: absolute; + top: -16px; + left: 1px; + font-size: .6rem; + color: var(--text-dark); +} + +.step { + width: 28px; + aspect-ratio: 1 / 1; + background-color: #2a2a2a; + border: 1px solid #4a4a4a; + border-radius: 2px; + cursor: pointer; + transition: background-color .1s, transform 0.1s; + flex-shrink: 0; /* Impede que os steps encolham */ +} + +.step-dark { + background-color: #1e1e1e; +} + +.step:hover { + background-color: #555; + border-color: #888; +} + +.step.active { + background-color: var(--accent-green); + border: 1px solid #fff; + box-shadow: 0 0 8px var(--accent-green); +} + +.step.playing { + transform: scale(1.1); + box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.8); +} + +/* =============================================== */ +/* CONTROLES E INPUTS +/* =============================================== */ +.interactive-input-container { + display: flex; + align-items: center; + justify-content: center; + gap: 4px; +} + +.compasso-group { + display: flex; + align-items: center; + gap: 4px; +} + +.value-input { + background: 0 0; + border: 0; + outline: 0; + color: var(--accent-green); + font-weight: 700; + font-size: 1.4rem; + font-family: Courier New, Courier, monospace; + text-align: center; + padding: 0; + width: 55px; +} + +.compasso-input { + width: 25px; +} + +.compasso-separator { + color: var(--accent-green); + font-weight: 700; + font-size: 1.4rem; + font-family: Courier New, Courier, monospace; + margin: 0 2px; +} + +.value-input::-webkit-outer-spin-button, +.value-input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} + +.value-input[type=number] { + -moz-appearance: textfield; +} + +.adjust-btn { + background: 0 0; + border: 0; + color: var(--text-dark); + font-size: 1rem; + font-weight: 700; + cursor: pointer; + padding: 0 5px; + transition: color .2s; + line-height: 1; +} + +.adjust-btn:hover { + color: #fff; +} + +.control-group { + display: flex; + align-items: center; + gap: 15px; + padding: 0 10px; +} + +.control-group i { + font-size: 1.2rem; + cursor: pointer; + color: var(--text-light); + transition: color .2s; +} + +.control-group i:hover { + color: #fff; +} + +.fa-play, +.fa-pause { + color: var(--accent-green) !important; +} + +.divider { + width: 1px; + height: 25px; + background-color: var(--border-color); +} + +.info-display-group { + display: flex; + align-items: center; + gap: 5px; +} + +.info-display { + background-color: #1a1c1e; + padding: 5px 8px; + border-radius: 3px; + text-align: center; +} + +.info-display .label { + color: var(--text-dark); + font-size: .6rem; + text-transform: uppercase; +} + +.spacer { + flex-grow: 1; +} + +#metronome-btn { + background: 0 0; + border: 1px solid var(--text-dark); + color: var(--accent-green); + font-family: inherit; + font-weight: 700; + font-size: .8rem; + padding: 5px 10px; + border-radius: 3px; + cursor: pointer; + transition: all .2s; +} + +#metronome-btn:hover { + border-color: var(--text-light); + background-color: var(--bg-editor); +} + +#metronome-btn.active { + background-color: var(--accent-green); + color: var(--bg-body); + border-color: var(--accent-green); +} + +/* =============================================== */ +/* MODAL (CAIXA DE DIÃLOGO) +/* =============================================== */ +.modal-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.7); + z-index: 2000; + display: flex; + justify-content: center; + align-items: center; + visibility: hidden; + opacity: 0; + transition: visibility 0s 0.3s, opacity 0.3s; +} + +.modal-overlay.visible { + visibility: visible; + opacity: 1; + transition: visibility 0s, opacity 0.3s; +} + +.modal-content { + background-color: var(--bg-body); + padding: 1.5rem 2rem; + border-radius: 6px; + border: 1px solid var(--border-color); + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); + width: 100%; + max-width: 500px; + position: relative; +} + +.modal-close { + position: absolute; + top: 10px; + right: 15px; + font-size: 1.5rem; + color: var(--text-dark); + cursor: pointer; + border: none; + background: none; +} + +.modal-close:hover { + color: var(--text-light); +} + +.modal-title { + margin-top: 0; + margin-bottom: 1.5rem; + color: var(--text-light); + text-align: center; +} + +.modal-section { + margin-bottom: 1.5rem; +} + +.modal-section h3 { + margin-top: 0; + margin-bottom: 0.8rem; + border-bottom: 1px solid var(--bg-toolbar); + padding-bottom: 0.5rem; +} + +.modal-button { + background-color: var(--bg-toolbar); + color: var(--text-light); + border: 1px solid var(--border-color); + padding: 0.8rem 1.5rem; + border-radius: 4px; + cursor: pointer; + font-size: 1rem; + transition: background-color 0.2s, border-color 0.2s; + width: 100%; +} + +.modal-button:hover { + background-color: #4a4f57; + border-color: #333; +} + +#server-projects-list .project-item { + background-color: var(--bg-editor); + padding: 10px 15px; + border-radius: 4px; + margin-bottom: 8px; + cursor: pointer; + transition: background-color 0.2s; +} + +#server-projects-list .project-item:hover { + background-color: var(--bg-body); + color: #fff; +} + + +/* =============================================== */ +/* ESTILOS RESPONSIVOS +/* =============================================== */ + +/* Para telas menores como laptops pequenos e tablets grandes */ +@media (max-width: 992px) { + .main-content { + padding: 1.5rem; /* Reduz o padding */ + } + + .beat-editor { + max-width: 100%; /* Permite que o editor use mais espaço */ + } +} + + +/* Para tablets e celulares */ +@media (max-width: 768px) { + body { + padding-left: 0 !important; /* Remove o padding fixo, !important para garantir */ + } + + .main-content { + padding: 1rem; + } + + /* A sidebar agora se sobrepõe ao conteúdo e fica escondida por padrão */ + .sample-browser { + transform: translateX(-100%); + width: 280px; /* Pode diminuir um pouco a largura */ + } + + /* Quando a sidebar for aberta, ela volta a posição original */ + body:not(.sidebar-hidden) .sample-browser { + transform: translateX(0); + } + + #sidebar-toggle { + left: 5px; /* Posição fixa do botão */ + } + + /* A toolbar global agora ocupa 100% da largura */ + .global-toolbar { + left: 0; + padding-left: 45px; /* Espaço para o botão do menu */ + } + + /* Quebra a linha dos itens da toolbar se não couberem */ + .editor-toolbar, + .control-group { + flex-wrap: wrap; + gap: 10px; + } + + /* Reorganiza a track para um layout vertical */ + .track-lane { + flex-direction: column; + align-items: stretch; /* Itens ocupam 100% da largura */ + gap: 15px; + padding: 15px; + } + + .track-info, + .track-controls { + width: 100%; + } + + .track-controls { + border-left: none; + padding-left: 0; + justify-content: space-around; /* Distribui melhor os knobs */ + } + + .step-sequencer { + width: 100%; + } + + /* Ajusta o modal para telas pequenas */ + .modal-content { + max-width: 90vw; + padding: 1.5rem 1rem; + } +} \ No newline at end of file diff --git a/assets/js/creations/audio.js b/assets/js/creations/audio.js new file mode 100644 index 0000000..9cdd9c9 --- /dev/null +++ b/assets/js/creations/audio.js @@ -0,0 +1,134 @@ +//TODO ver Tone.js + +// js/audio.js +import { appState } from "./state.js"; +import { highlightStep } from "./ui.js"; +import { getTotalSteps } from "./utils.js"; + +let audioContext; +let mainGainNode; + +export function getAudioContext() { + return audioContext; +} +export function getMainGainNode() { + return mainGainNode; +} + +export function initializeAudioContext() { + if (!audioContext) { + audioContext = new (window.AudioContext || window.webkitAudioContext)(); + mainGainNode = audioContext.createGain(); + mainGainNode.connect(audioContext.destination); + } + if (audioContext.state === "suspended") { + audioContext.resume(); + } +} + +export function playMetronomeSound(isDownbeat) { + initializeAudioContext(); + const oscillator = audioContext.createOscillator(); + const gainNode = audioContext.createGain(); + const frequency = isDownbeat ? 1000 : 800; + oscillator.frequency.setValueAtTime(frequency, audioContext.currentTime); + oscillator.type = "sine"; + gainNode.gain.setValueAtTime(1, audioContext.currentTime); + gainNode.gain.exponentialRampToValueAtTime( + 0.00001, + audioContext.currentTime + 0.05 + ); + oscillator.connect(gainNode); + gainNode.connect(audioContext.destination); + oscillator.start(audioContext.currentTime); + oscillator.stop(audioContext.currentTime + 0.05); +} + +export function playSample(filePath, trackId) { + initializeAudioContext(); + if (!filePath) return; + + const track = trackId ? appState.tracks.find((t) => t.id == trackId) : null; + const audio = new Audio(filePath); + const source = audioContext.createMediaElementSource(audio); + + if (track && track.gainNode) { + source.connect(track.gainNode); + } else { + source.connect(mainGainNode); + } + + audio.play(); +} + +function tick() { + const totalSteps = getTotalSteps(); + if (totalSteps === 0) { + stopPlayback(); + return; + } + const lastStepIndex = + appState.currentStep === 0 ? totalSteps - 1 : appState.currentStep - 1; + highlightStep(lastStepIndex, false); + + if (appState.metronomeEnabled) { + const noteValue = + parseInt(document.getElementById("compasso-b-input").value, 10) || 4; + const stepsPerBeat = 16 / noteValue; + if (appState.currentStep % stepsPerBeat === 0) { + playMetronomeSound(appState.currentStep === 0); + } + } + + appState.tracks.forEach((track) => { + if (track.steps[appState.currentStep] && track.samplePath) { + playSample(track.samplePath, track.id); + } + }); + + highlightStep(appState.currentStep, true); + appState.currentStep = (appState.currentStep + 1) % totalSteps; +} + +export function startPlayback() { + if (appState.isPlaying || appState.tracks.length === 0) return; + initializeAudioContext(); + const bpm = parseInt(document.getElementById("bpm-input").value, 10) || 120; + const stepInterval = (60 * 1000) / (bpm * 4); + + if (appState.playbackIntervalId) clearInterval(appState.playbackIntervalId); + + appState.isPlaying = true; + document.getElementById("play-btn").classList.remove("fa-play"); + document.getElementById("play-btn").classList.add("fa-pause"); + + tick(); + appState.playbackIntervalId = setInterval(tick, stepInterval); +} + +export function stopPlayback() { + clearInterval(appState.playbackIntervalId); + appState.playbackIntervalId = null; + appState.isPlaying = false; + highlightStep(appState.currentStep - 1, false); + appState.currentStep = 0; + document.getElementById("play-btn").classList.remove("fa-pause"); + document.getElementById("play-btn").classList.add("fa-play"); +} + +export function rewindPlayback() { + appState.currentStep = 0; + if (!appState.isPlaying) { + document + .querySelectorAll(".step.playing") + .forEach((s) => s.classList.remove("playing")); + } +} + +export function togglePlayback() { + if (appState.isPlaying) { + stopPlayback(); + } else { + startPlayback(); + } +} diff --git a/assets/js/creations/config.js b/assets/js/creations/config.js new file mode 100644 index 0000000..4b0ef63 --- /dev/null +++ b/assets/js/creations/config.js @@ -0,0 +1,9 @@ +// js/config.js + +// Constantes usadas para o cálculo de posição de notas no arquivo .mmp +export const TICKS_PER_BAR = 192; +export const NOTE_LENGTH = 12; + +// Constantes para os valores padrão dos knobs +export const DEFAULT_VOLUME = 0.8; +export const DEFAULT_PAN = 0.0; diff --git a/assets/js/creations/file.js b/assets/js/creations/file.js new file mode 100644 index 0000000..d9d924d --- /dev/null +++ b/assets/js/creations/file.js @@ -0,0 +1,243 @@ +// js/file.js +import { appState } from "./state.js"; +import { getTotalSteps } from "./utils.js"; +import { renderApp } from "./ui.js"; +import { NOTE_LENGTH, TICKS_PER_BAR } from "./config.js"; +import { + initializeAudioContext, + getAudioContext, + getMainGainNode, +} from "./audio.js"; + +export async function handleFileLoad(file) { + let xmlContent = ""; + try { + if (file.name.toLowerCase().endsWith(".mmpz")) { + const jszip = new JSZip(); + const zip = await jszip.loadAsync(file); + const projectFile = Object.keys(zip.files).find((name) => + name.toLowerCase().endsWith(".mmp") + ); + if (!projectFile) + throw new Error( + "Não foi possível encontrar um arquivo .mmp dentro do .mmpz" + ); + xmlContent = await zip.files[projectFile].async("string"); + } else { + xmlContent = await file.text(); + } + parseMmpContent(xmlContent); + } catch (error) { + console.error("Erro ao carregar o projeto:", error); + alert(`Erro ao carregar projeto: ${error.message}`); + } +} + +export function parseMmpContent(xmlString) { + initializeAudioContext(); + const parser = new DOMParser(); + const xmlDoc = parser.parseFromString(xmlString, "application/xml"); + + appState.originalXmlDoc = xmlDoc; + const newTracks = []; + + const head = xmlDoc.querySelector("head"); + if (head) { + document.getElementById("bpm-input").value = + head.getAttribute("bpm") || 140; + document.getElementById("compasso-a-input").value = + head.getAttribute("timesig_numerator") || 4; + document.getElementById("compasso-b-input").value = + head.getAttribute("timesig_denominator") || 4; + } + const sampleTrackElements = xmlDoc.querySelectorAll( + 'instrument[name="audiofileprocessor"]' + ); + sampleTrackElements.forEach((instrumentNode) => { + const afpNode = instrumentNode.querySelector("audiofileprocessor"); + const instrumentTrackNode = instrumentNode.parentElement; + const trackNode = instrumentTrackNode.parentElement; + if (!afpNode || !instrumentTrackNode || !trackNode) return; + + const audioContext = getAudioContext(); + const mainGainNode = getMainGainNode(); + const totalSteps = parseInt( + trackNode.querySelector("pattern")?.getAttribute("steps") || + getTotalSteps(), + 10 + ); + const newSteps = new Array(totalSteps).fill(false); + const ticksPerStep = totalSteps > 0 ? TICKS_PER_BAR / totalSteps : 0; + + trackNode.querySelectorAll("pattern note").forEach((noteNode) => { + const pos = parseInt(noteNode.getAttribute("pos"), 10); + const stepIndex = Math.round(pos / ticksPerStep); + if (stepIndex < totalSteps) { + newSteps[stepIndex] = true; + } + }); + const newTrack = { + id: Date.now() + Math.random(), + name: + afpNode.getAttribute("src").split("/").pop() || + trackNode.getAttribute("name"), + samplePath: `samples/${afpNode.getAttribute("src")}`, + steps: newSteps, + volume: parseFloat(instrumentTrackNode.getAttribute("vol")) / 100, + pan: parseFloat(instrumentTrackNode.getAttribute("pan")) / 100, + gainNode: audioContext.createGain(), + pannerNode: audioContext.createStereoPanner(), + }; + newTrack.gainNode.connect(newTrack.pannerNode); + newTrack.pannerNode.connect(mainGainNode); + newTrack.gainNode.gain.value = newTrack.volume; + newTrack.pannerNode.pan.value = newTrack.pan; + newTracks.push(newTrack); + }); + appState.tracks = newTracks; + renderApp(); + console.log("Projeto carregado com sucesso!", appState); +} + +export function generateMmpFile() { + if (appState.originalXmlDoc) { + modifyAndSaveExistingMmp(); + } else { + generateNewMmp(); + } +} + +function generateNewMmp() { + console.log("Gerando novo arquivo .mmp do zero..."); + const bpm = document.getElementById("bpm-input").value; + const sig_num = document.getElementById("compasso-a-input").value; + const sig_den = document.getElementById("compasso-b-input").value; + const tracksXml = appState.tracks + .map((track) => createTrackXml(track)) + .join(""); + + const mmpContent = ` + + + + + + + + + ${tracksXml} + + + + + + + + + +

Feito com MMPCreator no https://alice.ufsj.edu.br/MMPSearch/creator

+]]>
+
+
`; + downloadFile(mmpContent, "novo_projeto.mmp"); +} + +function modifyAndSaveExistingMmp() { + console.log("Modificando arquivo .mmp existente..."); + const xmlDoc = appState.originalXmlDoc.cloneNode(true); + const head = xmlDoc.querySelector("head"); + if (head) { + head.setAttribute("bpm", document.getElementById("bpm-input").value); + head.setAttribute( + "timesig_numerator", + document.getElementById("compasso-a-input").value + ); + head.setAttribute( + "timesig_denominator", + document.getElementById("compasso-b-input").value + ); + } + const bbTrackContainer = xmlDoc.querySelector("bbtrack > trackcontainer"); + if (bbTrackContainer) { + const oldSampleTracks = bbTrackContainer.querySelectorAll( + 'instrument[name="audiofileprocessor"]' + ); + oldSampleTracks.forEach((node) => node.closest("track").remove()); + const tracksXml = appState.tracks + .map((track) => createTrackXml(track)) + .join(""); + const tempDoc = new DOMParser().parseFromString( + `${tracksXml}`, + "application/xml" + ); + Array.from(tempDoc.documentElement.children).forEach((newTrackNode) => { + bbTrackContainer.appendChild(newTrackNode); + }); + } + + const serializer = new XMLSerializer(); + const mmpContent = serializer.serializeToString(xmlDoc); + downloadFile(mmpContent, "projeto_editado.mmp"); +} + +function createTrackXml(track) { + if (!track.samplePath) return ""; + const totalSteps = track.steps.length || getTotalSteps(); + const ticksPerStep = totalSteps > 0 ? TICKS_PER_BAR / totalSteps : 0; + const lmmsVolume = Math.round(track.volume * 100); + const lmmsPan = Math.round(track.pan * 100); + const sampleSrc = track.samplePath.replace("samples/", ""); + const notesXml = track.steps + .map((isActive, index) => { + if (isActive) { + const notePos = Math.round(index * ticksPerStep); + return ``; + } + return ""; + }) + .join("\n "); + return ` + + + + + + + + + ${notesXml} + + `; +} + +function downloadFile(content, fileName) { + const blob = new Blob([content], { type: "application/xml;charset=utf-8" }); + const url = URL.createObjectURL(blob); + const a = document.createElement("a"); + a.href = url; + a.download = fileName; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + URL.revokeObjectURL(url); +} + +// (ALTERADO) Adiciona export na frente da função +export async function loadProjectFromServer(fileName) { + try { + const response = await fetch(`mmp/${fileName}`); + if (!response.ok) + throw new Error(`Não foi possível carregar o arquivo ${fileName}`); + const xmlContent = await response.text(); + parseMmpContent(xmlContent); + // Retorna true em caso de sucesso + return true; + } catch (error) { + console.error("Erro ao carregar projeto do servidor:", error); + alert(`Erro ao carregar projeto: ${error.message}`); + // Retorna false em caso de falha + return false; + } +} diff --git a/assets/js/creations/main.js b/assets/js/creations/main.js new file mode 100644 index 0000000..65634ab --- /dev/null +++ b/assets/js/creations/main.js @@ -0,0 +1,121 @@ +// js/main.js +import { + appState, + addTrackToState, + removeLastTrackFromState, +} from "./state.js"; +import { + togglePlayback, + stopPlayback, + rewindPlayback, + initializeAudioContext, +} from "./audio.js"; +import { handleFileLoad, generateMmpFile } from "./file.js"; +import { + renderApp, + redrawSequencer, + loadAndRenderSampleBrowser, + showOpenProjectModal, + closeOpenProjectModal, +} from "./ui.js"; +import { adjustValue, enforceNumericInput } from "./utils.js"; + +// --- INICIALIZAÇÃO E EVENTOS FINAIS --- +document.addEventListener("DOMContentLoaded", () => { + const newProjectBtn = document.getElementById("new-project-btn"); + const openMmpBtn = document.getElementById("open-mmp-btn"); + const saveMmpBtn = document.getElementById("save-mmp-btn"); + const addInstrumentBtn = document.getElementById("add-instrument-btn"); + const removeInstrumentBtn = document.getElementById("remove-instrument-btn"); + const playBtn = document.getElementById("play-btn"); + const stopBtn = document.getElementById("stop-btn"); + const rewindBtn = document.getElementById("rewind-btn"); + const metronomeBtn = document.getElementById("metronome-btn"); + const mmpFileInput = document.getElementById("mmp-file-input"); + const openProjectModal = document.getElementById("open-project-modal"); + const openModalCloseBtn = document.getElementById("open-modal-close-btn"); + const loadFromComputerBtn = document.getElementById("load-from-computer-btn"); + const sidebarToggle = document.getElementById("sidebar-toggle"); + + newProjectBtn.addEventListener("click", () => { + if ( + appState.tracks.length > 0 && + !confirm("Você tem certeza? Alterações não salvas serão perdidas.") + ) + return; + Object.assign(appState, { + tracks: [], + isPlaying: false, + playbackIntervalId: null, + currentStep: 0, + metronomeEnabled: false, + originalXmlDoc: null, + }); + renderApp(); + }); + + openMmpBtn.addEventListener("click", showOpenProjectModal); + loadFromComputerBtn.addEventListener("click", () => mmpFileInput.click()); + mmpFileInput.addEventListener("change", (event) => { + const file = event.target.files[0]; + if (file) { + handleFileLoad(file); + closeOpenProjectModal(); + } + }); + saveMmpBtn.addEventListener("click", generateMmpFile); + addInstrumentBtn.addEventListener("click", addTrackToState); + removeInstrumentBtn.addEventListener("click", removeLastTrackFromState); + playBtn.addEventListener("click", togglePlayback); + stopBtn.addEventListener("click", stopPlayback); + rewindBtn.addEventListener("click", rewindPlayback); + metronomeBtn.addEventListener("click", () => { + initializeAudioContext(); + appState.metronomeEnabled = !appState.metronomeEnabled; + metronomeBtn.classList.toggle("active", appState.metronomeEnabled); + }); + openModalCloseBtn.addEventListener("click", closeOpenProjectModal); + openProjectModal.addEventListener("click", (e) => { + if (e.target === openProjectModal) closeOpenProjectModal(); + }); + sidebarToggle.addEventListener("click", () => { + document.body.classList.toggle("sidebar-hidden"); + const icon = sidebarToggle.querySelector("i"); + icon.className = document.body.classList.contains("sidebar-hidden") + ? "fa-solid fa-caret-right" + : "fa-solid fa-caret-left"; + }); + + const inputs = document.querySelectorAll(".value-input"); + inputs.forEach((input) => { + input.addEventListener("input", (event) => { + enforceNumericInput(event); + if (appState.isPlaying && event.target.id.startsWith("compasso-")) { + stopPlayback(); + } + if (event.target.id.startsWith("compasso-")) { + redrawSequencer(); + } + }); + input.addEventListener("wheel", (event) => { + event.preventDefault(); + const step = event.deltaY < 0 ? 1 : -1; + adjustValue(event.target, step); + }); + }); + + const buttons = document.querySelectorAll(".adjust-btn"); + buttons.forEach((button) => { + button.addEventListener("click", () => { + const targetId = button.dataset.target + "-input"; + const targetInput = document.getElementById(targetId); + if (targetInput) { + adjustValue(targetInput, step); + } + }); + }); + + // Inicia a aplicação + loadAndRenderSampleBrowser(); + renderApp(); +}); diff --git a/assets/js/creations/state.js b/assets/js/creations/state.js new file mode 100644 index 0000000..c58a477 --- /dev/null +++ b/assets/js/creations/state.js @@ -0,0 +1,90 @@ +// js/state.js +import { DEFAULT_VOLUME, DEFAULT_PAN } from "./config.js"; +import { + initializeAudioContext, + getAudioContext, + getMainGainNode, +} from "./audio.js"; +import { renderApp } from "./ui.js"; + +// O "cérebro" da aplicação +export let appState = { + tracks: [], + isPlaying: false, + playbackIntervalId: null, + currentStep: 0, + metronomeEnabled: false, + originalXmlDoc: null, +}; + +export function addTrackToState() { + initializeAudioContext(); + const audioContext = getAudioContext(); + const mainGainNode = getMainGainNode(); + + const newTrack = { + id: Date.now(), + name: "novo instrumento", + samplePath: null, + steps: [], + volume: DEFAULT_VOLUME, + pan: DEFAULT_PAN, + gainNode: audioContext.createGain(), + pannerNode: audioContext.createStereoPanner(), + }; + newTrack.gainNode.connect(newTrack.pannerNode); + newTrack.pannerNode.connect(mainGainNode); + newTrack.gainNode.gain.value = newTrack.volume; + newTrack.pannerNode.pan.value = newTrack.pan; + + appState.tracks.push(newTrack); + renderApp(); +} + +export function removeLastTrackFromState() { + appState.tracks.pop(); + renderApp(); +} + +export function updateTrackSample(trackId, samplePath) { + const track = appState.tracks.find((t) => t.id == trackId); + if (track) { + track.samplePath = samplePath; + track.name = samplePath.split("/").pop(); + } + renderApp(); +} + +export function toggleStepState(trackId, stepIndex) { + const track = appState.tracks.find((t) => t.id == trackId); + if (track) { + track.steps[stepIndex] = !track.steps[stepIndex]; + } +} + +export function updateTrackVolume(trackId, volume) { + const track = appState.tracks.find((t) => t.id == trackId); + const audioContext = getAudioContext(); + if (track) { + const clampedVolume = Math.max(0, Math.min(1.5, volume)); + track.volume = clampedVolume; + if (track.gainNode) { + track.gainNode.gain.setValueAtTime( + clampedVolume, + audioContext.currentTime + ); + } + } +} + +export function updateTrackPan(trackId, pan) { + const track = appState.tracks.find((t) => t.id == trackId); + const audioContext = getAudioContext(); + if (track) { + const clampedPan = Math.max(-1, Math.min(1, pan)); + track.pan = clampedPan; + if (track.pannerNode) { + track.pannerNode.pan.setValueAtTime(clampedPan, audioContext.currentTime); + } + } +} diff --git a/assets/js/creations/ui.js b/assets/js/creations/ui.js new file mode 100644 index 0000000..3ed6ecd --- /dev/null +++ b/assets/js/creations/ui.js @@ -0,0 +1,319 @@ +// js/ui.js +import { + appState, + toggleStepState, + updateTrackSample, + updateTrackVolume, + updateTrackPan, +} from "./state.js"; +import { playSample } from "./audio.js"; +import { getTotalSteps } from "./utils.js"; +import { loadProjectFromServer } from "./file.js"; // (CORREÇÃO) Importa a função que faltava + +// RENDERIZAÇÃO PRINCIPAL +export function renderApp() { + const trackContainer = document.getElementById("track-container"); + trackContainer.innerHTML = ""; + appState.tracks.forEach((trackData) => { + const trackLane = document.createElement("div"); + trackLane.className = "track-lane"; + trackLane.dataset.trackId = trackData.id; + + trackLane.innerHTML = ` +
${trackData.name}
+
+
+
+
+
+ VOL +
+
+
+
+
+ PAN +
+
+
+ `; + + trackLane.addEventListener("dragover", (e) => { + e.preventDefault(); + trackLane.classList.add("drag-over"); + }); + trackLane.addEventListener("dragleave", () => + trackLane.classList.remove("drag-over") + ); + trackLane.addEventListener("drop", (e) => { + e.preventDefault(); + trackLane.classList.remove("drag-over"); + const filePath = e.dataTransfer.getData("text/plain"); + if (filePath) { + updateTrackSample(trackData.id, filePath); + } + }); + + trackContainer.appendChild(trackLane); + + const volumeKnob = trackLane.querySelector(".knob[data-control='volume']"); + addKnobInteraction(volumeKnob); + updateKnobVisual(volumeKnob, "volume"); + + const panKnob = trackLane.querySelector(".knob[data-control='pan']"); + addKnobInteraction(panKnob); + updateKnobVisual(panKnob, "pan"); + }); + redrawSequencer(); +} + +export function redrawSequencer() { + const beatsPerBar = + parseInt(document.getElementById("compasso-a-input").value, 10) || 4; + const totalSteps = getTotalSteps(); + document.querySelectorAll(".step-sequencer").forEach((container) => { + const parentTrackElement = container.closest(".track-lane"); + const trackId = parentTrackElement.dataset.trackId; + const trackData = appState.tracks.find((t) => t.id == trackId); + if (trackData && trackData.steps.length !== totalSteps) { + const newStepsState = new Array(totalSteps).fill(false); + for (let i = 0; i < Math.min(trackData.steps.length, totalSteps); i++) { + newStepsState[i] = trackData.steps[i]; + } + trackData.steps = newStepsState; + } + container.innerHTML = ""; + for (let i = 0; i < totalSteps; i++) { + const stepWrapper = document.createElement("div"); + stepWrapper.className = "step-wrapper"; + const stepElement = document.createElement("div"); + stepElement.className = "step"; + if (trackData && trackData.steps[i] === true) { + stepElement.classList.add("active"); + } + stepElement.addEventListener("click", () => { + toggleStepState(trackData.id, i); + stepElement.classList.toggle("active"); + if (trackData && trackData.samplePath) { + playSample(trackData.samplePath, trackData.id); + } + }); + const groupIndex = Math.floor(i / beatsPerBar); + if (groupIndex % 2 === 0) { + stepElement.classList.add("step-dark"); + } + if (i > 0 && i % beatsPerBar === 0) { + const marker = document.createElement("div"); + marker.className = "step-marker"; + marker.textContent = i; + stepWrapper.appendChild(marker); + } + stepWrapper.appendChild(stepElement); + container.appendChild(stepWrapper); + } + }); +} + +// LÓGICA DE INTERAÇÃO DOS KNOBS +function addKnobInteraction(knobElement) { + const controlType = knobElement.dataset.control; + knobElement.addEventListener("mousedown", (e) => { + if (e.button === 1) { + e.preventDefault(); + const trackId = knobElement.dataset.trackId; + const defaultValue = controlType === "volume" ? 0.8 : 0.0; + if (controlType === "volume") { + updateTrackVolume(trackId, defaultValue); + } else { + updateTrackPan(trackId, defaultValue); + } + } + }); + knobElement.addEventListener("mousedown", (e) => { + if (e.button !== 0) return; + e.preventDefault(); + const trackId = knobElement.dataset.trackId; + const track = appState.tracks.find((t) => t.id == trackId); + if (!track) return; + const startY = e.clientY; + const startValue = controlType === "volume" ? track.volume : track.pan; + document.body.classList.add("knob-dragging"); + function onMouseMove(moveEvent) { + const deltaY = startY - moveEvent.clientY; + const sensitivity = controlType === "volume" ? 150 : 200; + const newValue = startValue + deltaY / sensitivity; + if (controlType === "volume") { + updateTrackVolume(trackId, newValue); + } else { + updateTrackPan(trackId, newValue); + } + } + function onMouseUp() { + document.body.classList.remove("knob-dragging"); + document.removeEventListener("mousemove", onMouseMove); + document.removeEventListener("mouseup", onMouseUp); + } + document.addEventListener("mousemove", onMouseMove); + document.addEventListener("mouseup", onMouseUp); + }); + knobElement.addEventListener("wheel", (e) => { + e.preventDefault(); + const trackId = knobElement.dataset.trackId; + const track = appState.tracks.find((t) => t.id == trackId); + if (!track) return; + const step = 0.05; + const direction = e.deltaY < 0 ? 1 : -1; + if (controlType === "volume") { + const newValue = track.volume + direction * step; + updateTrackVolume(trackId, newValue); + } else { + const newValue = track.pan + direction * step; + updateTrackPan(trackId, newValue); + } + }); +} + +function updateKnobVisual(knobElement, controlType) { + const trackId = knobElement.dataset.trackId; + const track = appState.tracks.find((t) => t.id == trackId); + if (!track) return; + const indicator = knobElement.querySelector(".knob-indicator"); + if (!indicator) return; + const minAngle = -135; + const maxAngle = 135; + let percentage = 0.5; + let title = ""; + if (controlType === "volume") { + const value = track.volume; + const clampedValue = Math.max(0, Math.min(1.5, value)); + percentage = clampedValue / 1.5; + title = `Volume: ${Math.round(clampedValue * 100)}%`; + } else { + const value = track.pan; + const clampedValue = Math.max(-1, Math.min(1, value)); + percentage = (clampedValue + 1) / 2; + const panDisplay = Math.round(clampedValue * 100); + title = `Pan: ${ + panDisplay === 0 + ? "Centro" + : panDisplay < 0 + ? `${-panDisplay} L` + : `${panDisplay} R` + }`; + } + const angle = minAngle + percentage * (maxAngle - minAngle); + indicator.style.transform = `translateX(-50%) rotate(${angle}deg)`; + knobElement.title = title; +} + +export function highlightStep(stepIndex, isActive) { + if (stepIndex < 0) return; + document.querySelectorAll(".track-lane").forEach((track) => { + const stepWrapper = track.querySelector( + `.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})` + ); + if (stepWrapper) { + const stepElement = stepWrapper.querySelector(".step"); + if (stepElement) { + stepElement.classList.toggle("playing", isActive); + } + } + }); +} + +// LÓGICA DA SIDEBAR E MODAL +export async function loadAndRenderSampleBrowser() { + const browserContent = document.getElementById("browser-content"); + try { + const response = await fetch("metadata/samples-manifest.json"); + if (!response.ok) { + throw new Error("Arquivo samples-manifest.json não encontrado."); + } + const fileTree = await response.json(); + renderFileTree(fileTree, browserContent, "src/samples"); + } catch (error) { + console.error("Erro ao carregar samples:", error); + browserContent.innerHTML = `

${error.message}

`; + } +} + +function renderFileTree(tree, parentElement, currentPath) { + parentElement.innerHTML = ""; + const ul = document.createElement("ul"); + const sortedKeys = Object.keys(tree).sort((a, b) => { + const aIsFile = tree[a]._isFile; + const bIsFile = tree[b]._isFile; + if (aIsFile === bIsFile) return a.localeCompare(b); + return aIsFile ? 1 : -1; + }); + for (const key of sortedKeys) { + const node = tree[key]; + const li = document.createElement("li"); + const newPath = `${currentPath}/${key}`; + if (node._isFile) { + li.innerHTML = ` ${key}`; + li.setAttribute("draggable", true); + li.addEventListener("click", (e) => { + e.stopPropagation(); + playSample(newPath, null); + }); + li.addEventListener("dragstart", (e) => { + e.dataTransfer.setData("text/plain", newPath); + e.dataTransfer.effectAllowed = "copy"; + }); + ul.appendChild(li); + } else { + li.className = "directory"; + li.innerHTML = ` ${key}`; + const nestedUl = document.createElement("ul"); + renderFileTree(node, nestedUl, newPath); + li.appendChild(nestedUl); + li.addEventListener("click", (e) => { + e.stopPropagation(); + li.classList.toggle("open"); + }); + ul.appendChild(li); + } + } + parentElement.appendChild(ul); +} + +export async function showOpenProjectModal() { + const openProjectModal = document.getElementById("open-project-modal"); + const serverProjectsList = document.getElementById("server-projects-list"); + serverProjectsList.innerHTML = "

Carregando...

"; + openProjectModal.classList.add("visible"); + try { + const response = await fetch("metadata/mmp-manifest.json"); + if (!response.ok) + throw new Error("Arquivo mmp-manifest.json não encontrado."); + const projects = await response.json(); + + serverProjectsList.innerHTML = ""; + if (projects.length === 0) { + serverProjectsList.innerHTML = + '

Nenhum projeto encontrado no servidor.

'; + } + + projects.forEach((projectName) => { + const projectItem = document.createElement("div"); + projectItem.className = "project-item"; + projectItem.textContent = projectName; + projectItem.addEventListener("click", async () => { + const success = await loadProjectFromServer(projectName); + if (success) { + closeOpenProjectModal(); + } + }); + serverProjectsList.appendChild(projectItem); + }); + } catch (error) { + console.error("Erro ao carregar lista de projetos:", error); + serverProjectsList.innerHTML = `

${error.message}

`; + } +} + +export function closeOpenProjectModal() { + const openProjectModal = document.getElementById("open-project-modal"); + openProjectModal.classList.remove("visible"); +} diff --git a/assets/js/creations/utils.js b/assets/js/creations/utils.js new file mode 100644 index 0000000..ca7f2d8 --- /dev/null +++ b/assets/js/creations/utils.js @@ -0,0 +1,27 @@ +// js/utils.js + +export function getTotalSteps() { + const compassoAInput = document.getElementById("compasso-a-input"); + const compassoBInput = document.getElementById("compasso-b-input"); + const beatsPerBar = parseInt(compassoAInput.value, 10) || 4; + const noteValue = parseInt(compassoBInput.value, 10) || 4; + const subdivisions = Math.round(16 / noteValue); + return beatsPerBar * subdivisions; +} + +export function enforceNumericInput(event) { + event.target.value = event.target.value.replace(/[^0-9]/g, ""); +} + +export function adjustValue(inputElement, step) { + let currentValue = parseInt(inputElement.value, 10) || 0; + let min = parseInt(inputElement.dataset.min, 10); + let max = parseInt(inputElement.dataset.max, 10); + let newValue = currentValue + step; + if (!isNaN(min) && newValue < min) newValue = min; + if (!isNaN(max) && newValue > max) newValue = max; + inputElement.value = newValue; + + // Dispara um evento 'input' para que outros listeners (como o que redesenha o sequenciador) sejam acionados. + inputElement.dispatchEvent(new Event("input", { bubbles: true })); +} diff --git a/assets/js/search.js b/assets/js/search.js index 26b234f..aa74668 100644 --- a/assets/js/search.js +++ b/assets/js/search.js @@ -1,108 +1,123 @@ -document.addEventListener("DOMContentLoaded", function() { - var fileItemsMMP = document.querySelectorAll('#file-list-mmp .file-item'); - var fileItemsWAV = document.querySelectorAll('#file-list-wav .file-wav-item'); +document.addEventListener("DOMContentLoaded", function () { + var fileItemsMMP = document.querySelectorAll("#file-list-mmp .file-item"); + var fileItemsWAV = document.querySelectorAll("#file-list-wav .file-wav-item"); // Função para exibir apenas os arquivos WAV correspondentes aos instrumentos encontrados nos projetos MMP function showWAVFilesByInstrument(selectedInstrument) { - fileItemsWAV.forEach(function(item) { - var fileName = item.getAttribute('data-file').toLowerCase(); + fileItemsWAV.forEach(function (item) { + var fileName = item.getAttribute("data-file").toLowerCase(); if (fileName.includes(selectedInstrument)) { - item.style.display = 'block'; + item.style.display = "block"; } else { - item.style.display = 'none'; + item.style.display = "none"; } }); } // Buscar por instrumento usando o campo de entrada para MMP - var searchButton = document.getElementById('search-button'); - searchButton.addEventListener('click', function() { - var searchInput = document.getElementById('instrument-search').value.trim().toLowerCase(); - if (searchInput === '') { + var searchButton = document.getElementById("search-button"); + searchButton.addEventListener("click", function () { + var searchInput = document + .getElementById("instrument-search") + .value.trim() + .toLowerCase(); + if (searchInput === "") { resetSearch(); return; } - fileItemsMMP.forEach(function(item) { - var instrumentsList = item.querySelectorAll('.instrument-list .instrument-name'); + fileItemsMMP.forEach(function (item) { + var instrumentsList = item.querySelectorAll( + ".instrument-list .instrument-name" + ); var hasInstrument = false; - instrumentsList.forEach(function(instrument) { - var instrumentName = instrument.getAttribute('data-instrument').toLowerCase(); + instrumentsList.forEach(function (instrument) { + var instrumentName = instrument + .getAttribute("data-instrument") + .toLowerCase(); if (instrumentName.includes(searchInput)) { hasInstrument = true; } }); if (hasInstrument) { - item.style.display = 'block'; + item.style.display = "block"; } else { - item.style.display = 'none'; + item.style.display = "none"; } }); // Exibir a lista de arquivos MMP após a busca - document.getElementById('file-list-mmp').style.display = 'block'; + document.getElementById("file-list-mmp").style.display = "block"; }); // Buscar por nome de arquivo WAV usando o campo de entrada - var searchWavButton = document.getElementById('search-wav-button'); - searchWavButton.addEventListener('click', function() { - var searchInput = document.getElementById('file-wav-search').value.trim().toLowerCase(); - if (searchInput === '') { + var searchWavButton = document.getElementById("search-wav-button"); + searchWavButton.addEventListener("click", function () { + var searchInput = document + .getElementById("file-wav-search") + .value.trim() + .toLowerCase(); + if (searchInput === "") { resetSearch(); return; } - fileItemsWAV.forEach(function(item) { - var fileName = item.querySelector('span').textContent.toLowerCase(); + fileItemsWAV.forEach(function (item) { + var fileName = item.querySelector("span").textContent.toLowerCase(); if (fileName.includes(searchInput)) { - item.style.display = 'block'; + item.style.display = "block"; } else { - item.style.display = 'none'; + item.style.display = "none"; } }); // Exibir a lista de arquivos WAV após a busca - document.getElementById('file-list-wav').style.display = 'block'; + document.getElementById("file-list-wav").style.display = "block"; }); // Buscar por instrumento ou nome de arquivo WAV usando o campo de entrada combinado - var searchBothButton = document.getElementById('search-both-button'); - searchBothButton.addEventListener('click', function() { - var searchInput = document.getElementById('instrument-wav-search').value.trim().toLowerCase(); - if (searchInput === '') { + var searchBothButton = document.getElementById("search-both-button"); + searchBothButton.addEventListener("click", function () { + var searchInput = document + .getElementById("instrument-wav-search") + .value.trim() + .toLowerCase(); + if (searchInput === "") { resetSearch(); return; } // Buscar em arquivos MMP por instrumento - fileItemsMMP.forEach(function(item) { - var instrumentsList = item.querySelectorAll('.instrument-list .instrument-name'); + fileItemsMMP.forEach(function (item) { + var instrumentsList = item.querySelectorAll( + ".instrument-list .instrument-name" + ); var hasInstrument = false; - instrumentsList.forEach(function(instrument) { - var instrumentName = instrument.getAttribute('data-instrument').toLowerCase(); + instrumentsList.forEach(function (instrument) { + var instrumentName = instrument + .getAttribute("data-instrument") + .toLowerCase(); if (instrumentName.includes(searchInput)) { hasInstrument = true; // Mostrar arquivo WAV correspondente ao instrumento - showWAVFilesByInstrument(item.getAttribute('data-file')); + showWAVFilesByInstrument(item.getAttribute("data-file")); } }); if (hasInstrument) { - item.style.display = 'block'; + item.style.display = "block"; } else { - item.style.display = 'none'; + item.style.display = "none"; } }); // Exibir as listas de arquivos após a busca - document.getElementById('file-list-mmp').style.display = 'block'; - document.getElementById('file-list-wav').style.display = 'block'; + document.getElementById("file-list-mmp").style.display = "block"; + document.getElementById("file-list-wav").style.display = "block"; }); // Função para resetar a busca function resetSearch() { - fileItemsMMP.forEach(function(item) { - item.style.display = 'block'; + fileItemsMMP.forEach(function (item) { + item.style.display = "block"; }); - fileItemsWAV.forEach(function(item) { - item.style.display = 'block'; + fileItemsWAV.forEach(function (item) { + item.style.display = "block"; }); - document.getElementById('file-list-mmp').style.display = 'none'; - document.getElementById('file-list-wav').style.display = 'none'; + document.getElementById("file-list-mmp").style.display = "none"; + document.getElementById("file-list-wav").style.display = "none"; } - }); - diff --git a/automation.html b/automation.html index cb0c9a5..d69abea 100644 --- a/automation.html +++ b/automation.html @@ -3,18 +3,19 @@ layout: default title: Projetos com a tag Automation permalink: /automation/ --- - -
-
- {% include sidebar.html %} -
+ + +
+
{% include sidebar.html %}
-
+
-

Projetos que possuem a tag automation:

+

+ Projetos que possuem a tag automation: +

@@ -26,99 +27,104 @@ permalink: /automation/
- {% for projeto in site.data.all %} - {% if projeto.tags.TAG contains "automation" %} -
-
- - {% assign file_url = projeto.file | downcase - | replace: ' ', '-' - | replace: 'ç', 'c' - | replace: 'ã', 'a' - | replace: 'á', 'a' - | replace: 'â', 'a' - | replace: 'é', 'e' - | replace: 'ê', 'e' - | replace: 'í', 'i' - | replace: 'ó', 'o' - | replace: 'ô', 'o' - | replace: 'õ', 'o' - | replace: 'ú', 'u' %} + {% for projeto in site.data.all %} {% if projeto.tags.TAG contains + "automation" %} +
+
+ + {% assign file_url = projeto.file | downcase | replace: ' ', '-' | + replace: 'ç', 'c' | replace: 'ã', 'a' | replace: 'á', 'a' | replace: + 'â', 'a' | replace: 'é', 'e' | replace: 'ê', 'e' | replace: 'í', 'i' | + replace: 'ó', 'o' | replace: 'ô', 'o' | replace: 'õ', 'o' | replace: + 'ú', 'u' %} - - {{ projeto.file }} - + + {{ projeto.file }} + - - {% if projeto.tags.automation and projeto.tags.automation.size > 0 %} -
-

Automation:

-
    - {% for automation in projeto.tags.automation %} - {% if automation != "" %} -
  • {{ automation }}
  • - {% endif %} - {% endfor %} -
-
- {% endif %} -
+ + {% if projeto.tags.automation and projeto.tags.automation.size > 0 %} +
+

Automation:

+
    + {% for automation in projeto.tags.automation %} {% if automation + != "" %} +
  • + {{ automation }} +
  • + {% endif %} {% endfor %} +
- {% endif %} - {% endfor %} + {% endif %} +
+
+ {% endif %} {% endfor %}
\ No newline at end of file + diff --git a/bassline.html b/bassline.html index 9e08279..00e482c 100644 --- a/bassline.html +++ b/bassline.html @@ -3,18 +3,19 @@ layout: default title: Projetos com a tag Bassline permalink: /bassline/ --- - -
-
- {% include sidebar.html %} -
+ + +
+
{% include sidebar.html %}
-
+
-

Projetos que possuem a tag bassline:

+

+ Projetos que possuem a tag bassline: +

@@ -26,109 +27,111 @@ permalink: /bassline/
- {% for projeto in site.data.all %} - {% if projeto.tags.TAG contains "bassline" %} -
-
- - {% assign file_url = projeto.file | downcase - | replace: ' ', '-' - | replace: 'ç', 'c' - | replace: 'ã', 'a' - | replace: 'á', 'a' - | replace: 'â', 'a' - | replace: 'é', 'e' - | replace: 'ê', 'e' - | replace: 'í', 'i' - | replace: 'ó', 'o' - | replace: 'ô', 'o' - | replace: 'õ', 'o' - | replace: 'ú', 'u' %} + {% for projeto in site.data.all %} {% if projeto.tags.TAG contains + "bassline" %} +
+
+ + {% assign file_url = projeto.file | downcase | replace: ' ', '-' | + replace: 'ç', 'c' | replace: 'ã', 'a' | replace: 'á', 'a' | replace: + 'â', 'a' | replace: 'é', 'e' | replace: 'ê', 'e' | replace: 'í', 'i' | + replace: 'ó', 'o' | replace: 'ô', 'o' | replace: 'õ', 'o' | replace: + 'ú', 'u' %} - - {{ projeto.file }} - + + {{ projeto.file }} + - - {% if projeto.tags.bassline and projeto.tags.bassline.size > 0 %} -
-

Bassline:

-
    - {% for bassline in projeto.tags.bassline %} - {% if bassline != "" %} -
  • {{ bassline }}
  • - {% endif %} - {% endfor %} -
-
- {% endif %} -
+ + {% if projeto.tags.bassline and projeto.tags.bassline.size > 0 %} +
+

Bassline:

+
    + {% for bassline in projeto.tags.bassline %} {% if bassline != "" + %} +
  • + {{ bassline }} +
  • + {% endif %} {% endfor %} +
- {% endif %} - {% endfor %} + {% endif %} +
+
+ {% endif %} {% endfor %}
+ + + + diff --git a/metadata/mmp-manifest.json b/metadata/mmp-manifest.json new file mode 100644 index 0000000..07dd441 --- /dev/null +++ b/metadata/mmp-manifest.json @@ -0,0 +1,21 @@ +[ + "Computacao_Musical_Thiago_Rocha_de_Moraes.mmp", + "FelipeFerraz.mmp", + "Gustavo Castro.mmp", + "Iara Rodrigues.mmp", + "JoãoVitorSimão-2023008380-megaMainSong.mmp", + "Samanta Freire.mmp", + "SonsAlignígenas.mmp", + "Um começo.mmp", + "VitorAugusto.mmp", + "Wesley_Silva_Guimarães.mmp", + "beatJulioCesardeSousa.mmp", + "carlos.mmp", + "deprecado_wallace.mmp", + "eliasMendesSong.mmp", + "gabriel_gomes.mmp", + "leandro_souza_atvd1.mmp", + "teste.mmp", + "tp1 - Luiz Filipe Almada.mmp", + "tp1_MarcoAntonio.mmp" +] \ No newline at end of file diff --git a/metadata/samples-manifest.json b/metadata/samples-manifest.json new file mode 100644 index 0000000..6bb3f13 --- /dev/null +++ b/metadata/samples-manifest.json @@ -0,0 +1,3088 @@ +{ + "drumsynth": { + "misc_synth": { + "fur_strings.ds": { + "_isFile": true + }, + "fm_c_bass_burst.ds": { + "_isFile": true + }, + "wowmelodictone.ds": { + "_isFile": true + }, + "it's_the_music_tom_c.ds": { + "_isFile": true + }, + "strong_c_dub_bass.ds": { + "_isFile": true + }, + "dist_high_c.ds": { + "_isFile": true + }, + "consumer_fm.ds": { + "_isFile": true + }, + "who_loves_ya,_baby.ds": { + "_isFile": true + }, + "average_rock.ds": { + "_isFile": true + }, + "dark_and_sweet_fm.ds": { + "_isFile": true + }, + "eno's_pad.ds": { + "_isFile": true + }, + "eno's_lift.ds": { + "_isFile": true + }, + "sync_drift.ds": { + "_isFile": true + }, + "eno's_ride.ds": { + "_isFile": true + }, + "that_house_chord_cm.ds": { + "_isFile": true + }, + "raver_organ.ds": { + "_isFile": true + }, + "vibrato_pad.ds": { + "_isFile": true + }, + "fur_strings_2.ds": { + "_isFile": true + }, + "chorded_perc.ds": { + "_isFile": true + }, + "casio_piano_c.ds": { + "_isFile": true + }, + "layered_bass_synth_c.ds": { + "_isFile": true + }, + "c_maj_chord.ds": { + "_isFile": true + }, + "flat_square_c.ds": { + "_isFile": true + }, + "my_red_hot_guitar.ds": { + "_isFile": true + }, + "sync_man.ds": { + "_isFile": true + } + }, + "electro": { + "K_reverb.ds": { + "_isFile": true + }, + "s_eq.ds": { + "_isFile": true + }, + "S_reverb.ds": { + "_isFile": true + }, + "Hi-q_2.ds": { + "_isFile": true + }, + "Syntom_1.ds": { + "_isFile": true + }, + "Syntom_2.ds": { + "_isFile": true + }, + "S_8bit.ds": { + "_isFile": true + }, + "K_Linn.ds": { + "_isFile": true + }, + "K_8bit.ds": { + "_isFile": true + }, + "H_open.ds": { + "_isFile": true + }, + "Boom.ds": { + "_isFile": true + }, + "Hi-q.ds": { + "_isFile": true + }, + "H_closed.ds": { + "_isFile": true + }, + "S_Linn.ds": { + "_isFile": true + } + }, + "cr8000": { + "Conga_m.ds": { + "_isFile": true + }, + "Clap.ds": { + "_isFile": true + }, + "Kick.ds": { + "_isFile": true + }, + "Hat_c.ds": { + "_isFile": true + }, + "Cymbal.ds": { + "_isFile": true + }, + "Cowbell.ds": { + "_isFile": true + }, + "Snare.ds": { + "_isFile": true + }, + "Clave.ds": { + "_isFile": true + }, + "Conga_l.ds": { + "_isFile": true + }, + "Rim.ds": { + "_isFile": true + }, + "Hat_o.ds": { + "_isFile": true + } + }, + "effects": { + "Ringing.ds": { + "_isFile": true + }, + "Cicada.ds": { + "_isFile": true + }, + "loop.ds": { + "_isFile": true + }, + "Reverse.ds": { + "_isFile": true + }, + "Bubble.ds": { + "_isFile": true + }, + "Laser.ds": { + "_isFile": true + }, + "impulses.ds": { + "_isFile": true + }, + "thunder.ds": { + "_isFile": true + }, + "dialing.ds": { + "_isFile": true + }, + "Glass_rn.ds": { + "_isFile": true + }, + "Gunshot.ds": { + "_isFile": true + }, + "Sonar.ds": { + "_isFile": true + }, + "Glass.ds": { + "_isFile": true + }, + "Hammer.ds": { + "_isFile": true + }, + "Scissors.ds": { + "_isFile": true + }, + "hammer2.ds": { + "_isFile": true + } + }, + "misc_electro": { + "electro_squeek.ds": { + "_isFile": true + }, + "open_reso.ds": { + "_isFile": true + }, + "confusion.ds": { + "_isFile": true + }, + "electro_perc_short.ds": { + "_isFile": true + }, + "general_obscurity.ds": { + "_isFile": true + }, + "electro_perc_long.ds": { + "_isFile": true + }, + "fuzzy_q_bd.ds": { + "_isFile": true + }, + "wee_dog.ds": { + "_isFile": true + }, + "spaceness.ds": { + "_isFile": true + }, + "dialed.ds": { + "_isFile": true + }, + "long_q_1.ds": { + "_isFile": true + }, + "cheap_fx.ds": { + "_isFile": true + }, + "electro_rim_2.ds": { + "_isFile": true + }, + "clean_rock_bd.ds": { + "_isFile": true + }, + "pan.ds": { + "_isFile": true + }, + "cold_shot.ds": { + "_isFile": true + }, + "why_hit.ds": { + "_isFile": true + }, + "doom_bump.ds": { + "_isFile": true + }, + "siren_sing.ds": { + "_isFile": true + }, + "who_hears_all_sound.ds": { + "_isFile": true + }, + "casio_poppin.ds": { + "_isFile": true + }, + "just_the_tweet.ds": { + "_isFile": true + }, + "hard_bork.ds": { + "_isFile": true + }, + "long_q_2.ds": { + "_isFile": true + }, + "chrip_q.ds": { + "_isFile": true + }, + "space_dynamic.ds": { + "_isFile": true + }, + "'lectro_spliff.ds": { + "_isFile": true + }, + "metal_noise_shot.ds": { + "_isFile": true + }, + "rockin_electro_bass_drum.ds": { + "_isFile": true + }, + "lo-fi_metal.ds": { + "_isFile": true + }, + "depth_fx.ds": { + "_isFile": true + }, + "bottle_bill_fx.ds": { + "_isFile": true + }, + "atmosphere_of_space.ds": { + "_isFile": true + }, + "a_round_thing.ds": { + "_isFile": true + }, + "tone_percussion.ds": { + "_isFile": true + }, + "electric_triangle.ds": { + "_isFile": true + }, + "lo-fi_house_c.ds": { + "_isFile": true + }, + "slide_tom.ds": { + "_isFile": true + }, + "category.ds": { + "_isFile": true + }, + "paging_the_jetsons.ds": { + "_isFile": true + }, + "g_question.ds": { + "_isFile": true + }, + "electro_rim.ds": { + "_isFile": true + }, + "ringing_sn.ds": { + "_isFile": true + }, + "applied_engineering.ds": { + "_isFile": true + }, + "long_q_3.ds": { + "_isFile": true + }, + "lo-finess.ds": { + "_isFile": true + }, + "startling_one.ds": { + "_isFile": true + }, + "ring.ds": { + "_isFile": true + }, + "yr_tv_will_be_next.ds": { + "_isFile": true + }, + "pleasant_combo.ds": { + "_isFile": true + }, + "long_quack.ds": { + "_isFile": true + }, + "cymbal_madness.ds": { + "_isFile": true + }, + "q-ziq_for_the_masses.ds": { + "_isFile": true + }, + "what_to_do_at_220.ds": { + "_isFile": true + }, + "hello_q.ds": { + "_isFile": true + }, + "low_bit_tom.ds": { + "_isFile": true + }, + "shocking_kiss.ds": { + "_isFile": true + }, + "electro_rim_3.ds": { + "_isFile": true + }, + "zappy_bells.ds": { + "_isFile": true + }, + "rich_bd.ds": { + "_isFile": true + }, + "tweet.ds": { + "_isFile": true + } + }, + "misc": { + "wobble_wobble.ds": { + "_isFile": true + }, + "very_basic_snare.ds": { + "_isFile": true + }, + "loudness_sn.ds": { + "_isFile": true + }, + "r+b_fantasy_kick.ds": { + "_isFile": true + }, + "hed_chunk_snare.ds": { + "_isFile": true + }, + "b1_0.ds": { + "_isFile": true + }, + "type_snare.ds": { + "_isFile": true + }, + "think_sn_1.ds": { + "_isFile": true + }, + "cymbal.ds": { + "_isFile": true + }, + "big_80's_2.ds": { + "_isFile": true + }, + "compression_does_it_808.ds": { + "_isFile": true + }, + "hardcore_bd.ds": { + "_isFile": true + }, + "bug_into_water.ds": { + "_isFile": true + }, + "hi_pic.ds": { + "_isFile": true + }, + "dirty_world_bd.ds": { + "_isFile": true + }, + "change_the_channel_snare.ds": { + "_isFile": true + }, + "fattie_bd.ds": { + "_isFile": true + }, + "noise_clip.ds": { + "_isFile": true + }, + "and_loud_sn.ds": { + "_isFile": true + }, + "whoa_bd.ds": { + "_isFile": true + }, + "big_sleeper_snare.ds": { + "_isFile": true + }, + "simple-h.ds": { + "_isFile": true + }, + "every_909.ds": { + "_isFile": true + }, + "difference_snare.ds": { + "_isFile": true + }, + "lo-fi_rim.ds": { + "_isFile": true + }, + "funky_trashcan_snare.ds": { + "_isFile": true + }, + "rimshot_2.ds": { + "_isFile": true + }, + "yet_another_electric_bass_drum.ds": { + "_isFile": true + }, + "simple_click_bd.ds": { + "_isFile": true + }, + "hi-pass.ds": { + "_isFile": true + }, + "fatness.ds": { + "_isFile": true + }, + "rm.ds": { + "_isFile": true + }, + "snappy_809.ds": { + "_isFile": true + }, + "'lectro_square_hammer.ds": { + "_isFile": true + }, + "lovely_clean_bd.ds": { + "_isFile": true + }, + "ot_34.ds": { + "_isFile": true + }, + "buff_hit.ds": { + "_isFile": true + }, + "dist_sub_kick_2.ds": { + "_isFile": true + }, + "sloppy_electric.ds": { + "_isFile": true + }, + "mello_bd.ds": { + "_isFile": true + }, + "power_out.ds": { + "_isFile": true + }, + "sounds_like_a_low_tom.ds": { + "_isFile": true + }, + "rubber_'82.ds": { + "_isFile": true + }, + "q_kick_2.ds": { + "_isFile": true + }, + "wobbly_thumb_bd.ds": { + "_isFile": true + }, + "bouncy809bd.ds": { + "_isFile": true + }, + "bulge_n_yr_woofer.ds": { + "_isFile": true + }, + "calamity_snare.ds": { + "_isFile": true + }, + "warm_digi_808_click.ds": { + "_isFile": true + }, + "zoom#4.ds": { + "_isFile": true + }, + "simon's_snare.ds": { + "_isFile": true + }, + "stiffy_snare.ds": { + "_isFile": true + }, + "electro_dnb_kick.ds": { + "_isFile": true + }, + "flat_tire.ds": { + "_isFile": true + }, + "close_mic_sn.ds": { + "_isFile": true + }, + "manipulate_bd.ds": { + "_isFile": true + }, + "missing_snare.ds": { + "_isFile": true + }, + "neo808_2.ds": { + "_isFile": true + }, + "hit_me_wooden_snare.ds": { + "_isFile": true + }, + "gimme_a_hard_tone.ds": { + "_isFile": true + }, + "blended_snare.ds": { + "_isFile": true + }, + "mack_bd.ds": { + "_isFile": true + }, + "feel_me!.ds": { + "_isFile": true + }, + "heavy.ds": { + "_isFile": true + }, + "verby_soundin_808.ds": { + "_isFile": true + }, + "'lectro_hammer.ds": { + "_isFile": true + }, + "lo-fi_bass_drum.ds": { + "_isFile": true + }, + "overdriver_kick.ds": { + "_isFile": true + }, + "tchak_snare.ds": { + "_isFile": true + }, + "deep_tones.ds": { + "_isFile": true + }, + "n_hi.ds": { + "_isFile": true + }, + "Simple-c.ds": { + "_isFile": true + }, + "another_909_moment.ds": { + "_isFile": true + }, + "beat_box_bd.ds": { + "_isFile": true + }, + "hot_snare.ds": { + "_isFile": true + }, + "tomita_clip.ds": { + "_isFile": true + }, + "smooth_rim.ds": { + "_isFile": true + }, + "Clap.ds": { + "_isFile": true + }, + "sounding_kick.ds": { + "_isFile": true + }, + "trashyovertones.ds": { + "_isFile": true + }, + "noise_calling_kick.ds": { + "_isFile": true + }, + "light_snare.ds": { + "_isFile": true + }, + "clappy_snare.ds": { + "_isFile": true + }, + "b1_9.ds": { + "_isFile": true + }, + "it's_like_that_snare.ds": { + "_isFile": true + }, + "n_mid.ds": { + "_isFile": true + }, + "short_909.ds": { + "_isFile": true + }, + "yr_808_hummer.ds": { + "_isFile": true + }, + "RimShot.ds": { + "_isFile": true + }, + "more_basic_bd.ds": { + "_isFile": true + }, + "ring_fray_kick.ds": { + "_isFile": true + }, + "hardcore_a_bd.ds": { + "_isFile": true + }, + "ot_12.ds": { + "_isFile": true + }, + "ambient_noise_snare.ds": { + "_isFile": true + }, + "lower_electro_bd.ds": { + "_isFile": true + }, + "missing_snare_2.ds": { + "_isFile": true + }, + "b1_5.ds": { + "_isFile": true + }, + "clean_low_key_kick.ds": { + "_isFile": true + }, + "kneel_and_buzz.ds": { + "_isFile": true + }, + "ot_sine.ds": { + "_isFile": true + }, + "big_80's.ds": { + "_isFile": true + }, + "B1_B2.ds": { + "_isFile": true + }, + "b1_2.ds": { + "_isFile": true + }, + "amen_bd.ds": { + "_isFile": true + }, + "bumpin_quickie.ds": { + "_isFile": true + }, + "buff_sound.ds": { + "_isFile": true + }, + "pop_1_off_snare.ds": { + "_isFile": true + }, + "gabbakick.ds": { + "_isFile": true + }, + "test.ds": { + "_isFile": true + }, + "Tone_sw2.ds": { + "_isFile": true + }, + "more_snap.ds": { + "_isFile": true + }, + "fried_food.ds": { + "_isFile": true + }, + "rimmy_noise.ds": { + "_isFile": true + }, + "breathing_snare.ds": { + "_isFile": true + }, + "serious_bd.ds": { + "_isFile": true + }, + "909_hard_snare.ds": { + "_isFile": true + }, + "chow_bd.ds": { + "_isFile": true + }, + "softsnare.ds": { + "_isFile": true + }, + "tone_snare.ds": { + "_isFile": true + }, + "warm_deep_house_kick.ds": { + "_isFile": true + }, + "tone.ds": { + "_isFile": true + }, + "punchy_clean_kick.ds": { + "_isFile": true + }, + "tone_deg.ds": { + "_isFile": true + }, + "large_hall_bd.ds": { + "_isFile": true + }, + "sticky_q_kick.ds": { + "_isFile": true + }, + "hot_morning_bass_drum.ds": { + "_isFile": true + }, + "puppy_kick.ds": { + "_isFile": true + }, + "sweet_tight_snare.ds": { + "_isFile": true + }, + "hardersnare.ds": { + "_isFile": true + }, + "bright_house_sn.ds": { + "_isFile": true + }, + "ultra_electro_bd.ds": { + "_isFile": true + }, + "ring_mod_drone_bd.ds": { + "_isFile": true + }, + "terror_n_yr_hood_snare.ds": { + "_isFile": true + }, + "skiwlz_snare.ds": { + "_isFile": true + }, + "beefy_wack.ds": { + "_isFile": true + }, + "q'ey_bass_drum.ds": { + "_isFile": true + }, + "reverb_please_snare.ds": { + "_isFile": true + }, + "hitthosesubs.ds": { + "_isFile": true + }, + "Simple-r.ds": { + "_isFile": true + }, + "deep_bauble_bd.ds": { + "_isFile": true + }, + "odd_snare.ds": { + "_isFile": true + }, + "another_example_snare.ds": { + "_isFile": true + }, + "psychoacoutic_bd.ds": { + "_isFile": true + }, + "i_luv_u_fat_noise.ds": { + "_isFile": true + }, + "break_kick.ds": { + "_isFile": true + }, + "verylong.ds": { + "_isFile": true + }, + "questoin_kick.ds": { + "_isFile": true + }, + "Saber_fight.ds": { + "_isFile": true + }, + "invisible_909_kick.ds": { + "_isFile": true + }, + "N_vlow.ds": { + "_isFile": true + }, + "electronic_rim.ds": { + "_isFile": true + }, + "muted_snare.ds": { + "_isFile": true + }, + "clean_soft_808.ds": { + "_isFile": true + }, + "hard_hittin.ds": { + "_isFile": true + }, + "simple-k.ds": { + "_isFile": true + }, + "crusty_snare.ds": { + "_isFile": true + }, + "original_tone_snare.ds": { + "_isFile": true + }, + "transient_snare.ds": { + "_isFile": true + }, + "12-bit_heavy_hitter.ds": { + "_isFile": true + }, + "crusty_bump.ds": { + "_isFile": true + }, + "hip-hop_fantasy_kick.ds": { + "_isFile": true + }, + "laughter_and_jellybeans_snare.ds": { + "_isFile": true + }, + "heady_mix_sn.ds": { + "_isFile": true + }, + "noise.ds": { + "_isFile": true + }, + "bauble_bd.ds": { + "_isFile": true + }, + "electro_snare_layer.ds": { + "_isFile": true + }, + "think_bd.ds": { + "_isFile": true + }, + "AAH.ds": { + "_isFile": true + }, + "airbrush_bd.ds": { + "_isFile": true + }, + "different_909_snare.ds": { + "_isFile": true + }, + "basic_808_click_hum.ds": { + "_isFile": true + }, + "mind_ya_heds.ds": { + "_isFile": true + }, + "decompression_snare.ds": { + "_isFile": true + }, + "lo-fi_march.ds": { + "_isFile": true + }, + "dist_sub_kick.ds": { + "_isFile": true + }, + "just_the_bass_drum.ds": { + "_isFile": true + }, + "battle_hook_sn.ds": { + "_isFile": true + }, + "slepper_n_the_wilderness.ds": { + "_isFile": true + }, + "rubbery_deep_house_kick.ds": { + "_isFile": true + }, + "gimmie_a_tone.ds": { + "_isFile": true + }, + "many_frequencies.ds": { + "_isFile": true + }, + "splatter.ds": { + "_isFile": true + }, + "Tone_dis.ds": { + "_isFile": true + }, + "few_people_will_use_this_snare.ds": { + "_isFile": true + }, + "hipster_joint_bd.ds": { + "_isFile": true + }, + "Distant_Thunder.ds": { + "_isFile": true + }, + "pleasure_factory_kick.ds": { + "_isFile": true + }, + "fm.ds": { + "_isFile": true + }, + "Tone_swp.ds": { + "_isFile": true + }, + "fuzzy_sn.ds": { + "_isFile": true + }, + "clearly_snare.ds": { + "_isFile": true + }, + "nosie_calling_kick_2.ds": { + "_isFile": true + }, + "special_man_bass_drum.ds": { + "_isFile": true + }, + "hard_electro_brush_sn.ds": { + "_isFile": true + }, + "hard_electronic_snare.ds": { + "_isFile": true + }, + "think_sn_2.ds": { + "_isFile": true + }, + "usgae_bd.ds": { + "_isFile": true + }, + "amen_sn_1.ds": { + "_isFile": true + }, + "application_bass_drum.ds": { + "_isFile": true + }, + "end_transmission.ds": { + "_isFile": true + }, + "rimshot_1.ds": { + "_isFile": true + }, + "this_snare_spells_electronic.ds": { + "_isFile": true + }, + "N_low.ds": { + "_isFile": true + }, + "neo808.ds": { + "_isFile": true + }, + "Simple-s.ds": { + "_isFile": true + } + }, + "r_n_b": { + "k_muffle.ds": { + "_isFile": true + }, + "S_hollow.ds": { + "_isFile": true + }, + "popclap.ds": { + "_isFile": true + }, + "old_kik.ds": { + "_isFile": true + }, + "k_soft.ds": { + "_isFile": true + }, + "x_backwd.ds": { + "_isFile": true + }, + "popsnare.ds": { + "_isFile": true + }, + "k_hard.ds": { + "_isFile": true + }, + "Hat_O.ds": { + "_isFile": true + }, + "hat.ds": { + "_isFile": true + }, + "s_spit.ds": { + "_isFile": true + }, + "s_pitch.ds": { + "_isFile": true + }, + "hat_rattle.ds": { + "_isFile": true + }, + "clapfilt.ds": { + "_isFile": true + }, + "snare&hat.ds": { + "_isFile": true + } + }, + "tr77": { + "Tr77_cui2.ds": { + "_isFile": true + }, + "Tr77_kick.ds": { + "_isFile": true + }, + "Tr77_cui1.ds": { + "_isFile": true + }, + "Tr77_snare.ds": { + "_isFile": true + }, + "Tr77_cym.ds": { + "_isFile": true + }, + "Tr77_hat.ds": { + "_isFile": true + }, + "Tr77_tom2.ds": { + "_isFile": true + }, + "Tr77_tom1.ds": { + "_isFile": true + } + }, + "cr78": { + "Hihat.ds": { + "_isFile": true + }, + "Tamb.ds": { + "_isFile": true + }, + "Conga.ds": { + "_isFile": true + }, + "Kick.ds": { + "_isFile": true + }, + "Cymbal.ds": { + "_isFile": true + }, + "Maracas.ds": { + "_isFile": true + }, + "Snare.ds": { + "_isFile": true + }, + "Clave.ds": { + "_isFile": true + }, + "Bongo_h.ds": { + "_isFile": true + }, + "Rim.ds": { + "_isFile": true + }, + "Bongo_l.ds": { + "_isFile": true + } + }, + "misc_fx": { + "my_atari_memory.ds": { + "_isFile": true + }, + "f#m7_space_signal.ds": { + "_isFile": true + }, + "click.ds": { + "_isFile": true + }, + "owwww.ds": { + "_isFile": true + }, + "sickly_wineglass.ds": { + "_isFile": true + }, + "entre.ds": { + "_isFile": true + }, + "ufo_buzz.ds": { + "_isFile": true + }, + "experiment_4_-_clean.ds": { + "_isFile": true + }, + "distorion_oscilator.ds": { + "_isFile": true + }, + "flipper.ds": { + "_isFile": true + }, + "multi-ping.ds": { + "_isFile": true + }, + "funky_stab.ds": { + "_isFile": true + }, + "wipeout.ds": { + "_isFile": true + }, + "sign_off.ds": { + "_isFile": true + }, + "numb.ds": { + "_isFile": true + }, + "yeah_hit_dry.ds": { + "_isFile": true + }, + "fried_food_for_dinner.ds": { + "_isFile": true + }, + "transportive.ds": { + "_isFile": true + }, + "synthetic_dive_crust.ds": { + "_isFile": true + }, + "electric_waves_out_my_window.ds": { + "_isFile": true + }, + "halt_variety.ds": { + "_isFile": true + }, + "hollow.ds": { + "_isFile": true + }, + "coo.ds": { + "_isFile": true + }, + "elekperc2.ds": { + "_isFile": true + }, + "hip-hop_stop.ds": { + "_isFile": true + }, + "oom_paa.ds": { + "_isFile": true + }, + "recption.ds": { + "_isFile": true + }, + "formant_techno.ds": { + "_isFile": true + }, + "what_time_is_it.ds": { + "_isFile": true + }, + "experiment_2_-_turn_off_the_tv.ds": { + "_isFile": true + }, + "experiment_3_-_the_transform.ds": { + "_isFile": true + }, + "punch_flange.ds": { + "_isFile": true + }, + "alarm_3.ds": { + "_isFile": true + }, + "zipper.ds": { + "_isFile": true + }, + "alarming_buzz.ds": { + "_isFile": true + }, + "oom_pulse.ds": { + "_isFile": true + }, + "playing_in_water.ds": { + "_isFile": true + }, + "slow_moving_traffic.ds": { + "_isFile": true + }, + "a_blast.ds": { + "_isFile": true + }, + "the_plot_thickens.ds": { + "_isFile": true + }, + "frequency_revolution.ds": { + "_isFile": true + }, + "flashy_wind.ds": { + "_isFile": true + }, + "obligatory_ufo_liftoff_2.ds": { + "_isFile": true + }, + "detonate.ds": { + "_isFile": true + }, + "sci-fi_door_open.ds": { + "_isFile": true + }, + "new_sweep.ds": { + "_isFile": true + }, + "synthetic_dive.ds": { + "_isFile": true + }, + "2_bit_click.ds": { + "_isFile": true + }, + "alien_curiousity.ds": { + "_isFile": true + }, + "metal_twist.ds": { + "_isFile": true + }, + "howdy_oil_barrel.ds": { + "_isFile": true + }, + "2-bit_zone_drone.ds": { + "_isFile": true + }, + "future.ds": { + "_isFile": true + }, + "dirty_transform.ds": { + "_isFile": true + }, + "hip-hop_stop_2.ds": { + "_isFile": true + }, + "experiment_1.ds": { + "_isFile": true + }, + "wooo.ds": { + "_isFile": true + }, + "not_trying_too_hard.ds": { + "_isFile": true + }, + "sci-fi.ds": { + "_isFile": true + }, + "modular.ds": { + "_isFile": true + }, + "teeth.ds": { + "_isFile": true + }, + "gmaj_lo-fi_chord.ds": { + "_isFile": true + }, + "ufo_buzz_2.ds": { + "_isFile": true + }, + "feedback.ds": { + "_isFile": true + }, + "the_tweek.ds": { + "_isFile": true + }, + "modular_fm_counterpoint.ds": { + "_isFile": true + }, + "machine_drone.ds": { + "_isFile": true + }, + "yeah_hit.ds": { + "_isFile": true + }, + "noise_filtering.ds": { + "_isFile": true + }, + "alarming_buzz_2.ds": { + "_isFile": true + }, + "q_zone_drone.ds": { + "_isFile": true + }, + "dirty_transform_2.ds": { + "_isFile": true + }, + "gmaj_lo-fi_chord_2.ds": { + "_isFile": true + }, + "plot_thickens_2.ds": { + "_isFile": true + }, + "ambient_backgroud.ds": { + "_isFile": true + }, + "electric_intro_to_a.ds": { + "_isFile": true + }, + "obligatory_ufo_liftoff.ds": { + "_isFile": true + }, + "elekperc1.ds": { + "_isFile": true + }, + "punch_flange_2.ds": { + "_isFile": true + }, + "end_of_broadcast_day.ds": { + "_isFile": true + }, + "laser_gun_&_ricochet.ds": { + "_isFile": true + }, + "across_the_universe.ds": { + "_isFile": true + }, + "jaggies.ds": { + "_isFile": true + } + }, + "tr909": { + "TR909_Kick.ds": { + "_isFile": true + }, + "Kick_3.ds": { + "_isFile": true + }, + "TR909_Clap.ds": { + "_isFile": true + }, + "Hat-c.ds": { + "_isFile": true + }, + "Hat-o2.ds": { + "_isFile": true + }, + "Hat-o.ds": { + "_isFile": true + }, + "Hat-c2.ds": { + "_isFile": true + }, + "Clap.ds": { + "_isFile": true + }, + "Kick_1.ds": { + "_isFile": true + }, + "Kick_2.ds": { + "_isFile": true + }, + "Kick.ds": { + "_isFile": true + }, + "Snare.ds": { + "_isFile": true + }, + "Snare2.ds": { + "_isFile": true + } + }, + "misc_perc": { + "shaaka.ds": { + "_isFile": true + }, + "low_key_tom.ds": { + "_isFile": true + }, + "lo-fi_tamb.ds": { + "_isFile": true + }, + "timbale_sound.ds": { + "_isFile": true + }, + "like_a_tabla_2.ds": { + "_isFile": true + }, + "type_noise.ds": { + "_isFile": true + }, + "wood_and_metal.ds": { + "_isFile": true + }, + "q_tom.ds": { + "_isFile": true + }, + "light_tamb_1.ds": { + "_isFile": true + }, + "bell.ds": { + "_isFile": true + }, + "torn_tweeter.ds": { + "_isFile": true + }, + "mellow_shake.ds": { + "_isFile": true + }, + "sickly_cowbell.ds": { + "_isFile": true + }, + "shaaka_2.ds": { + "_isFile": true + }, + "dist_tom.ds": { + "_isFile": true + }, + "tweety_cowbell.ds": { + "_isFile": true + }, + "like_a_tabla_1.ds": { + "_isFile": true + }, + "door_knock.ds": { + "_isFile": true + }, + "limited_shaker.ds": { + "_isFile": true + }, + "like_a_tabla_3.ds": { + "_isFile": true + }, + "slinky_tamb.ds": { + "_isFile": true + }, + "tweety_cowbell_2.ds": { + "_isFile": true + }, + "tone_tom.ds": { + "_isFile": true + }, + "low_ping.ds": { + "_isFile": true + }, + "clav_2.ds": { + "_isFile": true + }, + "ambient_tom.ds": { + "_isFile": true + }, + "poppy.ds": { + "_isFile": true + }, + "weird_1.ds": { + "_isFile": true + }, + "mild_tamb.ds": { + "_isFile": true + }, + "ol'_skool_shake.ds": { + "_isFile": true + }, + "it's_the_simple_things.ds": { + "_isFile": true + }, + "fidelity_faction_tom.ds": { + "_isFile": true + }, + "hollow_wood_2.ds": { + "_isFile": true + }, + "funk_box_perc_1.ds": { + "_isFile": true + }, + "electric_clav.ds": { + "_isFile": true + }, + "layered_sleigh_bell.ds": { + "_isFile": true + }, + "resonant_knock.ds": { + "_isFile": true + }, + "hammond_cowbell.ds": { + "_isFile": true + }, + "give_it_to_me.ds": { + "_isFile": true + }, + "super_tom.ds": { + "_isFile": true + }, + "hollow_wood.ds": { + "_isFile": true + }, + "deep_cowbell.ds": { + "_isFile": true + }, + "funk_box_perc_2.ds": { + "_isFile": true + }, + "dist_tom_2.ds": { + "_isFile": true + }, + "tom_tone.ds": { + "_isFile": true + }, + "ringmod_rim_2.ds": { + "_isFile": true + }, + "short_tom.ds": { + "_isFile": true + }, + "sweetness_shaker.ds": { + "_isFile": true + }, + "short_tom_2.ds": { + "_isFile": true + }, + "short_tom_1.ds": { + "_isFile": true + }, + "funkay_timbale.ds": { + "_isFile": true + }, + "light_tamb_3.ds": { + "_isFile": true + }, + "metallic_node.ds": { + "_isFile": true + }, + "bell_rim.ds": { + "_isFile": true + }, + "very_high_clav.ds": { + "_isFile": true + }, + "tom.ds": { + "_isFile": true + }, + "tommy.ds": { + "_isFile": true + }, + "feel_me_clinky.ds": { + "_isFile": true + }, + "ringmod_rim.ds": { + "_isFile": true + }, + "light_tamb_2.ds": { + "_isFile": true + }, + "video_game_clip.ds": { + "_isFile": true + }, + "clav.ds": { + "_isFile": true + } + }, + "misc_claps": { + "shutter_clap.ds": { + "_isFile": true + }, + "bright_clap.ds": { + "_isFile": true + }, + "filter_clappy.ds": { + "_isFile": true + }, + "big_beat_clap.ds": { + "_isFile": true + }, + "pitch_clap_2.ds": { + "_isFile": true + }, + "clap.ds": { + "_isFile": true + }, + "pitch_clap.ds": { + "_isFile": true + }, + "electro_clap.ds": { + "_isFile": true + }, + "u_don't_kno.ds": { + "_isFile": true + }, + "clap_layer.ds": { + "_isFile": true + }, + "clap2.ds": { + "_isFile": true + }, + "classic_clap.ds": { + "_isFile": true + } + }, + "tr606": { + "TR606_Tom_H.ds": { + "_isFile": true + }, + "TR606_Hat_O.ds": { + "_isFile": true + }, + "TR606_Kick.ds": { + "_isFile": true + }, + "TR606_Tom_L.ds": { + "_isFile": true + }, + "TR606_Snare.ds": { + "_isFile": true + }, + "TR606_Cymbal.ds": { + "_isFile": true + }, + "TR606_Hat_C.ds": { + "_isFile": true + } + }, + "misc_bass": { + "a_day_in_the_noise.ds": { + "_isFile": true + }, + "solid.ds": { + "_isFile": true + }, + "metal_bass.ds": { + "_isFile": true + }, + "smooth_bass.ds": { + "_isFile": true + }, + "dirty_a.ds": { + "_isFile": true + }, + "filter_idea_bd.ds": { + "_isFile": true + }, + "more_bass.ds": { + "_isFile": true + }, + "synthbass.ds": { + "_isFile": true + }, + "melodictone.ds": { + "_isFile": true + }, + "bumble_bass.ds": { + "_isFile": true + }, + "jarre_bass_drum.ds": { + "_isFile": true + }, + "the_funk.ds": { + "_isFile": true + }, + "depth_bass_drum.ds": { + "_isFile": true + }, + "warm_bass.ds": { + "_isFile": true + }, + "jungle_laser.ds": { + "_isFile": true + }, + "rubber.ds": { + "_isFile": true + }, + "low_end_hum.ds": { + "_isFile": true + }, + "more_bass_2.ds": { + "_isFile": true + } + }, + "acoustic": { + "JazzSnr_H.ds": { + "_isFile": true + }, + "Ride3.ds": { + "_isFile": true + }, + "JazzSnr.ds": { + "_isFile": true + }, + "Ride.ds": { + "_isFile": true + }, + "Brush2.ds": { + "_isFile": true + }, + "Plain_Kick.ds": { + "_isFile": true + }, + "Brush1.ds": { + "_isFile": true + }, + "K_Muffle.ds": { + "_isFile": true + }, + "Kick.ds": { + "_isFile": true + }, + "JazzKick.ds": { + "_isFile": true + }, + "Snare.ds": { + "_isFile": true + }, + "Ride2.ds": { + "_isFile": true + } + }, + "latin": { + "Tamb_shk.ds": { + "_isFile": true + }, + "bongo_l.ds": { + "_isFile": true + }, + "ThumbPno.ds": { + "_isFile": true + }, + "one_clap.ds": { + "_isFile": true + }, + "Triangle.ds": { + "_isFile": true + }, + "Shaker_2.ds": { + "_isFile": true + }, + "Bongo_mu.ds": { + "_isFile": true + }, + "Clave_we.ds": { + "_isFile": true + }, + "Tamb_hit.ds": { + "_isFile": true + }, + "Maracas.ds": { + "_isFile": true + }, + "Shaker_1.ds": { + "_isFile": true + }, + "Gamelan.ds": { + "_isFile": true + }, + "taiko.ds": { + "_isFile": true + }, + "Bongo_h.ds": { + "_isFile": true + }, + "guiro.ds": { + "_isFile": true + }, + "Bongo_m2.ds": { + "_isFile": true + } + }, + "instrument": { + "pizzi.ds": { + "_isFile": true + }, + "upright_bass.ds": { + "_isFile": true + }, + "sweep.ds": { + "_isFile": true + }, + "flute.ds": { + "_isFile": true + }, + "techno_stab.ds": { + "_isFile": true + }, + "FM_Bass.ds": { + "_isFile": true + }, + "Moog_bass.ds": { + "_isFile": true + }, + "square_lead.ds": { + "_isFile": true + }, + "Oboe.ds": { + "_isFile": true + }, + "soft_piano.ds": { + "_isFile": true + }, + "whistler.ds": { + "_isFile": true + }, + "tinkle.ds": { + "_isFile": true + }, + "Temple_Bell.ds": { + "_isFile": true + }, + "mute_bass.ds": { + "_isFile": true + }, + "E_Piano.ds": { + "_isFile": true + }, + "trumpet.ds": { + "_isFile": true + }, + "violin.ds": { + "_isFile": true + } + }, + "ferraro": { + "curb_meat_bass.ds": { + "_isFile": true + }, + "radio_hats.ds": { + "_isFile": true + }, + "feed_this.ds": { + "_isFile": true + }, + "gerbil_snare.ds": { + "_isFile": true + }, + "eel_bass.ds": { + "_isFile": true + }, + "jaguar_hats.ds": { + "_isFile": true + }, + "grumpy_buzzard.ds": { + "_isFile": true + }, + "worm_bass.ds": { + "_isFile": true + } + }, + "linn": { + "linn_tom4.ds": { + "_isFile": true + }, + "linn_cgam.ds": { + "_isFile": true + }, + "linn_tamb.ds": { + "_isFile": true + }, + "linn_clp.ds": { + "_isFile": true + }, + "linn_tom3.ds": { + "_isFile": true + }, + "linn_stk.ds": { + "_isFile": true + }, + "linn_cow.ds": { + "_isFile": true + }, + "linn_tom5.ds": { + "_isFile": true + }, + "linn_cga1.ds": { + "_isFile": true + }, + "linn_cga2.ds": { + "_isFile": true + }, + "linn_snr.ds": { + "_isFile": true + }, + "linn_cga3.ds": { + "_isFile": true + }, + "linn_cab.ds": { + "_isFile": true + }, + "linn_kik.ds": { + "_isFile": true + }, + "linn_tom2.ds": { + "_isFile": true + }, + "linn_tom1.ds": { + "_isFile": true + } + }, + "misc_hats": { + "slick_hat_half_open.ds": { + "_isFile": true + }, + "fedora_hat.ds": { + "_isFile": true + }, + "loaded_open_hat.ds": { + "_isFile": true + }, + "shaker_ride.ds": { + "_isFile": true + }, + "softie_lo-fi_hat.ds": { + "_isFile": true + }, + "simple_ride.ds": { + "_isFile": true + }, + "electro_hh.ds": { + "_isFile": true + }, + "default_hi-hat.ds": { + "_isFile": true + }, + "starry_hh.ds": { + "_isFile": true + }, + "flat_cymbal.ds": { + "_isFile": true + }, + "heavy_electrihat.ds": { + "_isFile": true + }, + "hh.ds": { + "_isFile": true + }, + "oil_hat.ds": { + "_isFile": true + }, + "tarp_hh.ds": { + "_isFile": true + }, + "amen_ride.ds": { + "_isFile": true + }, + "slide_hat.ds": { + "_isFile": true + }, + "large_open_hh.ds": { + "_isFile": true + }, + "bright_808_hat.ds": { + "_isFile": true + }, + "little_hat.ds": { + "_isFile": true + }, + "live_hat.ds": { + "_isFile": true + }, + "oh_so_high_hat.ds": { + "_isFile": true + }, + "bright_808_hat_3.ds": { + "_isFile": true + }, + "electrometallic_hat.ds": { + "_isFile": true + }, + "sleepy_ride.ds": { + "_isFile": true + }, + "sleepy_1.ds": { + "_isFile": true + }, + "drama_hat_2.ds": { + "_isFile": true + }, + "errie_ride.ds": { + "_isFile": true + }, + "squeeze_me_hat.ds": { + "_isFile": true + }, + "threshold_noise_open.ds": { + "_isFile": true + }, + "q_ride_2.ds": { + "_isFile": true + }, + "q_ride.ds": { + "_isFile": true + }, + "squeeze_me_open_hat.ds": { + "_isFile": true + }, + "hardhat.ds": { + "_isFile": true + }, + "scratchy_hh.ds": { + "_isFile": true + }, + "static_tone_hat.ds": { + "_isFile": true + }, + "the_sting_hat_2.ds": { + "_isFile": true + }, + "pedal_hh.ds": { + "_isFile": true + }, + "lighthat.ds": { + "_isFile": true + }, + "feelin'_high_hat_3.ds": { + "_isFile": true + }, + "dusty_simple_oh.ds": { + "_isFile": true + }, + "dusty_simple_hh.ds": { + "_isFile": true + }, + "sleepy_2.ds": { + "_isFile": true + }, + "shaker_ride_long.ds": { + "_isFile": true + }, + "sandy_ride.ds": { + "_isFile": true + }, + "starry_short_oh.ds": { + "_isFile": true + }, + "hardly_hh.ds": { + "_isFile": true + }, + "clicky_hat.ds": { + "_isFile": true + }, + "softie_lo-fi_open_hat.ds": { + "_isFile": true + }, + "close_ride.ds": { + "_isFile": true + }, + "basic_hh.ds": { + "_isFile": true + }, + "slick_hat_compressd_open.ds": { + "_isFile": true + }, + "live_sound_hh.ds": { + "_isFile": true + }, + "feelin'_open_high_hat.ds": { + "_isFile": true + }, + "bright_808_hat_2.ds": { + "_isFile": true + }, + "touch_me_hat.ds": { + "_isFile": true + }, + "softie_lo-fi_open_hat_2.ds": { + "_isFile": true + }, + "feelin'_high_hat_2.ds": { + "_isFile": true + }, + "bring_me_out.ds": { + "_isFile": true + }, + "sleepy_ride_2.ds": { + "_isFile": true + }, + "hardhat_2.ds": { + "_isFile": true + }, + "loaded_hat.ds": { + "_isFile": true + }, + "slick_hat_open.ds": { + "_isFile": true + }, + "feelin'_high_hat_1.ds": { + "_isFile": true + }, + "threshold_noise.ds": { + "_isFile": true + }, + "get_out.ds": { + "_isFile": true + }, + "live_sound_oh.ds": { + "_isFile": true + }, + "drama_hat.ds": { + "_isFile": true + }, + "the_sting_hat.ds": { + "_isFile": true + }, + "stack_hhh.ds": { + "_isFile": true + }, + "hip_overtone_hat.ds": { + "_isFile": true + }, + "band_pass_cymbal.ds": { + "_isFile": true + }, + "slick_hat.ds": { + "_isFile": true + }, + "the_sting_open_hat.ds": { + "_isFile": true + } + }, + "farfisa": { + "Fisa_Kick.ds": { + "_isFile": true + }, + "Fisa_K_K.ds": { + "_isFile": true + }, + "Fisa_Tom.ds": { + "_isFile": true + }, + "Fisa_Cym.ds": { + "_isFile": true + }, + "Fisa_Hat.ds": { + "_isFile": true + }, + "Fisa_Bongo.ds": { + "_isFile": true + }, + "Fisa_K_H.ds": { + "_isFile": true + }, + "Fisa_S_B.ds": { + "_isFile": true + }, + "Fisa_Snare.ds": { + "_isFile": true + } + }, + "jorgensohn": { + "ramacymshort.ds": { + "_isFile": true + }, + "wood.ds": { + "_isFile": true + }, + "ride6.ds": { + "_isFile": true + }, + "kick.ds": { + "_isFile": true + }, + "snare5.ds": { + "_isFile": true + }, + "vibra.ds": { + "_isFile": true + }, + "zurrr.ds": { + "_isFile": true + }, + "ramacymlong.ds": { + "_isFile": true + }, + "wood2.ds": { + "_isFile": true + }, + "hihatopclo.ds": { + "_isFile": true + } + }, + "tr808": { + "Ride.ds": { + "_isFile": true + }, + "Snr_snap.ds": { + "_isFile": true + }, + "Tom_lo.ds": { + "_isFile": true + }, + "Kick.ds": { + "_isFile": true + }, + "Hat_c.ds": { + "_isFile": true + }, + "Rimshot.ds": { + "_isFile": true + }, + "Cowbell.ds": { + "_isFile": true + }, + "Snare.ds": { + "_isFile": true + }, + "Clave.ds": { + "_isFile": true + }, + "Handclap.ds": { + "_isFile": true + }, + "Kickhard.ds": { + "_isFile": true + }, + "Tom_mid.ds": { + "_isFile": true + }, + "Tom_hi.ds": { + "_isFile": true + }, + "Kicklong.ds": { + "_isFile": true + }, + "Hat_o.ds": { + "_isFile": true + } + }, + "magnetboy": { + "Mist1.ds": { + "_isFile": true + }, + "Tone12.ds": { + "_isFile": true + }, + "Tone2.ds": { + "_isFile": true + }, + "Tone4.ds": { + "_isFile": true + }, + "Tone3.ds": { + "_isFile": true + }, + "Fp1.ds": { + "_isFile": true + }, + "Tone6.ds": { + "_isFile": true + }, + "Mist2.ds": { + "_isFile": true + }, + "Squelb.ds": { + "_isFile": true + }, + "Tone_float1.ds": { + "_isFile": true + }, + "Eye_Eye.ds": { + "_isFile": true + }, + "Tone15.ds": { + "_isFile": true + }, + "Tone1.ds": { + "_isFile": true + }, + "Tone5.ds": { + "_isFile": true + }, + "Tone19.ds": { + "_isFile": true + }, + "Throaties1.ds": { + "_isFile": true + }, + "Tone9.ds": { + "_isFile": true + }, + "Randion1.ds": { + "_isFile": true + }, + "Tone20.ds": { + "_isFile": true + }, + "Tone11.ds": { + "_isFile": true + }, + "Tone18.ds": { + "_isFile": true + }, + "Tone16.ds": { + "_isFile": true + }, + "Tone10.ds": { + "_isFile": true + }, + "Tone7.ds": { + "_isFile": true + }, + "Tone8.ds": { + "_isFile": true + }, + "Tone17.ds": { + "_isFile": true + }, + "Tone14.ds": { + "_isFile": true + } + } + }, + "effects": { + "stop01.ogg": { + "_isFile": true + }, + "start01.ogg": { + "_isFile": true + }, + "warp01.ogg": { + "_isFile": true + }, + "wind_chimes01.ogg": { + "_isFile": true + }, + "start02.ogg": { + "_isFile": true + }, + "explode01.ogg": { + "_isFile": true + }, + "scratch01.ogg": { + "_isFile": true + }, + "filter_sweep01.ogg": { + "_isFile": true + }, + "chroma_sound_effect01.ogg": { + "_isFile": true + }, + "warp02.ogg": { + "_isFile": true + } + }, + "misc": { + "applause01.ogg": { + "_isFile": true + }, + "undefined01.ogg": { + "_isFile": true + }, + "bass!.ogg": { + "_isFile": true + }, + "snaph01.ogg": { + "_isFile": true + }, + "breath01.ogg": { + "_isFile": true + }, + "hit02.ogg": { + "_isFile": true + }, + "metronome01.ogg": { + "_isFile": true + }, + "electric_ping01.ogg": { + "_isFile": true + }, + "hit01.ogg": { + "_isFile": true + }, + "metronome02.ogg": { + "_isFile": true + }, + "dong03.ogg": { + "_isFile": true + }, + "metalish_dong01.ogg": { + "_isFile": true + }, + "dong02.ogg": { + "_isFile": true + }, + "buzz!.ogg": { + "_isFile": true + }, + "raving_crowd01.ogg": { + "_isFile": true + }, + "dong01.ogg": { + "_isFile": true + } + }, + "beats": { + "break03.ogg": { + "_isFile": true + }, + "rave_snare01.ogg": { + "_isFile": true + }, + "jungle01.ogg": { + "_isFile": true + }, + "electro_beat01.ogg": { + "_isFile": true + }, + "rave_kick02.ogg": { + "_isFile": true + }, + "909beat01.ogg": { + "_isFile": true + }, + "rave_kick01.ogg": { + "_isFile": true + }, + "house_loop01.ogg": { + "_isFile": true + }, + "rave_hihat01.ogg": { + "_isFile": true + }, + "break02.ogg": { + "_isFile": true + }, + "rave_hihat02.ogg": { + "_isFile": true + }, + "break01.ogg": { + "_isFile": true + }, + "electro_beat02.ogg": { + "_isFile": true + } + }, + "basses": { + "rave_bass04.ogg": { + "_isFile": true + }, + "matrix1000_pluck01.ogg": { + "_isFile": true + }, + "rave_bass03.ogg": { + "_isFile": true + }, + "bass_acid01.ogg": { + "_isFile": true + }, + "techno_synth01.ogg": { + "_isFile": true + }, + "bass01.ogg": { + "_isFile": true + }, + "synth_acid02.ogg": { + "_isFile": true + }, + "bass_hard01.ogg": { + "_isFile": true + }, + "horror_bass01.ogg": { + "_isFile": true + }, + "bass_acid02.ogg": { + "_isFile": true + }, + "rave_bass02.ogg": { + "_isFile": true + }, + "synth_acid01.ogg": { + "_isFile": true + }, + "bass_punch01.ogg": { + "_isFile": true + }, + "rave_bass01.ogg": { + "_isFile": true + }, + "bass_hard02.ogg": { + "_isFile": true + } + }, + "stringsnpads": { + "chorus02.ogg": { + "_isFile": true + }, + "bell_choir01.ogg": { + "_isFile": true + }, + "strings01.ogg": { + "_isFile": true + }, + "space_strings01.ogg": { + "_isFile": true + }, + "space_strings03.ogg": { + "_isFile": true + }, + "nord_ambient01.ogg": { + "_isFile": true + }, + "orion_string01.ogg": { + "_isFile": true + }, + "heaven_strings01.ogg": { + "_isFile": true + }, + "korg_poly6_drone01.ogg": { + "_isFile": true + }, + "bell_choir02.ogg": { + "_isFile": true + }, + "rave_choir01.ogg": { + "_isFile": true + }, + "space_strings02.ogg": { + "_isFile": true + }, + "juno_pad01.ogg": { + "_isFile": true + }, + "chorus01.ogg": { + "_isFile": true + } + }, + "shapes": { + "bunglist7.wav": { + "_isFile": true + }, + "technobass.wav": { + "_isFile": true + }, + "moog.wav": { + "_isFile": true + }, + "smooth_inv_saw_dist.ogg": { + "_isFile": true + }, + "vowel_a.wav": { + "_isFile": true + }, + "roundsaw.ogg": { + "_isFile": true + }, + "additive2.wav": { + "_isFile": true + }, + "smooth_inv_saw.ogg": { + "_isFile": true + }, + "bunglist9.wav": { + "_isFile": true + }, + "technosynth1.wav": { + "_isFile": true + }, + "technosynth5.wav": { + "_isFile": true + }, + "harmonics.wav": { + "_isFile": true + }, + "smooth_inv_saw2.ogg": { + "_isFile": true + }, + "bunglist2.wav": { + "_isFile": true + }, + "bunglist5.wav": { + "_isFile": true + }, + "sine_dist.ogg": { + "_isFile": true + }, + "technosynth3.wav": { + "_isFile": true + }, + "micro.wav": { + "_isFile": true + }, + "bunglist.wav": { + "_isFile": true + }, + "technosynth6.wav": { + "_isFile": true + }, + "technosynth2.wav": { + "_isFile": true + }, + "bunglist6.wav": { + "_isFile": true + }, + "bunglist3.wav": { + "_isFile": true + }, + "low_sine.wav": { + "_isFile": true + }, + "saw+sine.wav": { + "_isFile": true + }, + "bunglist4.wav": { + "_isFile": true + }, + "additive.wav": { + "_isFile": true + }, + "bunglist8.wav": { + "_isFile": true + }, + "vowel_u.wav": { + "_isFile": true + }, + "roundbass.wav": { + "_isFile": true + }, + "technosynth4.wav": { + "_isFile": true + } + }, + "waveforms": { + "lfo_trancegate_quarter.flac": { + "_isFile": true + }, + "modsqr.flac": { + "_isFile": true + }, + "lfo_trancegate_triplet_quarter.flac": { + "_isFile": true + }, + "w2_invsine.flac": { + "_isFile": true + }, + "w2_invsinehalf.flac": { + "_isFile": true + }, + "w2_addsyn.flac": { + "_isFile": true + }, + "w2_sharp.flac": { + "_isFile": true + }, + "lfo_trancegate_triplet_half_2.flac": { + "_isFile": true + }, + "saw1.flac": { + "_isFile": true + }, + "w2_rad.flac": { + "_isFile": true + }, + "w2_sawsine.flac": { + "_isFile": true + }, + "lfo_trancegate_sawdecay_quarter.flac": { + "_isFile": true + }, + "w2_noisy.flac": { + "_isFile": true + }, + "w2_hexagon.flac": { + "_isFile": true + }, + "saw2.flac": { + "_isFile": true + }, + "analogsqr.flac": { + "_isFile": true + }, + "w2_invsineabs.flac": { + "_isFile": true + }, + "lfo_trancegate_triplet_half.flac": { + "_isFile": true + }, + "sinesaw.flac": { + "_isFile": true + }, + "fmsaw1.flac": { + "_isFile": true + }, + "lfo_trancegate_sinedecay_quarter.flac": { + "_isFile": true + }, + "10saw.flac": { + "_isFile": true + }, + "fmsine2.flac": { + "_isFile": true + }, + "10tri.flac": { + "_isFile": true + }, + "lfo_trancegate_whole_2.flac": { + "_isFile": true + }, + "10sine.flac": { + "_isFile": true + }, + "w2_angrysaw.flac": { + "_isFile": true + }, + "w2_w-wave.flac": { + "_isFile": true + }, + "10sqr.flac": { + "_isFile": true + }, + "halfsine.flac": { + "_isFile": true + }, + "fmsine.flac": { + "_isFile": true + }, + "impulse.flac": { + "_isFile": true + }, + "lfo_trancegate_whole.flac": { + "_isFile": true + } + }, + "bassloops": { + "techno_synth04.ogg": { + "_isFile": true + }, + "tb303_01.ogg": { + "_isFile": true + }, + "techno_synth01.ogg": { + "_isFile": true + }, + "techno_synth02.ogg": { + "_isFile": true + }, + "techno_bass01.ogg": { + "_isFile": true + }, + "techno_synth03.ogg": { + "_isFile": true + }, + "rave_bass02.ogg": { + "_isFile": true + }, + "briff01.ogg": { + "_isFile": true + }, + "rave_bass01.ogg": { + "_isFile": true + }, + "techno_bass02.ogg": { + "_isFile": true + } + }, + "latin": { + "latin_brass01.ogg": { + "_isFile": true + }, + "latin_guitar03.ogg": { + "_isFile": true + }, + "latin_guitar02.ogg": { + "_isFile": true + }, + "latin_guitar01.ogg": { + "_isFile": true + } + }, + "drums": { + "hihat_opened03.ogg": { + "_isFile": true + }, + "kick_long01.ogg": { + "_isFile": true + }, + "clap02.ogg": { + "_isFile": true + }, + "kick03.ogg": { + "_isFile": true + }, + "kick_hardcore01.ogg": { + "_isFile": true + }, + "hihat_opened02.ogg": { + "_isFile": true + }, + "snare_muffled02.ogg": { + "_isFile": true + }, + "kick01.ogg": { + "_isFile": true + }, + "nasty_bass01.ogg": { + "_isFile": true + }, + "hihat_closed05.ogg": { + "_isFile": true + }, + "tom03.ogg": { + "_isFile": true + }, + "tom05.ogg": { + "_isFile": true + }, + "kick_hiphop01.ogg": { + "_isFile": true + }, + "clav02.ogg": { + "_isFile": true + }, + "nasty_snare01.ogg": { + "_isFile": true + }, + "snare_hiphop02.ogg": { + "_isFile": true + }, + "tom02.ogg": { + "_isFile": true + }, + "snare_hiphop01.ogg": { + "_isFile": true + }, + "clap01.ogg": { + "_isFile": true + }, + "zap03.ogg": { + "_isFile": true + }, + "bassdrum_acoustic02.ogg": { + "_isFile": true + }, + "tom_low01.ogg": { + "_isFile": true + }, + "snare_short01.ogg": { + "_isFile": true + }, + "bassdrum03.ogg": { + "_isFile": true + }, + "bassdrum04.ogg": { + "_isFile": true + }, + "bassdrum01.ogg": { + "_isFile": true + }, + "snare_harsh01.ogg": { + "_isFile": true + }, + "shaker03.ogg": { + "_isFile": true + }, + "tom_mid01.ogg": { + "_isFile": true + }, + "snare_muffled01.ogg": { + "_isFile": true + }, + "snare_electro01.ogg": { + "_isFile": true + }, + "crash02.ogg": { + "_isFile": true + }, + "sidestick01.ogg": { + "_isFile": true + }, + "hihat_closed03.ogg": { + "_isFile": true + }, + "snare_acoustic01.ogg": { + "_isFile": true + }, + "hihat_closed01.ogg": { + "_isFile": true + }, + "kick02.ogg": { + "_isFile": true + }, + "shaker02.ogg": { + "_isFile": true + }, + "nasty_rim01.ogg": { + "_isFile": true + }, + "wood01.ogg": { + "_isFile": true + }, + "snare02.ogg": { + "_isFile": true + }, + "crash01.ogg": { + "_isFile": true + }, + "hihat_opened01.ogg": { + "_isFile": true + }, + "ride02.ogg": { + "_isFile": true + }, + "ride01.ogg": { + "_isFile": true + }, + "snare04.ogg": { + "_isFile": true + }, + "tom01.ogg": { + "_isFile": true + }, + "bassdrum02.ogg": { + "_isFile": true + }, + "zap02.ogg": { + "_isFile": true + }, + "snare06.ogg": { + "_isFile": true + }, + "zap01.ogg": { + "_isFile": true + }, + "rim01.ogg": { + "_isFile": true + }, + "snare01.ogg": { + "_isFile": true + }, + "hihat_foot_pedal01.ogg": { + "_isFile": true + }, + "snare03.ogg": { + "_isFile": true + }, + "clav01.ogg": { + "_isFile": true + }, + "clap04.ogg": { + "_isFile": true + }, + "kick_soft02.ogg": { + "_isFile": true + }, + "snare07.ogg": { + "_isFile": true + }, + "clap03.ogg": { + "_isFile": true + }, + "kick_hard01.ogg": { + "_isFile": true + }, + "snare_rim01.ogg": { + "_isFile": true + }, + "shaker01.ogg": { + "_isFile": true + }, + "hihat_closed04.ogg": { + "_isFile": true + }, + "snare05.ogg": { + "_isFile": true + }, + "bassdrum_acoustic01.ogg": { + "_isFile": true + }, + "kick_soft01.ogg": { + "_isFile": true + }, + "kick04.ogg": { + "_isFile": true + }, + "tom04.ogg": { + "_isFile": true + }, + "hihat_closed02.ogg": { + "_isFile": true + }, + "kick_distorted01.ogg": { + "_isFile": true + }, + "tom_hi01.ogg": { + "_isFile": true + } + }, + "instruments": { + "flute01.ogg": { + "_isFile": true + }, + "e_organ01.ogg": { + "_isFile": true + }, + "trumpet01.ogg": { + "_isFile": true + }, + "violin_fingered01.ogg": { + "_isFile": true + }, + "e_piano_accord02.ogg": { + "_isFile": true + }, + "steel_guitar_heavy_distorted01.ogg": { + "_isFile": true + }, + "church_organ04.ogg": { + "_isFile": true + }, + "steel_guitar_medium_distorted01.ogg": { + "_isFile": true + }, + "violin_double_stop01.ogg": { + "_isFile": true + }, + "steel_guitar_slight_distorted01.ogg": { + "_isFile": true + }, + "church_organ01.ogg": { + "_isFile": true + }, + "violin_pizzicato01.ogg": { + "_isFile": true + }, + "bassslap01.ogg": { + "_isFile": true + }, + "harpsichord01.ogg": { + "_isFile": true + }, + "piano02.ogg": { + "_isFile": true + }, + "church_organ03.ogg": { + "_isFile": true + }, + "cello01.ogg": { + "_isFile": true + }, + "bassslap02.ogg": { + "_isFile": true + }, + "church_organ02.ogg": { + "_isFile": true + }, + "e_piano_accord01.ogg": { + "_isFile": true + }, + "piano01.ogg": { + "_isFile": true + }, + "steel_guitar01.ogg": { + "_isFile": true + } + } +} \ No newline at end of file diff --git a/_data/src_audio_files.json b/metadata/src_audio_files.json similarity index 100% rename from _data/src_audio_files.json rename to metadata/src_audio_files.json diff --git a/scripts/creation/generateManifest.py b/scripts/creation/generateManifest.py new file mode 100644 index 0000000..becbd96 --- /dev/null +++ b/scripts/creation/generateManifest.py @@ -0,0 +1,101 @@ +import os +import json + +# --- Configuração de Caminhos Dinâmicos --- +# Descobre o caminho absoluto do script que está sendo executado. +# __file__ é uma variável especial do Python que contém o caminho para o arquivo atual. +SCRIPT_PATH = os.path.abspath(__file__) + +# Descobre o diretório onde o script está (ex: /.../mmpSearch/scripts/creation) +SCRIPT_DIR = os.path.dirname(SCRIPT_PATH) + +# Define a raiz do projeto subindo dois níveis de diretório (de 'creation' para 'scripts', e de 'scripts' para 'mmpSearch') +PROJECT_ROOT = os.path.abspath(os.path.join(SCRIPT_DIR, '..', '..')) + +print(f"Raiz do projeto detectada em: {PROJECT_ROOT}") + + +# --- Configuração dos Manifestos --- +# Os caminhos aqui são relativos à RAIZ DO PROJETO. +CONFIGS = [ + { + "source_dir": "src/samples", + "output_file": "metadata/samples-manifest.json", + "scan_type": "tree" + }, + { + "source_dir": "mmp", + "output_file": "metadata/mmp-manifest.json", + "scan_type": "list", + "extensions": ['.mmp', '.mmpz'] + } +] + +def scan_directory_tree(path): + """ + Função recursiva que escaneia um diretório e constrói uma + estrutura de dicionário (árvore) representando as pastas e arquivos. + """ + tree = {} + if not os.path.isdir(path): + return tree + for item in os.listdir(path): + full_path = os.path.join(path, item) + if os.path.isdir(full_path): + tree[item] = scan_directory_tree(full_path) + else: + # (CORREÇÃO) Volte a usar o objeto que o JavaScript espera. + tree[item] = {"_isFile": True} + return tree + +def scan_directory_list(path, allowed_extensions): + """ + Função que escaneia um diretório e retorna uma lista simples + de nomes de arquivos, filtrando por extensões permitidas. + """ + file_list = [] + if not os.path.isdir(path): # Adiciona verificação + return file_list + for item in os.listdir(path): + full_path = os.path.join(path, item) + if os.path.isfile(full_path) and any(item.lower().endswith(ext) for ext in allowed_extensions): + file_list.append(item) + return sorted(file_list) + +# --- Execução Principal do Script --- +if __name__ == "__main__": + print("\nIniciando geração de arquivos de manifesto...") + + for config in CONFIGS: + # Monta os caminhos ABSOLUTOS usando a raiz do projeto + source_dir_abs = os.path.join(PROJECT_ROOT, config["source_dir"]) + output_file_abs = os.path.join(PROJECT_ROOT, config["output_file"]) + scan_type = config["scan_type"] + + print(f"\nProcessando '{config['source_dir']}' -> '{config['output_file']}'...") + + if not os.path.isdir(source_dir_abs): + print(f"AVISO: A pasta de origem '{source_dir_abs}' não foi encontrada. Arquivo não será gerado.") + continue + + result_data = None + try: + if scan_type == "tree": + result_data = scan_directory_tree(source_dir_abs) + elif scan_type == "list": + extensions = config.get("extensions", []) + result_data = scan_directory_list(source_dir_abs, extensions) + + if result_data is not None: + # Garante que o diretório de saída exista antes de salvar + output_dir = os.path.dirname(output_file_abs) + os.makedirs(output_dir, exist_ok=True) + + with open(output_file_abs, 'w', encoding='utf-8') as f: + json.dump(result_data, f, indent=2, ensure_ascii=False) + print(f"SUCESSO: Arquivo '{output_file_abs}' gerado!") + + except Exception as e: + print(f"ERRO inesperado ao processar a pasta '{source_dir_abs}': {e}") + + print("\nGeração de manifestos concluída.") \ No newline at end of file diff --git a/scripts/handler/automations/automations.py b/scripts/handler/automations/automations.py index b082281..5c7b49c 100644 --- a/scripts/handler/automations/automations.py +++ b/scripts/handler/automations/automations.py @@ -25,7 +25,9 @@ def parse_automation(file_path): if automationtrack is not None: automation_info['automationtrack'] = 'Present' - # Lendo as tags de automationpattern (caso existam) + # Lendo as tags de automationpattern (caso existam) + # caso não existam, seta um valor default + # (assim acontece para, basicamente, todas as tags) for automationpattern in track.findall('./automationpattern'): automation_pattern_info = { 'name': automationpattern.attrib.get('name', 'N/A'), diff --git a/src/dtd/mmp.md b/src/dtd/mmp.md new file mode 100644 index 0000000..97cbd99 --- /dev/null +++ b/src/dtd/mmp.md @@ -0,0 +1,179 @@ +# Documentação do Arquivo .mmp (LMMS) + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - `version` (**Obrigatório**) — Exemplos: `1.0` + - `type` (**Obrigatório**) — Exemplos: `song` + - `creator` (**Obrigatório**) — Exemplos: `LMMS` + - `creatorversion` (**Obrigatório**) — Exemplos: `1.2.2` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - `mastervol` (**Obrigatório**) — Exemplos: `100` + - `timesig_denominator` (**Obrigatório**) — Exemplos: `4` + - `bpm` (**Obrigatório**) — Exemplos: `140` + - `timesig_numerator` (**Obrigatório**) — Exemplos: `4` + - `masterpitch` (**Obrigatório**) — Exemplos: `0` + +## `` +- **Ocorrências**: 1 +- *(Sem atributos)* + +## `` +- **Ocorrências**: 2 +- **Atributos**: + - `width` (**Obrigatório**) — Exemplos: `700`, `600` + - `y` (**Obrigatório**) — Exemplos: `50`, `5` + - `minimized` (**Obrigatório**) — Exemplos: `0` + - `type` (**Obrigatório**) — Exemplos: `bbtrackcontainer`, `song` + - `visible` (**Obrigatório**) — Exemplos: `1` + - `x` (**Obrigatório**) — Exemplos: `266`, `5` + - `maximized` (**Obrigatório**) — Exemplos: `0` + - `height` (**Obrigatório**) — Exemplos: `400`, `300` + +## `` +- **Ocorrências**: 7 +- **Atributos**: + - `type` (**Obrigatório**) — Exemplos: `5`, `0`, `1` + - `solo` (**Obrigatório**) — Exemplos: `0` + - `muted` (**Obrigatório**) — Exemplos: `0` + - `name` (**Obrigatório**) — Exemplos: `Automation track`, `Kicker` + +## `` +- **Ocorrências**: 3 +- **Atributos**: + - `vol` (**Obrigatório**) — Exemplos: `100` + - `pitch` (**Obrigatório**) — Exemplos: `0` + - `fxch` (**Obrigatório**) — Exemplos: `0` + - `pitchrange` (**Obrigatório**) — Exemplos: `1` + - `basenote` (**Obrigatório**) — Exemplos: `57` + - `usemasterpitch` (**Obrigatório**) — Exemplos: `1` + - `pan` (**Obrigatório**) — Exemplos: `0` + +## `` +- **Ocorrências**: 3 +- **Atributos**: + - `name` (**Obrigatório**) — Exemplos: `audiofileprocessor`, `kicker`, `tripleoscillator` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos são **Obrigatórios** neste contexto (pois há uma única ocorrência) + - Exemplos incluem: + - `wavetype0`: `0`, `userwavefile0`: ``, `vol0`: `33`, `pan0`: `0`, `phoffset0`: `0`, etc. + +## ``, ``, ``, `` +- **Ocorrências**: 3 (cada) +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `att`: `0`, `dec`: `0.5`, `rel`: `0.1`, `lspd`: `0.1`, `userwavefile`: `` + +## `` +- **Ocorrências**: 3 +- **Atributos**: + - `chordrange` (**Obrigatório**) — Exemplos: `1` + - `chord-enabled` (**Obrigatório**) — Exemplos: `0` + - `chord` (**Obrigatório**) — Exemplos: `0` + +## `` +- **Ocorrências**: 3 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `arp`: `0`, `arpdir`: `0`, `arpgate`: `100` + +## `` +- **Ocorrências**: 3 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `inputchannel`: `0`, `outputchannel`: `1` + +## `` +- **Ocorrências**: 5 +- **Atributos**: + - `enabled` (**Obrigatório**) — Exemplos: `0` + - `numofeffects` (**Obrigatório**) — Exemplos: `0` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - `vol`, `pan` (**Obrigatórios**) — Exemplos: `100`, `0` + +## `` +- **Ocorrências**: 1 +- *(Sem atributos)* + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos são **Obrigatórios** + - Exemplos: `decay`: `440`, `dist`: `0.8`, `startfreq`: `150` + +## `` +- **Ocorrências**: 2 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `steps`: `16`, `name`: `Kicker`, `clap04.ogg` + +## `` +- **Ocorrências**: 5 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `key`: `57`, `vol`: `100`, `len`: `-192` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `src`: `drums/clap04.ogg`, `looped`: `0`, `reversed`: `0` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `name`: ``, `pos`: `0`, `len`: `192` + +## `` +- **Ocorrências**: 2 +- *(Sem atributos)* + +## `` +- **Ocorrências**: 5 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `name`: `Tempo`, `len`: `192`, `prog`: `0` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `width`: `543`, `height`: `333`, `visible`: `1` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `name`: `Master`, `volume`: `1` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `width`: `350`, `visible`: `1` + +## ``, ``, `` +- **Ocorrências**: 1 (cada) +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `visible`: `0`, `width`: `860` + +## `` +- **Ocorrências**: 1 +- **Atributos**: + - Todos **Obrigatórios** + - Exemplos: `lp0pos`: `0`, `lp1pos`: `192` + +## `` +- **Ocorrências**: 1 +- *(Sem atributos)* \ No newline at end of file diff --git a/src/dtd/mmp.xsd b/src/dtd/mmp.xsd new file mode 100644 index 0000000..555f270 --- /dev/null +++ b/src/dtd/mmp.xsd @@ -0,0 +1,512 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/samples/basses/bass01.ogg b/src/samples/basses/bass01.ogg new file mode 100644 index 0000000..4ab909e Binary files /dev/null and b/src/samples/basses/bass01.ogg differ diff --git a/src/samples/basses/bass_acid01.ogg b/src/samples/basses/bass_acid01.ogg new file mode 100644 index 0000000..b47c3ed Binary files /dev/null and b/src/samples/basses/bass_acid01.ogg differ diff --git a/src/samples/basses/bass_acid02.ogg b/src/samples/basses/bass_acid02.ogg new file mode 100644 index 0000000..562bb7b Binary files /dev/null and b/src/samples/basses/bass_acid02.ogg differ diff --git a/src/samples/basses/bass_hard01.ogg b/src/samples/basses/bass_hard01.ogg new file mode 100644 index 0000000..a49cd4a Binary files /dev/null and b/src/samples/basses/bass_hard01.ogg differ diff --git a/src/samples/basses/bass_hard02.ogg b/src/samples/basses/bass_hard02.ogg new file mode 100644 index 0000000..eea1923 Binary files /dev/null and b/src/samples/basses/bass_hard02.ogg differ diff --git a/src/samples/basses/bass_punch01.ogg b/src/samples/basses/bass_punch01.ogg new file mode 100644 index 0000000..c38c102 Binary files /dev/null and b/src/samples/basses/bass_punch01.ogg differ diff --git a/src/samples/basses/horror_bass01.ogg b/src/samples/basses/horror_bass01.ogg new file mode 100644 index 0000000..395c200 Binary files /dev/null and b/src/samples/basses/horror_bass01.ogg differ diff --git a/src/samples/basses/matrix1000_pluck01.ogg b/src/samples/basses/matrix1000_pluck01.ogg new file mode 100644 index 0000000..a39fd7a Binary files /dev/null and b/src/samples/basses/matrix1000_pluck01.ogg differ diff --git a/src/samples/basses/rave_bass01.ogg b/src/samples/basses/rave_bass01.ogg new file mode 100644 index 0000000..57a5802 Binary files /dev/null and b/src/samples/basses/rave_bass01.ogg differ diff --git a/src/samples/basses/rave_bass02.ogg b/src/samples/basses/rave_bass02.ogg new file mode 100644 index 0000000..54c316c Binary files /dev/null and b/src/samples/basses/rave_bass02.ogg differ diff --git a/src/samples/basses/rave_bass03.ogg b/src/samples/basses/rave_bass03.ogg new file mode 100644 index 0000000..07438e6 Binary files /dev/null and b/src/samples/basses/rave_bass03.ogg differ diff --git a/src/samples/basses/rave_bass04.ogg b/src/samples/basses/rave_bass04.ogg new file mode 100644 index 0000000..187a627 Binary files /dev/null and b/src/samples/basses/rave_bass04.ogg differ diff --git a/src/samples/basses/synth_acid01.ogg b/src/samples/basses/synth_acid01.ogg new file mode 100644 index 0000000..7abbc99 Binary files /dev/null and b/src/samples/basses/synth_acid01.ogg differ diff --git a/src/samples/basses/synth_acid02.ogg b/src/samples/basses/synth_acid02.ogg new file mode 100644 index 0000000..d716027 Binary files /dev/null and b/src/samples/basses/synth_acid02.ogg differ diff --git a/src/samples/basses/techno_synth01.ogg b/src/samples/basses/techno_synth01.ogg new file mode 100644 index 0000000..634bd6a Binary files /dev/null and b/src/samples/basses/techno_synth01.ogg differ diff --git a/src/samples/bassloops/briff01.ogg b/src/samples/bassloops/briff01.ogg new file mode 100644 index 0000000..a307df8 Binary files /dev/null and b/src/samples/bassloops/briff01.ogg differ diff --git a/src/samples/bassloops/rave_bass01.ogg b/src/samples/bassloops/rave_bass01.ogg new file mode 100644 index 0000000..920ff4a Binary files /dev/null and b/src/samples/bassloops/rave_bass01.ogg differ diff --git a/src/samples/bassloops/rave_bass02.ogg b/src/samples/bassloops/rave_bass02.ogg new file mode 100644 index 0000000..ff38123 Binary files /dev/null and b/src/samples/bassloops/rave_bass02.ogg differ diff --git a/src/samples/bassloops/tb303_01.ogg b/src/samples/bassloops/tb303_01.ogg new file mode 100644 index 0000000..41e1b1f Binary files /dev/null and b/src/samples/bassloops/tb303_01.ogg differ diff --git a/src/samples/bassloops/techno_bass01.ogg b/src/samples/bassloops/techno_bass01.ogg new file mode 100644 index 0000000..15c2c8e Binary files /dev/null and b/src/samples/bassloops/techno_bass01.ogg differ diff --git a/src/samples/bassloops/techno_bass02.ogg b/src/samples/bassloops/techno_bass02.ogg new file mode 100644 index 0000000..08691f4 Binary files /dev/null and b/src/samples/bassloops/techno_bass02.ogg differ diff --git a/src/samples/bassloops/techno_synth01.ogg b/src/samples/bassloops/techno_synth01.ogg new file mode 100644 index 0000000..95c3d96 Binary files /dev/null and b/src/samples/bassloops/techno_synth01.ogg differ diff --git a/src/samples/bassloops/techno_synth02.ogg b/src/samples/bassloops/techno_synth02.ogg new file mode 100644 index 0000000..dfa972e Binary files /dev/null and b/src/samples/bassloops/techno_synth02.ogg differ diff --git a/src/samples/bassloops/techno_synth03.ogg b/src/samples/bassloops/techno_synth03.ogg new file mode 100644 index 0000000..c27cda6 Binary files /dev/null and b/src/samples/bassloops/techno_synth03.ogg differ diff --git a/src/samples/bassloops/techno_synth04.ogg b/src/samples/bassloops/techno_synth04.ogg new file mode 100644 index 0000000..0e9a373 Binary files /dev/null and b/src/samples/bassloops/techno_synth04.ogg differ diff --git a/src/samples/beats/909beat01.ogg b/src/samples/beats/909beat01.ogg new file mode 100644 index 0000000..1892eb9 Binary files /dev/null and b/src/samples/beats/909beat01.ogg differ diff --git a/src/samples/beats/break01.ogg b/src/samples/beats/break01.ogg new file mode 100644 index 0000000..d1f5769 Binary files /dev/null and b/src/samples/beats/break01.ogg differ diff --git a/src/samples/beats/break02.ogg b/src/samples/beats/break02.ogg new file mode 100644 index 0000000..17243cd Binary files /dev/null and b/src/samples/beats/break02.ogg differ diff --git a/src/samples/beats/break03.ogg b/src/samples/beats/break03.ogg new file mode 100644 index 0000000..f806be7 Binary files /dev/null and b/src/samples/beats/break03.ogg differ diff --git a/src/samples/beats/electro_beat01.ogg b/src/samples/beats/electro_beat01.ogg new file mode 100644 index 0000000..57cd690 Binary files /dev/null and b/src/samples/beats/electro_beat01.ogg differ diff --git a/src/samples/beats/electro_beat02.ogg b/src/samples/beats/electro_beat02.ogg new file mode 100644 index 0000000..b89260b Binary files /dev/null and b/src/samples/beats/electro_beat02.ogg differ diff --git a/src/samples/beats/house_loop01.ogg b/src/samples/beats/house_loop01.ogg new file mode 100644 index 0000000..09f3a26 Binary files /dev/null and b/src/samples/beats/house_loop01.ogg differ diff --git a/src/samples/beats/jungle01.ogg b/src/samples/beats/jungle01.ogg new file mode 100644 index 0000000..9662e45 Binary files /dev/null and b/src/samples/beats/jungle01.ogg differ diff --git a/src/samples/beats/rave_hihat01.ogg b/src/samples/beats/rave_hihat01.ogg new file mode 100644 index 0000000..236f447 Binary files /dev/null and b/src/samples/beats/rave_hihat01.ogg differ diff --git a/src/samples/beats/rave_hihat02.ogg b/src/samples/beats/rave_hihat02.ogg new file mode 100644 index 0000000..33329bd Binary files /dev/null and b/src/samples/beats/rave_hihat02.ogg differ diff --git a/src/samples/beats/rave_kick01.ogg b/src/samples/beats/rave_kick01.ogg new file mode 100644 index 0000000..79f99ff Binary files /dev/null and b/src/samples/beats/rave_kick01.ogg differ diff --git a/src/samples/beats/rave_kick02.ogg b/src/samples/beats/rave_kick02.ogg new file mode 100644 index 0000000..4631128 Binary files /dev/null and b/src/samples/beats/rave_kick02.ogg differ diff --git a/src/samples/beats/rave_snare01.ogg b/src/samples/beats/rave_snare01.ogg new file mode 100644 index 0000000..ceec2d6 Binary files /dev/null and b/src/samples/beats/rave_snare01.ogg differ diff --git a/src/samples/drums/bassdrum01.ogg b/src/samples/drums/bassdrum01.ogg new file mode 100644 index 0000000..5e5b621 Binary files /dev/null and b/src/samples/drums/bassdrum01.ogg differ diff --git a/src/samples/drums/bassdrum02.ogg b/src/samples/drums/bassdrum02.ogg new file mode 100644 index 0000000..cea10c8 Binary files /dev/null and b/src/samples/drums/bassdrum02.ogg differ diff --git a/src/samples/drums/bassdrum03.ogg b/src/samples/drums/bassdrum03.ogg new file mode 100644 index 0000000..d1aa842 Binary files /dev/null and b/src/samples/drums/bassdrum03.ogg differ diff --git a/src/samples/drums/bassdrum04.ogg b/src/samples/drums/bassdrum04.ogg new file mode 100644 index 0000000..a9db986 Binary files /dev/null and b/src/samples/drums/bassdrum04.ogg differ diff --git a/src/samples/drums/bassdrum_acoustic01.ogg b/src/samples/drums/bassdrum_acoustic01.ogg new file mode 100644 index 0000000..b50d6d7 Binary files /dev/null and b/src/samples/drums/bassdrum_acoustic01.ogg differ diff --git a/src/samples/drums/bassdrum_acoustic02.ogg b/src/samples/drums/bassdrum_acoustic02.ogg new file mode 100644 index 0000000..ece972e Binary files /dev/null and b/src/samples/drums/bassdrum_acoustic02.ogg differ diff --git a/src/samples/drums/clap01.ogg b/src/samples/drums/clap01.ogg new file mode 100644 index 0000000..233fcd1 Binary files /dev/null and b/src/samples/drums/clap01.ogg differ diff --git a/src/samples/drums/clap02.ogg b/src/samples/drums/clap02.ogg new file mode 100644 index 0000000..9e65e2f Binary files /dev/null and b/src/samples/drums/clap02.ogg differ diff --git a/src/samples/drums/clap03.ogg b/src/samples/drums/clap03.ogg new file mode 100644 index 0000000..2a360e6 Binary files /dev/null and b/src/samples/drums/clap03.ogg differ diff --git a/src/samples/drums/clap04.ogg b/src/samples/drums/clap04.ogg new file mode 100644 index 0000000..b1faa6f Binary files /dev/null and b/src/samples/drums/clap04.ogg differ diff --git a/src/samples/drums/clav01.ogg b/src/samples/drums/clav01.ogg new file mode 100644 index 0000000..7176f47 Binary files /dev/null and b/src/samples/drums/clav01.ogg differ diff --git a/src/samples/drums/clav02.ogg b/src/samples/drums/clav02.ogg new file mode 100644 index 0000000..8c79de1 Binary files /dev/null and b/src/samples/drums/clav02.ogg differ diff --git a/src/samples/drums/crash01.ogg b/src/samples/drums/crash01.ogg new file mode 100644 index 0000000..8d5983e Binary files /dev/null and b/src/samples/drums/crash01.ogg differ diff --git a/src/samples/drums/crash02.ogg b/src/samples/drums/crash02.ogg new file mode 100644 index 0000000..18f7e5e Binary files /dev/null and b/src/samples/drums/crash02.ogg differ diff --git a/src/samples/drums/hihat_closed01.ogg b/src/samples/drums/hihat_closed01.ogg new file mode 100644 index 0000000..642fab5 Binary files /dev/null and b/src/samples/drums/hihat_closed01.ogg differ diff --git a/src/samples/drums/hihat_closed02.ogg b/src/samples/drums/hihat_closed02.ogg new file mode 100644 index 0000000..9789af9 Binary files /dev/null and b/src/samples/drums/hihat_closed02.ogg differ diff --git a/src/samples/drums/hihat_closed03.ogg b/src/samples/drums/hihat_closed03.ogg new file mode 100644 index 0000000..b6c4713 Binary files /dev/null and b/src/samples/drums/hihat_closed03.ogg differ diff --git a/src/samples/drums/hihat_closed04.ogg b/src/samples/drums/hihat_closed04.ogg new file mode 100644 index 0000000..6532516 Binary files /dev/null and b/src/samples/drums/hihat_closed04.ogg differ diff --git a/src/samples/drums/hihat_closed05.ogg b/src/samples/drums/hihat_closed05.ogg new file mode 100644 index 0000000..02b270a Binary files /dev/null and b/src/samples/drums/hihat_closed05.ogg differ diff --git a/src/samples/drums/hihat_foot_pedal01.ogg b/src/samples/drums/hihat_foot_pedal01.ogg new file mode 100644 index 0000000..ab2caf2 Binary files /dev/null and b/src/samples/drums/hihat_foot_pedal01.ogg differ diff --git a/src/samples/drums/hihat_opened01.ogg b/src/samples/drums/hihat_opened01.ogg new file mode 100644 index 0000000..6d229f3 Binary files /dev/null and b/src/samples/drums/hihat_opened01.ogg differ diff --git a/src/samples/drums/hihat_opened02.ogg b/src/samples/drums/hihat_opened02.ogg new file mode 100644 index 0000000..73e6bff Binary files /dev/null and b/src/samples/drums/hihat_opened02.ogg differ diff --git a/src/samples/drums/hihat_opened03.ogg b/src/samples/drums/hihat_opened03.ogg new file mode 100644 index 0000000..ce3b1c8 Binary files /dev/null and b/src/samples/drums/hihat_opened03.ogg differ diff --git a/src/samples/drums/kick01.ogg b/src/samples/drums/kick01.ogg new file mode 100644 index 0000000..a2e1620 Binary files /dev/null and b/src/samples/drums/kick01.ogg differ diff --git a/src/samples/drums/kick02.ogg b/src/samples/drums/kick02.ogg new file mode 100644 index 0000000..8afbc1a Binary files /dev/null and b/src/samples/drums/kick02.ogg differ diff --git a/src/samples/drums/kick03.ogg b/src/samples/drums/kick03.ogg new file mode 100644 index 0000000..80e0d2a Binary files /dev/null and b/src/samples/drums/kick03.ogg differ diff --git a/src/samples/drums/kick04.ogg b/src/samples/drums/kick04.ogg new file mode 100644 index 0000000..567480a Binary files /dev/null and b/src/samples/drums/kick04.ogg differ diff --git a/src/samples/drums/kick_distorted01.ogg b/src/samples/drums/kick_distorted01.ogg new file mode 100644 index 0000000..792e992 Binary files /dev/null and b/src/samples/drums/kick_distorted01.ogg differ diff --git a/src/samples/drums/kick_hard01.ogg b/src/samples/drums/kick_hard01.ogg new file mode 100644 index 0000000..1ca58d8 Binary files /dev/null and b/src/samples/drums/kick_hard01.ogg differ diff --git a/src/samples/drums/kick_hardcore01.ogg b/src/samples/drums/kick_hardcore01.ogg new file mode 100644 index 0000000..3d1c1eb Binary files /dev/null and b/src/samples/drums/kick_hardcore01.ogg differ diff --git a/src/samples/drums/kick_hiphop01.ogg b/src/samples/drums/kick_hiphop01.ogg new file mode 100644 index 0000000..7cc77f1 Binary files /dev/null and b/src/samples/drums/kick_hiphop01.ogg differ diff --git a/src/samples/drums/kick_long01.ogg b/src/samples/drums/kick_long01.ogg new file mode 100644 index 0000000..e2e4cfb Binary files /dev/null and b/src/samples/drums/kick_long01.ogg differ diff --git a/src/samples/drums/kick_soft01.ogg b/src/samples/drums/kick_soft01.ogg new file mode 100644 index 0000000..f45ecaf Binary files /dev/null and b/src/samples/drums/kick_soft01.ogg differ diff --git a/src/samples/drums/kick_soft02.ogg b/src/samples/drums/kick_soft02.ogg new file mode 100644 index 0000000..a20410c Binary files /dev/null and b/src/samples/drums/kick_soft02.ogg differ diff --git a/src/samples/drums/nasty_bass01.ogg b/src/samples/drums/nasty_bass01.ogg new file mode 100644 index 0000000..6af7d83 Binary files /dev/null and b/src/samples/drums/nasty_bass01.ogg differ diff --git a/src/samples/drums/nasty_rim01.ogg b/src/samples/drums/nasty_rim01.ogg new file mode 100644 index 0000000..d284a6a Binary files /dev/null and b/src/samples/drums/nasty_rim01.ogg differ diff --git a/src/samples/drums/nasty_snare01.ogg b/src/samples/drums/nasty_snare01.ogg new file mode 100644 index 0000000..4ebb196 Binary files /dev/null and b/src/samples/drums/nasty_snare01.ogg differ diff --git a/src/samples/drums/ride01.ogg b/src/samples/drums/ride01.ogg new file mode 100644 index 0000000..06e9c9c Binary files /dev/null and b/src/samples/drums/ride01.ogg differ diff --git a/src/samples/drums/ride02.ogg b/src/samples/drums/ride02.ogg new file mode 100644 index 0000000..f65ac1f Binary files /dev/null and b/src/samples/drums/ride02.ogg differ diff --git a/src/samples/drums/rim01.ogg b/src/samples/drums/rim01.ogg new file mode 100644 index 0000000..9b1a9ab Binary files /dev/null and b/src/samples/drums/rim01.ogg differ diff --git a/src/samples/drums/shaker01.ogg b/src/samples/drums/shaker01.ogg new file mode 100644 index 0000000..e0a5d91 Binary files /dev/null and b/src/samples/drums/shaker01.ogg differ diff --git a/src/samples/drums/shaker02.ogg b/src/samples/drums/shaker02.ogg new file mode 100644 index 0000000..6000320 Binary files /dev/null and b/src/samples/drums/shaker02.ogg differ diff --git a/src/samples/drums/shaker03.ogg b/src/samples/drums/shaker03.ogg new file mode 100644 index 0000000..03d4cbe Binary files /dev/null and b/src/samples/drums/shaker03.ogg differ diff --git a/src/samples/drums/sidestick01.ogg b/src/samples/drums/sidestick01.ogg new file mode 100644 index 0000000..ea8481f Binary files /dev/null and b/src/samples/drums/sidestick01.ogg differ diff --git a/src/samples/drums/snare01.ogg b/src/samples/drums/snare01.ogg new file mode 100644 index 0000000..84e6de1 Binary files /dev/null and b/src/samples/drums/snare01.ogg differ diff --git a/src/samples/drums/snare02.ogg b/src/samples/drums/snare02.ogg new file mode 100644 index 0000000..c6f8e48 Binary files /dev/null and b/src/samples/drums/snare02.ogg differ diff --git a/src/samples/drums/snare03.ogg b/src/samples/drums/snare03.ogg new file mode 100644 index 0000000..9f55bc2 Binary files /dev/null and b/src/samples/drums/snare03.ogg differ diff --git a/src/samples/drums/snare04.ogg b/src/samples/drums/snare04.ogg new file mode 100644 index 0000000..9a521d5 Binary files /dev/null and b/src/samples/drums/snare04.ogg differ diff --git a/src/samples/drums/snare05.ogg b/src/samples/drums/snare05.ogg new file mode 100644 index 0000000..5a34215 Binary files /dev/null and b/src/samples/drums/snare05.ogg differ diff --git a/src/samples/drums/snare06.ogg b/src/samples/drums/snare06.ogg new file mode 100644 index 0000000..97dc513 Binary files /dev/null and b/src/samples/drums/snare06.ogg differ diff --git a/src/samples/drums/snare07.ogg b/src/samples/drums/snare07.ogg new file mode 100644 index 0000000..a6b5869 Binary files /dev/null and b/src/samples/drums/snare07.ogg differ diff --git a/src/samples/drums/snare_acoustic01.ogg b/src/samples/drums/snare_acoustic01.ogg new file mode 100644 index 0000000..4643a02 Binary files /dev/null and b/src/samples/drums/snare_acoustic01.ogg differ diff --git a/src/samples/drums/snare_electro01.ogg b/src/samples/drums/snare_electro01.ogg new file mode 100644 index 0000000..2fb50a1 Binary files /dev/null and b/src/samples/drums/snare_electro01.ogg differ diff --git a/src/samples/drums/snare_harsh01.ogg b/src/samples/drums/snare_harsh01.ogg new file mode 100644 index 0000000..22bfc46 Binary files /dev/null and b/src/samples/drums/snare_harsh01.ogg differ diff --git a/src/samples/drums/snare_hiphop01.ogg b/src/samples/drums/snare_hiphop01.ogg new file mode 100644 index 0000000..5af9af1 Binary files /dev/null and b/src/samples/drums/snare_hiphop01.ogg differ diff --git a/src/samples/drums/snare_hiphop02.ogg b/src/samples/drums/snare_hiphop02.ogg new file mode 100644 index 0000000..ce651df Binary files /dev/null and b/src/samples/drums/snare_hiphop02.ogg differ diff --git a/src/samples/drums/snare_muffled01.ogg b/src/samples/drums/snare_muffled01.ogg new file mode 100644 index 0000000..b1ed541 Binary files /dev/null and b/src/samples/drums/snare_muffled01.ogg differ diff --git a/src/samples/drums/snare_muffled02.ogg b/src/samples/drums/snare_muffled02.ogg new file mode 100644 index 0000000..8b861c1 Binary files /dev/null and b/src/samples/drums/snare_muffled02.ogg differ diff --git a/src/samples/drums/snare_rim01.ogg b/src/samples/drums/snare_rim01.ogg new file mode 100644 index 0000000..512fb0b Binary files /dev/null and b/src/samples/drums/snare_rim01.ogg differ diff --git a/src/samples/drums/snare_short01.ogg b/src/samples/drums/snare_short01.ogg new file mode 100644 index 0000000..27fe3c3 Binary files /dev/null and b/src/samples/drums/snare_short01.ogg differ diff --git a/src/samples/drums/tom01.ogg b/src/samples/drums/tom01.ogg new file mode 100644 index 0000000..43a88e4 Binary files /dev/null and b/src/samples/drums/tom01.ogg differ diff --git a/src/samples/drums/tom02.ogg b/src/samples/drums/tom02.ogg new file mode 100644 index 0000000..45ee7fa Binary files /dev/null and b/src/samples/drums/tom02.ogg differ diff --git a/src/samples/drums/tom03.ogg b/src/samples/drums/tom03.ogg new file mode 100644 index 0000000..4e6de26 Binary files /dev/null and b/src/samples/drums/tom03.ogg differ diff --git a/src/samples/drums/tom04.ogg b/src/samples/drums/tom04.ogg new file mode 100644 index 0000000..a6dc8ac Binary files /dev/null and b/src/samples/drums/tom04.ogg differ diff --git a/src/samples/drums/tom05.ogg b/src/samples/drums/tom05.ogg new file mode 100644 index 0000000..ca656ca Binary files /dev/null and b/src/samples/drums/tom05.ogg differ diff --git a/src/samples/drums/tom_hi01.ogg b/src/samples/drums/tom_hi01.ogg new file mode 100644 index 0000000..d78b3e0 Binary files /dev/null and b/src/samples/drums/tom_hi01.ogg differ diff --git a/src/samples/drums/tom_low01.ogg b/src/samples/drums/tom_low01.ogg new file mode 100644 index 0000000..8a90397 Binary files /dev/null and b/src/samples/drums/tom_low01.ogg differ diff --git a/src/samples/drums/tom_mid01.ogg b/src/samples/drums/tom_mid01.ogg new file mode 100644 index 0000000..2d182ec Binary files /dev/null and b/src/samples/drums/tom_mid01.ogg differ diff --git a/src/samples/drums/wood01.ogg b/src/samples/drums/wood01.ogg new file mode 100644 index 0000000..4fa59b2 Binary files /dev/null and b/src/samples/drums/wood01.ogg differ diff --git a/src/samples/drums/zap01.ogg b/src/samples/drums/zap01.ogg new file mode 100644 index 0000000..8d21112 Binary files /dev/null and b/src/samples/drums/zap01.ogg differ diff --git a/src/samples/drums/zap02.ogg b/src/samples/drums/zap02.ogg new file mode 100644 index 0000000..733643b Binary files /dev/null and b/src/samples/drums/zap02.ogg differ diff --git a/src/samples/drums/zap03.ogg b/src/samples/drums/zap03.ogg new file mode 100644 index 0000000..9d5767e Binary files /dev/null and b/src/samples/drums/zap03.ogg differ diff --git a/src/samples/drumsynth/acoustic/Brush1.ds b/src/samples/drumsynth/acoustic/Brush1.ds new file mode 100644 index 0000000..be6cb99 --- /dev/null +++ b/src/samples/drumsynth/acoustic/Brush1.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=87 +F1=180 +F2=125 +Droop=0 +Phase=10 +Envelope=0,0 89,95 596,24 2384,0 + +[Noise] +On=1 +Level=64 +Slope=-58 +Envelope=0,0 223,87 1654,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 diff --git a/src/samples/drumsynth/acoustic/Brush2.ds b/src/samples/drumsynth/acoustic/Brush2.ds new file mode 100644 index 0000000..8eeca29 --- /dev/null +++ b/src/samples/drumsynth/acoustic/Brush2.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=102 +F1=180 +F2=125 +Droop=0 +Phase=10 +Envelope=0,0 492,81 939,28 2384,0 + +[Noise] +On=1 +Level=64 +Slope=-58 +Envelope=0,0 536,70 1013,87 1460,26 3665,18 3844,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 diff --git a/src/samples/drumsynth/acoustic/JazzKick.ds b/src/samples/drumsynth/acoustic/JazzKick.ds new file mode 100644 index 0000000..5a11135 --- /dev/null +++ b/src/samples/drumsynth/acoustic/JazzKick.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=132 +F1=90 +F2=68 +Droop=76 +Phase=0 +Envelope=0,0 521,96 2160,46 6034,17 12962,0 + +[Noise] +On=0 +Level=64 +Slope=-70 +Envelope=0,100 358,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=119 +F=100 +dF=18 +Envelope=0,0 52,100 2086,6 4708,0 diff --git a/src/samples/drumsynth/acoustic/JazzSnr.ds b/src/samples/drumsynth/acoustic/JazzSnr.ds new file mode 100644 index 0000000..e1045ac --- /dev/null +++ b/src/samples/drumsynth/acoustic/JazzSnr.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 2502,100 4940,56 6746,44 442000,100 443000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=128 +F1=180 +F2=153 +Droop=38 +Phase=10 +Envelope=0,100 521,95 745,19 2458,6 6481,0 + +[Noise] +On=1 +Level=100 +Slope=-68 +Envelope=0,97 275,15 668,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +F2=200 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=86 +F=400 +dF=34 +Envelope=0,63 1494,37 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/JazzSnr_H.ds b/src/samples/drumsynth/acoustic/JazzSnr_H.ds new file mode 100644 index 0000000..6d1d996 --- /dev/null +++ b/src/samples/drumsynth/acoustic/JazzSnr_H.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 2439,100 4940,56 6746,44 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=180 +F2=153 +Droop=38 +Phase=90 +Envelope=0,100 521,95 745,19 2458,6 6481,0 + +[Noise] +On=1 +Level=100 +Slope=-68 +Envelope=0,97 190,92 317,21 668,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=86 +F=400 +dF=34 +Envelope=0,92 206,96 317,62 1552,36 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/K_Muffle.ds b/src/samples/drumsynth/acoustic/K_Muffle.ds new file mode 100644 index 0000000..0aa8e71 --- /dev/null +++ b/src/samples/drumsynth/acoustic/K_Muffle.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=181 +F1=90 +F2=40 +Droop=21 +Phase=0 +Envelope=0,99 1862,50 5066,47 7449,38 11546,0 + +[Noise] +On=0 +Level=164 +Slope=29 +Envelope=0,100 291,37 656,0 1192,0 + +[Overtones] +On=0 +Level=119 +F1=876 +F2=1356 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 + +[NoiseBand] +On=0 +Level=161 +F=100 +dF=35 +Envelope=0,98 1341,0 4097,10 10578,0 diff --git a/src/samples/drumsynth/acoustic/Kick.ds b/src/samples/drumsynth/acoustic/Kick.ds new file mode 100644 index 0000000..8328c8b --- /dev/null +++ b/src/samples/drumsynth/acoustic/Kick.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=132 +F1=90 +F2=70 +Droop=68 +Phase=10 +Envelope=0,0 89,95 2160,46 6034,17 9088,0 + +[Noise] +On=1 +Level=64 +Slope=-70 +Envelope=0,100 358,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 diff --git a/src/samples/drumsynth/acoustic/Plain_Kick.ds b/src/samples/drumsynth/acoustic/Plain_Kick.ds new file mode 100644 index 0000000..971d079 --- /dev/null +++ b/src/samples/drumsynth/acoustic/Plain_Kick.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=100 +F2=40 +Droop=0 +Phase=0 +Envelope=0,100 1266,40 3129,15 6332,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=109 +F=2630 +dF=81 +Envelope=0,100 210,0 690,6 1920,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/Ride.ds b/src/samples/drumsynth/acoustic/Ride.ds new file mode 100644 index 0000000..506164b --- /dev/null +++ b/src/samples/drumsynth/acoustic/Ride.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=60 +Envelope=0,100 894,45 2756,18 5289,8 20113,0 + +[Overtones] +On=1 +Level=108 +F1=4600 +Wave1=3 +Track1=0 +F2=321 +Wave2=3 +Track2=0 +Filter=0 +Method=2 +Param=72 +Envelope1=0,100 1341,37 5215,10 20784,0 +Envelope2=0,100 1713,62 5661,35 20560,0 + +[NoiseBand] +On=1 +Level=138 +F=6500 +dF=22 +Envelope=0,100 1639,38 4619,20 10802,10 21082,0 + +[NoiseBand2] +On=1 +Level=23 +F=1000 +dF=42 +Envelope=0,100 968,24 4842,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/Ride2.ds b/src/samples/drumsynth/acoustic/Ride2.ds new file mode 100644 index 0000000..7be09fe --- /dev/null +++ b/src/samples/drumsynth/acoustic/Ride2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,90 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=113 +Slope=100 +Envelope=0,100 1490,76 3725,48 15495,16 16538,0 + +[Overtones] +On=1 +Level=100 +F1=7182 +Wave1=2 +Track1=0 +F2=5.3 +Wave2=2 +Track2=0 +Filter=0 +Method=2 +Param=100 +Envelope1=0,100 2533,38 11174,8 32181,0 +Envelope2=0,100 32032,98 33224,0 + +[NoiseBand] +On=1 +Level=85 +F=8500 +dF=35 +Envelope=0,100 2086,54 6257,27 15942,10 32032,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/Ride3.ds b/src/samples/drumsynth/acoustic/Ride3.ds new file mode 100644 index 0000000..2b9fffe --- /dev/null +++ b/src/samples/drumsynth/acoustic/Ride3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=1 +FilterEnv=0,78 442000,100 442000,0 +Level=-6 +Resonance=0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=143 +Slope=18 +Envelope=0,100 3000,35 10350,2 37050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=164 +F1=7834 +Wave1=4 +Track1=0 +F2=4569 +Wave2=4 +Track2=0 +Filter=0 +Method=1 +Param=100 +Envelope1=0,0 150,100 923,30 3129,12 12738,7 37650,0 +Envelope2=0,100 19443,0 + +[NoiseBand] +On=1 +Level=181 +F=9000 +dF=36 +Envelope=0,0 150,100 750,55 4050,29 12738,7 36300,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/acoustic/Snare.ds b/src/samples/drumsynth/acoustic/Snare.ds new file mode 100644 index 0000000..0c07af0 --- /dev/null +++ b/src/samples/drumsynth/acoustic/Snare.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 2309,71 4246,44 7300,59 442000,100 443000,0 + +[Tone] +On=1 +Level=170 +F1=380 +F2=230 +Droop=54 +Phase=-45 +Envelope=0,100 745,41 1937,18 12217,0 + +[Noise] +On=1 +Level=142 +Slope=-53 +Envelope=0,100 521,24 2384,15 7971,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr78/Bongo_h.ds b/src/samples/drumsynth/cr78/Bongo_h.ds new file mode 100644 index 0000000..ef76bf8 --- /dev/null +++ b/src/samples/drumsynth/cr78/Bongo_h.ds @@ -0,0 +1,36 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Stretch=102.03 + +[Tone] +On=1 +Level=125 +F1=623 +F2=623 +Droop=0 +Phase=-180 +Envelope=0,99 231,72 946,21 2138,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Bongo_l.ds b/src/samples/drumsynth/cr78/Bongo_l.ds new file mode 100644 index 0000000..ac3a2c7 --- /dev/null +++ b/src/samples/drumsynth/cr78/Bongo_l.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=125 +F1=412 +F2=412 +Droop=0 +Phase=-180 +Envelope=0,99 231,72 946,21 2056,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Clave.ds b/src/samples/drumsynth/cr78/Clave.ds new file mode 100644 index 0000000..a4cd2b0 --- /dev/null +++ b/src/samples/drumsynth/cr78/Clave.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=125 +F1=2450 +F2=2450 +Droop=0 +Phase=-130 +Envelope=0,99 149,66 946,21 2138,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Conga.ds b/src/samples/drumsynth/cr78/Conga.ds new file mode 100644 index 0000000..248394b --- /dev/null +++ b/src/samples/drumsynth/cr78/Conga.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=147 +F1=212 +F2=212 +Droop=0 +Phase=0 +Envelope=0,100 328,83 2145,48 4082,43 5334,21 6853,14 7002,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Cymbal.ds b/src/samples/drumsynth/cr78/Cymbal.ds new file mode 100644 index 0000000..44507ed --- /dev/null +++ b/src/samples/drumsynth/cr78/Cymbal.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=0 +Level=153 +F1=8600 +F2=8600 +Droop=0 +Phase=-180 +Envelope=0,99 1013,51 1013,0 + +[Noise] +On=1 +Level=79 +Slope=19 +Envelope=0,100 372,32 1490,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=132 +F=9500 +dF=48 +Envelope=0,100 521,92 641,52 11174,31 15048,16 21305,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr78/Hihat.ds b/src/samples/drumsynth/cr78/Hihat.ds new file mode 100644 index 0000000..f574cb1 --- /dev/null +++ b/src/samples/drumsynth/cr78/Hihat.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=153 +F1=8600 +F2=8600 +Droop=0 +Phase=-180 +Envelope=0,99 1013,51 1013,0 + +[Noise] +On=1 +Level=89 +Slope=19 +Envelope=0,100 372,32 1490,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=136 +F=9500 +dF=45 +Envelope=0,100 521,92 641,52 2160,37 3278,0 diff --git a/src/samples/drumsynth/cr78/Kick.ds b/src/samples/drumsynth/cr78/Kick.ds new file mode 100644 index 0000000..ccaa003 --- /dev/null +++ b/src/samples/drumsynth/cr78/Kick.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=181 +F1=71 +F2=71 +Droop=0 +Phase=-30 +Envelope=0,100 372,80 2682,37 8865,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4200,50 14000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Maracas.ds b/src/samples/drumsynth/cr78/Maracas.ds new file mode 100644 index 0000000..753f731 --- /dev/null +++ b/src/samples/drumsynth/cr78/Maracas.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=153 +F1=8600 +F2=8600 +Droop=0 +Phase=-180 +Envelope=0,99 1013,51 1013,0 + +[Noise] +On=0 +Level=138 +Slope=50 +Envelope=0,100 998,57 1013,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=136 +F=8800 +dF=50 +Envelope=0,100 410,94 633,29 916,0 diff --git a/src/samples/drumsynth/cr78/Rim.ds b/src/samples/drumsynth/cr78/Rim.ds new file mode 100644 index 0000000..df85f70 --- /dev/null +++ b/src/samples/drumsynth/cr78/Rim.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=181 +F1=1600 +F2=1500 +Droop=0 +Phase=-90 +Envelope=0,99 57,42 143,17 310,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Snare.ds b/src/samples/drumsynth/cr78/Snare.ds new file mode 100644 index 0000000..cc7fd0d --- /dev/null +++ b/src/samples/drumsynth/cr78/Snare.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=170 +F1=300 +F2=300 +Droop=0 +Phase=-30 +Envelope=0,99 253,21 745,0 + +[Noise] +On=1 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/cr78/Tamb.ds b/src/samples/drumsynth/cr78/Tamb.ds new file mode 100644 index 0000000..1b6b1f0 --- /dev/null +++ b/src/samples/drumsynth/cr78/Tamb.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=153 +F1=8600 +F2=8600 +Droop=0 +Phase=-180 +Envelope=0,99 1013,51 1013,0 + +[Noise] +On=1 +Level=45 +Slope=43 +Envelope=0,100 2086,76 4023,80 5587,67 7226,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=136 +F=4620 +dF=33 +Envelope=0,31 521,96 1788,87 2160,44 4619,36 5810,6 9014,0 diff --git a/src/samples/drumsynth/cr8000/Clap.ds b/src/samples/drumsynth/cr8000/Clap.ds new file mode 100644 index 0000000..075ffde --- /dev/null +++ b/src/samples/drumsynth/cr8000/Clap.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=108 +Slope=85 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 2384,16 4023,8 7211,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=138 +F=3250 +dF=75 +Envelope=0,99 104,38 440,0 440,100 521,30 894,0 894,100 1028,26 1333,0 1333,98 1788,28 4097,7 9386,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Clave.ds b/src/samples/drumsynth/cr8000/Clave.ds new file mode 100644 index 0000000..1c2ad89 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Clave.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +FilterEnv=0,62 442000,100 443000,0 + +[Tone] +On=0 +Level=176 +F1=2300 +F2=2300 +Droop=0 +Phase=30 +Envelope=0,0 149,98 670,4 2980,0 + +[Noise] +On=0 +Level=98 +Slope=55 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=1 +Level=170 +F1=2320 +Wave1=1 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 74,100 670,4 1937,0 +Envelope2=0,100 1266,57 2309,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Conga_l.ds b/src/samples/drumsynth/cr8000/Conga_l.ds new file mode 100644 index 0000000..8337be6 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Conga_l.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=161 +F1=195 +F2=195 +Droop=0 +Phase=0 +Envelope=0,100 447,67 2682,43 6332,23 11695,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Conga_m.ds b/src/samples/drumsynth/cr8000/Conga_m.ds new file mode 100644 index 0000000..30b8cd0 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Conga_m.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=168 +F1=302 +F2=302 +Droop=0 +Phase=1 +Envelope=0,100 372,96 819,67 4246,24 8865,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Cowbell.ds b/src/samples/drumsynth/cr8000/Cowbell.ds new file mode 100644 index 0000000..1783137 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Cowbell.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +FilterEnv=0,86 596,28 1639,13 7449,0 12068,0 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=0 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=0 +Level=142 +Slope=-53 +Envelope=0,100 521,24 2384,15 7971,0 + +[Overtones] +On=1 +Level=145 +F1=817 +Wave1=3 +Track1=0 +F2=552 +Wave2=3 +Track2=0 +Filter=1 +Method=0 +Param=17 +Envelope1=0,0 30,98 819,47 2235,24 5587,9 7375,0 +Envelope2=0,0 37,99 745,50 2384,26 5364,9 7077,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Cymbal.ds b/src/samples/drumsynth/cr8000/Cymbal.ds new file mode 100644 index 0000000..c198479 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Cymbal.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,84 442000,100 442000,0 +HighPass=1 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=108 +Slope=92 +Envelope=0,100 1117,15 3129,0 + +[Overtones] +On=1 +Level=157 +F1=5182 +Wave1=3 +Track1=0 +F2=4399 +Wave2=3 +Track2=0 +Filter=1 +Method=0 +Param=50 +Envelope1=0,100 968,60 10355,16 19964,0 +Envelope2=0,100 968,60 10429,17 19890,0 + +[NoiseBand] +On=1 +Level=73 +F=9200 +dF=49 +Envelope=0,100 819,78 9088,28 17282,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Hat_c.ds b/src/samples/drumsynth/cr8000/Hat_c.ds new file mode 100644 index 0000000..04a5499 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Hat_c.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,78 442000,100 442000,0 +HighPass=0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=85 +Slope=92 +Envelope=0,100 1117,82 1564,28 5513,0 + +[Overtones] +On=1 +Level=87 +F1=7182 +Wave1=3 +Track1=0 +F2=6399 +Wave2=3 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 1639,21 5215,0 +Envelope2=0,100 1564,25 5066,0 + +[NoiseBand] +On=0 +Level=115 +F=9500 +dF=49 +Envelope=0,100 819,78 1639,24 4470,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Hat_o.ds b/src/samples/drumsynth/cr8000/Hat_o.ds new file mode 100644 index 0000000..02d4162 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Hat_o.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,78 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=87 +Slope=92 +Envelope=0,100 8641,53 10653,15 14228,0 + +[Overtones] +On=1 +Level=81 +F1=7182 +Wave1=2 +Track1=0 +F2=6399 +Wave2=2 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 8343,52 10355,16 14899,0 +Envelope2=0,100 8269,54 10429,17 14899,0 + +[NoiseBand] +On=0 +Level=115 +F=9500 +dF=49 +Envelope=0,100 819,78 8567,52 10355,17 14824,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Kick.ds b/src/samples/drumsynth/cr8000/Kick.ds new file mode 100644 index 0000000..2235848 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Kick.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +FilterEnv=0,28 1713,38 442000,100 443000,0 + +[Tone] +On=1 +Level=176 +F1=90 +F2=60 +Droop=0 +Phase=30 +Envelope=0,99 819,15 2980,0 + +[Noise] +On=0 +Level=98 +Slope=55 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Rim.ds b/src/samples/drumsynth/cr8000/Rim.ds new file mode 100644 index 0000000..1156ee7 --- /dev/null +++ b/src/samples/drumsynth/cr8000/Rim.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 1974,79 442000,100 443000,0 +Level=0 +HighPass=0 +Resonance=0 + +[Tone] +On=0 +Level=168 +F1=8000 +F2=8000 +Droop=0 +Phase=1 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=138 +Slope=-58 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=128 +F=2500 +dF=92 +Envelope=0,0 0,24 0,100 104,20 396,7 2233,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/cr8000/Snare.ds b/src/samples/drumsynth/cr8000/Snare.ds new file mode 100644 index 0000000..f65051c --- /dev/null +++ b/src/samples/drumsynth/cr8000/Snare.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +FilterEnv=0,74 442000,100 443000,0 + +[Tone] +On=1 +Level=170 +F1=240 +F2=240 +Droop=0 +Phase=-30 +Envelope=0,99 745,14 2384,0 + +[Noise] +On=1 +Level=98 +Slope=55 +Envelope=0,100 1311,65 2205,38 2563,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Bubble.ds b/src/samples/drumsynth/effects/Bubble.ds new file mode 100644 index 0000000..0f7d3e3 --- /dev/null +++ b/src/samples/drumsynth/effects/Bubble.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=102 +F1=40 +F2=3000 +Droop=0 +Phase=0 +Envelope=0,7 894,40 1341,84 2160,61 3203,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4200,50 14000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/effects/Cicada.ds b/src/samples/drumsynth/effects/Cicada.ds new file mode 100644 index 0000000..507d999 --- /dev/null +++ b/src/samples/drumsynth/effects/Cicada.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,79 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=17 +Envelope=0,0 670,4 1490,19 1937,3 3501,22 4097,2 5289,15 6406,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=11000 +dF=34 +Envelope=0,0 670,2 1192,20 1415,56 1788,19 2533,3 3278,19 3650,43 3874,18 4544,3 5140,12 5364,29 5587,13 6108,4 8120,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Glass.ds b/src/samples/drumsynth/effects/Glass.ds new file mode 100644 index 0000000..59a3021 --- /dev/null +++ b/src/samples/drumsynth/effects/Glass.ds @@ -0,0 +1,34 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ + +[Tone] +On=1 +Level=128 +F1=3000 +F2=3000 +Droop=0 +Phase=0 +Envelope=0,100 1490,23 3203,8 11621,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4500,30 9000,0 + +[Overtones] +On=0 +Level=128 +F1=789 +F2=861 +Method=2 +Envelope1=0,100 1266,13 8418,0 +Envelope2=0,99 447,31 3129,0 + +[NoiseBand] +On=1 +Level=79 +F=1024 +dF=19 +Envelope=0,100 670,17 1713,5 4500,0 diff --git a/src/samples/drumsynth/effects/Glass_rn.ds b/src/samples/drumsynth/effects/Glass_rn.ds new file mode 100644 index 0000000..0024fdb --- /dev/null +++ b/src/samples/drumsynth/effects/Glass_rn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 57211,94 71514,63 82836,34 88796,0 442000,100 442000,0 +Level=-6 +Resonance=0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=5000 +Droop=63 +Phase=0 +Envelope=0,66 2384,87 4470,49 11025,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=2000 +Wave1=0 +Track1=0 +F2=2003 +Wave2=0 +Track2=0 +Filter=1 +Method=0 +Param=33 +Envelope1=0,100 87604,0 +Envelope2=0,100 88195,0 + +[NoiseBand] +On=0 +Level=181 +F=630 +dF=0 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=12 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/effects/Gunshot.ds b/src/samples/drumsynth/effects/Gunshot.ds new file mode 100644 index 0000000..97e6bae --- /dev/null +++ b/src/samples/drumsynth/effects/Gunshot.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=113 +F1=3000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1937,24 7449,6 11621,0 + +[Noise] +On=1 +Level=145 +Slope=-82 +Envelope=0,100 298,14 596,0 + +[Overtones] +On=0 +Level=128 +F1=789 +F2=861 +Method=2 +Envelope1=0,100 1266,13 8418,0 +Envelope2=0,99 447,31 3129,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 +Param=50 + +[NoiseBand] +On=1 +Level=142 +F=1024 +dF=72 +Envelope=0,100 1639,17 1639,66 4246,13 4246,54 5885,7 5885,35 7151,8 17655,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Hammer.ds b/src/samples/drumsynth/effects/Hammer.ds new file mode 100644 index 0000000..695997f --- /dev/null +++ b/src/samples/drumsynth/effects/Hammer.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 1043,0 2950,0 2950,58 442000,100 443000,0 + +[Tone] +On=1 +Level=178 +F1=200 +F2=200 +Droop=0 +Phase=90 +Envelope=0,99 231,72 685,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1728,85 2205,38 4405,0 + +[Overtones] +On=0 +Level=100 +F1=8000 +Wave1=0 +Track1=0 +F2=6321 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,29 2384,35 7598,0 +Envelope2=0,30 5400,50 10131,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=1 +Level=136 +F=500 +dF=100 +Envelope=0,100 100,30 7479,0 + +[Distortion] +On=1 +Clipping=10 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Laser.ds b/src/samples/drumsynth/effects/Laser.ds new file mode 100644 index 0000000..9c6e0af --- /dev/null +++ b/src/samples/drumsynth/effects/Laser.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=600 +F2=4523 +Droop=0 +Phase=0 +Envelope=0,100 4544,30 19741,0 + +[Noise] +On=0 +Level=73 +Slope=-79 +Envelope=0,100 194,8 685,0 + +[Overtones] +On=1 +Level=161 +F1=700 +Wave1=0 +Track1=1 +F2=1000 +Wave2=1 +Track2=0 +Filter=0 +Method=2 +Param=89 +Envelope1=0,100 1415,42 4693,44 8865,16 18027,0 +Envelope2=0,100 745,20 2980,96 5215,20 8269,99 13483,17 20709,100 20709,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Reverse.ds b/src/samples/drumsynth/effects/Reverse.ds new file mode 100644 index 0000000..ef43102 --- /dev/null +++ b/src/samples/drumsynth/effects/Reverse.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=117 +F1=200 +F2=180 +Droop=0 +Phase=0 +Envelope=0,0 5140,0 7598,7 12440,17 13483,87 14005,93 14005,0 + +[Noise] +On=1 +Level=128 +Slope=-39 +Envelope=0,0 4768,18 9312,44 14000,94 14000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/effects/Ringing.ds b/src/samples/drumsynth/effects/Ringing.ds new file mode 100644 index 0000000..2e05365 --- /dev/null +++ b/src/samples/drumsynth/effects/Ringing.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1200 +F2=1200 +Droop=0 +Phase=0 +Envelope=0,100 2011,22 5587,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 + +[Overtones] +On=1 +Level=128 +F1=621 +Wave1=2 +Track1=0 +F2=10 +Wave2=2 +Track2=0 +Filter=0 +Method=1 +Param=100 +Envelope1=0,100 19294,67 19666,0 +Envelope2=0,100 19070,100 19517,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Scissors.ds b/src/samples/drumsynth/effects/Scissors.ds new file mode 100644 index 0000000..ede2e79 --- /dev/null +++ b/src/samples/drumsynth/effects/Scissors.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=0 +Level=92 +F1=8000 +F2=8000 +Droop=0 +Phase=0 +Envelope=0,0 10206,0 11025,5 11323,0 + +[Noise] +On=1 +Level=128 +Slope=27 +Envelope=0,0 968,11 968,100 1192,3 1862,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=151 +F=100 +dF=35 +Envelope=0,100 1000,20 3054,16 7449,22 8641,0 + +[Distortion] +On=0 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/Sonar.ds b/src/samples/drumsynth/effects/Sonar.ds new file mode 100644 index 0000000..a16ee64 --- /dev/null +++ b/src/samples/drumsynth/effects/Sonar.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=94 +F=508 +dF=12 +Envelope=0,0 13111,24 18176,47 22944,28 28605,52 35161,41 40226,47 47676,12 55423,3 77473,0 + +[NoiseBand2] +On=1 +Level=128 +F=500 +dF=17 +Envelope=0,0 596,90 2384,16 21156,8 36353,7 87008,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/dialing.ds b/src/samples/drumsynth/effects/dialing.ds new file mode 100644 index 0000000..d56169f --- /dev/null +++ b/src/samples/drumsynth/effects/dialing.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1200 +F2=1200 +Droop=0 +Phase=0 +Envelope=0,100 2011,22 5587,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 + +[Overtones] +On=1 +Level=128 +F1=621 +Wave1=2 +Track1=0 +F2=22 +Wave2=2 +Track2=0 +Filter=0 +Method=1 +Param=100 +Envelope1=0,100 19294,67 19666,0 +Envelope2=0,100 19070,100 19517,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/hammer2.ds b/src/samples/drumsynth/effects/hammer2.ds new file mode 100644 index 0000000..a07f69f --- /dev/null +++ b/src/samples/drumsynth/effects/hammer2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0 +Stretch=90.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 1341,0 4917,0 5215,30 442000,100 443000,0 + +[Tone] +On=1 +Level=178 +F1=2000 +F2=200 +Droop=35 +Phase=40 +Envelope=0,99 231,72 685,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1728,85 2205,38 4405,0 + +[Overtones] +On=0 +Level=100 +F1=8000 +Wave1=0 +Track1=0 +F2=6321 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,29 2384,35 7598,0 +Envelope2=0,30 5400,50 10131,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=1 +Level=136 +F=500 +dF=100 +Envelope=0,100 100,30 5215,0 5215,18 6853,2 16835,0 + +[Distortion] +On=1 +Clipping=10 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/impulses.ds b/src/samples/drumsynth/effects/impulses.ds new file mode 100644 index 0000000..47f6d8b --- /dev/null +++ b/src/samples/drumsynth/effects/impulses.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,17 33224,98 442000,100 443000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=178 +F1=50 +F2=110 +Droop=0 +Phase=90 +Envelope=0,0 819,0 819,98 1490,0 + +[Noise] +On=0 +Level=138 +Slope=-100 +Envelope=0,100 1728,85 2205,38 4405,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=140 +F1=14.11 +Wave1=3 +Track1=0 +F2=14.1 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=52 +Envelope1=0,29 0,68 5140,37 12962,15 22050,8 40822,0 +Envelope2=0,30 5400,50 11174,28 19070,14 30244,6 40375,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=181 +F=200 +dF=100 +Envelope=0,0 171,0 253,100 268,0 7479,0 + +[Distortion] +On=0 +Clipping=10 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/loop.ds b/src/samples/drumsynth/effects/loop.ds new file mode 100644 index 0000000..0581ce8 --- /dev/null +++ b/src/samples/drumsynth/effects/loop.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=120 +F2=80 +Droop=31 +Phase=0 +Envelope=0,0 30,99 1117,31 2831,0 22199,0 22497,55 23242,31 25477,0 29648,0 + +[Noise] +On=1 +Level=104 +Slope=81 +Envelope=0,44 1043,0 5513,0 5513,40 7449,0 11025,0 11025,38 12515,13 22050,0 22050,35 23540,0 27563,0 27563,33 29052,0 33075,0 33075,33 40375,0 + +[Overtones] +On=1 +Level=128 +F1=220 +Wave1=0 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 11025,0 11025,57 11919,0 16835,-1 16835,58 18027,0 27711,0 27711,61 28903,0 37843,0 37843,18 39332,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=106 +F=1000 +dF=78 +Envelope=0,0 11025,0 11025,21 12068,0 22199,0 22199,76 23093,10 28903,0 33075,0 33075,22 33820,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=62 +Envelope=0,0 22199,0 22199,76 23093,10 29946,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/effects/thunder.ds b/src/samples/drumsynth/effects/thunder.ds new file mode 100644 index 0000000..8e2b7f8 --- /dev/null +++ b/src/samples/drumsynth/effects/thunder.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,2 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=100 +dF=22 +Envelope=0,0 5513,79 10429,32 13111,58 15197,27 17133,39 24136,36 41120,0 + +[NoiseBand2] +On=1 +Level=128 +F=50 +dF=16 +Envelope=0,0 11025,64 28903,19 87008,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/Boom.ds b/src/samples/drumsynth/electro/Boom.ds new file mode 100644 index 0000000..b7b4c73 --- /dev/null +++ b/src/samples/drumsynth/electro/Boom.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=147 +F1=80 +F2=80 +Droop=0 +Phase=0 +Envelope=0,100 1564,56 5250,30 19368,7 34863,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 596,23 9000,0 + +[Overtones] +On=1 +Level=94 +F1=80 +F2=125 +Method=0 +Envelope1=0,0 2235,51 11993,0 +Envelope2=0,100 1117,19 3799,0 +Wave1=2 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 +Param=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/H_closed.ds b/src/samples/drumsynth/electro/H_closed.ds new file mode 100644 index 0000000..700a256 --- /dev/null +++ b/src/samples/drumsynth/electro/H_closed.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=98 +F1=10000 +F2=10000 +Droop=0 +Phase=-45 +Envelope=0,100 516,21 1904,0 + +[Noise] +On=1 +Level=111 +Slope=69 +Envelope=0,100 535,26 2548,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/H_open.ds b/src/samples/drumsynth/electro/H_open.ds new file mode 100644 index 0000000..0e0598c --- /dev/null +++ b/src/samples/drumsynth/electro/H_open.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=98 +F1=10000 +F2=10000 +Droop=0 +Phase=-45 +Envelope=0,100 1117,24 10504,0 + +[Noise] +On=1 +Level=111 +Slope=69 +Envelope=0,100 819,31 12440,4 18772,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/electro/Hi-q.ds b/src/samples/drumsynth/electro/Hi-q.ds new file mode 100644 index 0000000..37d337c --- /dev/null +++ b/src/samples/drumsynth/electro/Hi-q.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=102 +F1=18000 +F2=20 +Droop=45 +Phase=-45 +Envelope=0,100 1862,48 3501,36 3725,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4200,50 14000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/Hi-q_2.ds b/src/samples/drumsynth/electro/Hi-q_2.ds new file mode 100644 index 0000000..423364e --- /dev/null +++ b/src/samples/drumsynth/electro/Hi-q_2.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=102 +F1=6000 +F2=20 +Droop=29 +Phase=-45 +Envelope=0,100 1862,48 3501,36 3725,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4200,50 14000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/K_8bit.ds b/src/samples/drumsynth/electro/K_8bit.ds new file mode 100644 index 0000000..5e75c19 --- /dev/null +++ b/src/samples/drumsynth/electro/K_8bit.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 +HighPass=0 + +[Tone] +On=1 +Level=132 +F1=90 +F2=70 +Droop=68 +Phase=10 +Envelope=0,0 89,95 2160,46 6034,17 6108,0 + +[Noise] +On=1 +Level=64 +Slope=-70 +Envelope=0,100 358,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=6 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/electro/K_Linn.ds b/src/samples/drumsynth/electro/K_Linn.ds new file mode 100644 index 0000000..3fec47d --- /dev/null +++ b/src/samples/drumsynth/electro/K_Linn.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=105 +F2=30 +Droop=0 +Phase=-45 +Envelope=0,100 1862,62 5513,35 13558,0 + +[Noise] +On=1 +Level=111 +Slope=1 +Envelope=0,100 372,24 1117,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/K_reverb.ds b/src/samples/drumsynth/electro/K_reverb.ds new file mode 100644 index 0000000..719fb95 --- /dev/null +++ b/src/samples/drumsynth/electro/K_reverb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=181 +F1=100 +F2=40 +Droop=12 +Phase=120 +Envelope=0,99 793,91 1824,37 4097,25 5959,20 6630,0 + +[Noise] +On=1 +Level=78 +Slope=-40 +Envelope=0,100 291,37 656,0 2221,0 3807,5 8328,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=119 +F1=876 +F2=1356 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=161 +F=100 +dF=35 +Envelope=0,98 1341,0 4097,10 10578,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/S_8bit.ds b/src/samples/drumsynth/electro/S_8bit.ds new file mode 100644 index 0000000..affe826 --- /dev/null +++ b/src/samples/drumsynth/electro/S_8bit.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 +HighPass=0 + +[Tone] +On=1 +Level=149 +F1=380 +F2=230 +Droop=54 +Phase=-45 +Envelope=0,100 745,41 1937,18 4991,0 12142,0 + +[Noise] +On=1 +Level=130 +Slope=-53 +Envelope=0,100 521,24 2384,11 5661,3 5810,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 8194,11 9461,5 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=2 diff --git a/src/samples/drumsynth/electro/S_Linn.ds b/src/samples/drumsynth/electro/S_Linn.ds new file mode 100644 index 0000000..d03afa5 --- /dev/null +++ b/src/samples/drumsynth/electro/S_Linn.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=-45 +Envelope=0,100 4395,54 10355,0 + +[Noise] +On=1 +Level=111 +Slope=-61 +Envelope=0,100 1713,28 4768,18 8641,11 9982,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/S_reverb.ds b/src/samples/drumsynth/electro/S_reverb.ds new file mode 100644 index 0000000..652f853 --- /dev/null +++ b/src/samples/drumsynth/electro/S_reverb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 2502,100 4940,56 6746,44 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=180 +F2=153 +Droop=38 +Phase=10 +Envelope=0,100 521,95 745,19 2458,6 6481,0 + +[Noise] +On=1 +Level=160 +Slope=-68 +Envelope=0,97 275,15 668,26 2086,10 4838,5 6266,4 10708,4 11422,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +F2=200 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=139 +F=400 +dF=34 +Envelope=0,63 1494,37 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=8 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/Syntom_1.ds b/src/samples/drumsynth/electro/Syntom_1.ds new file mode 100644 index 0000000..31737d9 --- /dev/null +++ b/src/samples/drumsynth/electro/Syntom_1.ds @@ -0,0 +1,35 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=128 +F1=800 +F2=400 +Droop=0 +Phase=-45 +Envelope=0,100 2309,38 5736,15 15495,0 + +[Noise] +On=0 +Level=111 +Slope=-61 +Envelope=0,100 1713,28 4768,18 8641,11 9982,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 diff --git a/src/samples/drumsynth/electro/Syntom_2.ds b/src/samples/drumsynth/electro/Syntom_2.ds new file mode 100644 index 0000000..7fe37d7 --- /dev/null +++ b/src/samples/drumsynth/electro/Syntom_2.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=550 +F2=275 +Droop=0 +Phase=-45 +Envelope=0,100 2309,38 5736,15 15495,0 + +[Noise] +On=0 +Level=111 +Slope=-61 +Envelope=0,100 1713,28 4768,18 8641,11 9982,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/electro/s_eq.ds b/src/samples/drumsynth/electro/s_eq.ds new file mode 100644 index 0000000..b2fa636 --- /dev/null +++ b/src/samples/drumsynth/electro/s_eq.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=170 +F1=180 +F2=100 +Droop=9 +Phase=90 +Envelope=0,100 745,41 1937,18 4097,0 + +[Noise] +On=1 +Level=89 +Slope=12 +Envelope=0,72 1043,9 9386,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=142 +F=800 +dF=42 +Envelope=0,87 1490,36 4246,0 + +[NoiseBand2] +On=1 +Level=136 +F=2000 +dF=70 +Envelope=0,100 894,29 7747,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Bongo.ds b/src/samples/drumsynth/farfisa/Fisa_Bongo.ds new file mode 100644 index 0000000..4cbd77c --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Bongo.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=161 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=245.7 +Wave1=0 +Track1=0 +F2=633.95 +Wave2=0 +Track2=0 +Method=0 +Param=100 +Envelope1=0,100 1599,65 3648,38 6096,18 8994,8 15990,0 +Envelope2=0,100 600,22 2099,5 3748,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7650 +dF=47 +Envelope=0,72 350,29 2798,5 5746,0 + +[NoiseBand2] +On=1 +Level=63 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Cym.ds b/src/samples/drumsynth/farfisa/Fisa_Cym.ds new file mode 100644 index 0000000..099be4a --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Cym.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=164 +F1=125 +F2=62 +Droop=47 +Phase=0 +Envelope=0,0 317,100 635,100 1428,64 4759,18 10153,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7650 +dF=54 +Envelope=0,41 216,31 3348,16 7246,5 18239,0 + +[NoiseBand2] +On=1 +Level=54 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Hat.ds b/src/samples/drumsynth/farfisa/Fisa_Hat.ds new file mode 100644 index 0000000..08da608 --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=164 +F1=125 +F2=62 +Droop=47 +Phase=0 +Envelope=0,0 317,100 635,100 1428,64 4759,18 10153,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7650 +dF=47 +Envelope=0,67 216,31 2678,2 6866,0 + +[NoiseBand2] +On=1 +Level=63 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_K_H.ds b/src/samples/drumsynth/farfisa/Fisa_K_H.ds new file mode 100644 index 0000000..8e5a2a3 --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_K_H.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=161 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7650 +dF=47 +Envelope=0,67 216,31 2678,2 6866,0 + +[NoiseBand2] +On=1 +Level=63 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_K_K.ds b/src/samples/drumsynth/farfisa/Fisa_K_K.ds new file mode 100644 index 0000000..1fc963e --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_K_K.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=161 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=61 +F1=245.7 +Wave1=0 +Track1=0 +F2=633.95 +Wave2=0 +Track2=0 +Method=0 +Param=100 +Envelope1=0,100 1599,65 3648,38 6096,18 8994,8 15990,0 +Envelope2=0,100 350,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7650 +dF=50 +Envelope=0,84 800,27 2848,14 4497,4 7046,0 + +[NoiseBand2] +On=1 +Level=63 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Kick.ds b/src/samples/drumsynth/farfisa/Fisa_Kick.ds new file mode 100644 index 0000000..1b0b471 --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=164 +F1=125 +F2=62 +Droop=47 +Phase=0 +Envelope=0,0 317,100 635,100 1428,64 4759,18 10153,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_S_B.ds b/src/samples/drumsynth/farfisa/Fisa_S_B.ds new file mode 100644 index 0000000..f4d0cbd --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_S_B.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=83 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=1 +Level=63 +Slope=-55 +Envelope=0,70 1699,25 5197,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=172 +F1=187.05 +Wave1=0 +Track1=0 +F2=633.95 +Wave2=0 +Track2=0 +Method=0 +Param=23 +Envelope1=0,100 2099,21 8695,0 +Envelope2=0,100 600,22 2099,5 3748,0 +Filter=0 + +[NoiseBand] +On=1 +Level=83 +F=7650 +dF=47 +Envelope=0,72 350,29 3998,10 4697,2 7595,0 + +[NoiseBand2] +On=0 +Level=98 +F=200 +dF=36 +Envelope=0,72 350,29 3548,11 4697,2 7595,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Snare.ds b/src/samples/drumsynth/farfisa/Fisa_Snare.ds new file mode 100644 index 0000000..904ee92 --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=83 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=1 +Level=63 +Slope=-55 +Envelope=0,70 1699,25 5197,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=157 +F1=187.05 +Wave1=0 +Track1=0 +F2=633.95 +Wave2=0 +Track2=0 +Method=0 +Param=3 +Envelope1=0,100 2099,21 8695,0 +Envelope2=0,100 600,22 2099,5 3748,0 +Filter=0 + +[NoiseBand] +On=1 +Level=83 +F=7650 +dF=47 +Envelope=0,72 350,29 3998,10 4697,2 7595,0 + +[NoiseBand2] +On=0 +Level=98 +F=200 +dF=36 +Envelope=0,72 350,29 3548,11 4697,2 7595,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/farfisa/Fisa_Tom.ds b/src/samples/drumsynth/farfisa/Fisa_Tom.ds new file mode 100644 index 0000000..32f7066 --- /dev/null +++ b/src/samples/drumsynth/farfisa/Fisa_Tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=161 +F1=130 +F2=62 +Droop=30 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=0 +Level=53 +Slope=-98 +Envelope=0,67 203,24 1840,3 6358,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=146 +F1=245.7 +Wave1=0 +Track1=0 +F2=633.95 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1599,65 3648,38 6096,18 8994,8 15990,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=7650 +dF=47 +Envelope=0,84 350,29 2898,5 6866,0 + +[NoiseBand2] +On=1 +Level=63 +F=50 +dF=12 +Envelope=0,56 393,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/ferraro/curb_meat_bass.ds b/src/samples/drumsynth/ferraro/curb_meat_bass.ds new file mode 100644 index 0000000..529e401 --- /dev/null +++ b/src/samples/drumsynth/ferraro/curb_meat_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=7 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=100 +F2=20 +Droop=0 +Phase=90 +Envelope=0,0 0,76 0,74 20622,0 + +[Noise] +On=1 +Level=86 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=9000 +Wave1=3 +Track1=1 +F2=4566 +Wave2=0 +Track2=1 +Method=3 +Param=57 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 11184,10 29030,0 +Filter=1 + +[NoiseBand] +On=1 +Level=121 +F=6000 +dF=40 +Envelope=0,40 2250,30 2250,56 4283,22 4283,8 4283,0 + +[NoiseBand2] +On=1 +Level=92 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=38 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/ferraro/eel_bass.ds b/src/samples/drumsynth/ferraro/eel_bass.ds new file mode 100644 index 0000000..882e55b --- /dev/null +++ b/src/samples/drumsynth/ferraro/eel_bass.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=0 +Level=9 +Filter=1 +HighPass=0 +Resonance=64 +FilterEnv=0,100 952,74 5711,49 6663,28 14991,6 22129,0 442000,100 442000,0 + +[Tone] +On=1 +Level=163 +F1=60 +F2=20 +Droop=0 +Phase=-45 +Envelope=0,100 3093,58 4759,35 4759,100 10708,21 18798,65 19750,20 27840,9 37358,19 57822,2 78761,0 + +[Noise] +On=1 +Level=174 +Slope=100 +Envelope=0,100 521,24 2384,11 5810,35 64484,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=545 +Wave1=1 +Track1=1 +F2=4 +Wave2=0 +Track2=1 +Method=0 +Param=73 +Envelope1=0,100 4800,50 10232,25 14039,61 17846,0 17846,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=65 +F=300 +dF=53 +Envelope=0,20 745,96 1490,36 3203,12 8194,11 9461,5 11025,0 + +[NoiseBand2] +On=1 +Level=34 +F=1000 +dF=100 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=6 +Bits=2 +Rate=7 diff --git a/src/samples/drumsynth/ferraro/feed_this.ds b/src/samples/drumsynth/ferraro/feed_this.ds new file mode 100644 index 0000000..13755dc --- /dev/null +++ b/src/samples/drumsynth/ferraro/feed_this.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=7 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=5000 +F2=1000 +Droop=100 +Phase=90 +Envelope=0,0 0,76 0,74 20622,0 + +[Noise] +On=1 +Level=86 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=9000 +Wave1=3 +Track1=1 +F2=4566 +Wave2=0 +Track2=1 +Method=3 +Param=57 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 11184,10 29030,0 +Filter=1 + +[NoiseBand] +On=1 +Level=121 +F=6000 +dF=40 +Envelope=0,40 2250,30 2250,56 4283,22 4283,8 4283,0 + +[NoiseBand2] +On=1 +Level=92 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=38 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/ferraro/gerbil_snare.ds b/src/samples/drumsynth/ferraro/gerbil_snare.ds new file mode 100644 index 0000000..b0273bc --- /dev/null +++ b/src/samples/drumsynth/ferraro/gerbil_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=600 +Level=-9 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=92 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=26 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/ferraro/grumpy_buzzard.ds b/src/samples/drumsynth/ferraro/grumpy_buzzard.ds new file mode 100644 index 0000000..0080aa3 --- /dev/null +++ b/src/samples/drumsynth/ferraro/grumpy_buzzard.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=162 +F1=250 +F2=500 +Droop=100 +Phase=20 +Envelope=0,0 317,100 635,100 1368,50 4660,13 7833,0 + +[Noise] +On=1 +Level=160 +Slope=40 +Envelope=0,70 1699,25 5197,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=157 +F1=187.05 +Wave1=3 +Track1=0 +F2=633.95 +Wave2=3 +Track2=0 +Method=1 +Param=3 +Envelope1=0,100 2099,21 8695,0 +Envelope2=0,100 600,22 2099,5 3748,0 +Filter=0 + +[NoiseBand] +On=1 +Level=83 +F=7650 +dF=47 +Envelope=0,72 350,29 3998,10 4697,2 7595,0 + +[NoiseBand2] +On=0 +Level=98 +F=200 +dF=36 +Envelope=0,72 350,29 3548,11 4697,2 7595,0 + +[Distortion] +On=1 +Clipping=26 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/ferraro/jaguar_hats.ds b/src/samples/drumsynth/ferraro/jaguar_hats.ds new file mode 100644 index 0000000..1ec661d --- /dev/null +++ b/src/samples/drumsynth/ferraro/jaguar_hats.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=1 +Resonance=23 +FilterEnv=0,92 26174,0 444000,100 444000,0 + +[Tone] +On=1 +Level=108 +F1=5000 +F2=20000 +Droop=100 +Phase=90 +Envelope=0,100 7376,20 7376,11 15070,0 + +[Noise] +On=1 +Level=181 +Slope=-100 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=109 +F1=9000 +Wave1=2 +Track1=1 +F2=4566 +Wave2=2 +Track2=1 +Method=3 +Param=19 +Envelope1=0,100 1250,20 31727,0 +Envelope2=0,100 11184,10 26968,0 +Filter=1 + +[NoiseBand] +On=1 +Level=49 +F=1200 +dF=40 +Envelope=0,100 2250,30 2250,100 4283,22 4283,8 22209,0 + +[NoiseBand2] +On=1 +Level=92 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=26 +Bits=1 +Rate=7 diff --git a/src/samples/drumsynth/ferraro/radio_hats.ds b/src/samples/drumsynth/ferraro/radio_hats.ds new file mode 100644 index 0000000..04cd9d6 --- /dev/null +++ b/src/samples/drumsynth/ferraro/radio_hats.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Level=0 +Filter=0 +HighPass=1 +Resonance=48 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=108 +F1=20000 +F2=2000 +Droop=0 +Phase=90 +Envelope=0,100 7376,20 10708,16 18322,0 + +[Noise] +On=1 +Level=86 +Slope=-50 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=9000 +Wave1=3 +Track1=1 +F2=4566 +Wave2=0 +Track2=1 +Method=3 +Param=57 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 11184,10 29030,0 +Filter=1 + +[NoiseBand] +On=1 +Level=49 +F=1200 +dF=40 +Envelope=0,40 2250,30 2250,56 4283,22 4283,8 4283,0 + +[NoiseBand2] +On=1 +Level=92 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=26 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/ferraro/worm_bass.ds b/src/samples/drumsynth/ferraro/worm_bass.ds new file mode 100644 index 0000000..ca684b1 --- /dev/null +++ b/src/samples/drumsynth/ferraro/worm_bass.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=64 +FilterEnv=0,100 952,74 5711,49 6663,28 14991,6 22129,0 442000,100 442000,0 + +[Tone] +On=1 +Level=133 +F1=30 +F2=60 +Droop=70 +Phase=-45 +Envelope=0,100 3093,58 4759,35 10232,20 13563,0 + +[Noise] +On=1 +Level=33 +Slope=21 +Envelope=0,100 521,24 2384,11 5661,3 5810,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=545 +Wave1=1 +Track1=1 +F2=4 +Wave2=0 +Track2=1 +Method=0 +Param=73 +Envelope1=0,100 4800,50 10232,25 14039,61 17846,0 17846,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=52 +F=7888 +dF=78 +Envelope=0,20 745,96 1490,36 3203,12 8194,11 9461,5 11025,0 + +[NoiseBand2] +On=1 +Level=34 +F=1000 +dF=100 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=12 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/instrument/E_Piano.ds b/src/samples/drumsynth/instrument/E_Piano.ds new file mode 100644 index 0000000..a00fb4b --- /dev/null +++ b/src/samples/drumsynth/instrument/E_Piano.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,100 8400,27 26550,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 + +[Overtones] +On=1 +Level=128 +F1=438 +Wave1=0 +Track1=0 +F2=220 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=69 +Envelope1=0,0 30,100 900,38 6375,16 29400,0 +Envelope2=0,100 2700,99 9300,27 30450,0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/FM_Bass.ds b/src/samples/drumsynth/instrument/FM_Bass.ds new file mode 100644 index 0000000..8def6ea --- /dev/null +++ b/src/samples/drumsynth/instrument/FM_Bass.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=69 +F1=440 +F2=220 +Droop=44 +Phase=0 +Envelope=0,100 14400,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 + +[Overtones] +On=1 +Level=137 +F1=220 +Wave1=0 +Track1=0 +F2=55 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 29400,0 +Envelope2=0,0 0,100 8550,68 15000,93 30450,0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/Moog_bass.ds b/src/samples/drumsynth/instrument/Moog_bass.ds new file mode 100644 index 0000000..f151731 --- /dev/null +++ b/src/samples/drumsynth/instrument/Moog_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for more controls +Tuning=-12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=95 +FilterEnv=0,45 190,74 1758,28 7680,0 8630,0 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=-8 +Envelope=0,22 649,12 8123,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=109.5 +Wave1=3 +Track1=0 +F2=220.5 +Wave2=3 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 7775,0 +Envelope2=0,100 7759,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/Oboe.ds b/src/samples/drumsynth/instrument/Oboe.ds new file mode 100644 index 0000000..29e0296 --- /dev/null +++ b/src/samples/drumsynth/instrument/Oboe.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=117 +F1=1760 +F2=1767 +Droop=0 +Phase=0 +Envelope=0,0 3150,57 24450,89 29250,0 + +[Noise] +On=0 +Level=53 +Slope=-100 +Envelope=0,0 1200,100 5400,53 54600,48 58500,29 60900,0 + +[Overtones] +On=1 +Level=128 +F1=220 +Wave1=0 +Track1=0 +F2=880 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=57 +Envelope1=0,0 300,100 3000,95 25500,92 29700,0 +Envelope2=0,0 450,100 3000,84 84300,97 84300,0 + +[NoiseBand] +On=0 +Level=84 +F=1000 +dF=69 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/Temple_Bell.ds b/src/samples/drumsynth/instrument/Temple_Bell.ds new file mode 100644 index 0000000..bae4aa5 --- /dev/null +++ b/src/samples/drumsynth/instrument/Temple_Bell.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=74 +F1=330 +F2=330 +Droop=0 +Phase=0 +Envelope=0,93 11400,17 33300,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 + +[Overtones] +On=1 +Level=128 +F1=220 +Wave1=0 +Track1=0 +F2=542.7 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=50 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 58800,0 +Envelope2=0,100 26550,83 62400,0 + +[NoiseBand] +On=0 +Level=127 +F=1630 +dF=15 +Envelope=0,100 2100,10 9750,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/flute.ds b/src/samples/drumsynth/instrument/flute.ds new file mode 100644 index 0000000..667e62a --- /dev/null +++ b/src/samples/drumsynth/instrument/flute.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,0 9900,82 36000,83 36600,0 + +[Noise] +On=1 +Level=12 +Slope=-57 +Envelope=0,0 600,100 4200,45 34050,45 35700,80 38850,0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=1320 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 9900,82 32400,79 33900,24 37950,0 +Envelope2=0,0 6300,45 12000,0 + +[NoiseBand] +On=1 +Level=14 +F=880 +dF=73 +Envelope=0,0 600,100 4200,45 32400,46 36000,83 36600,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/mute_bass.ds b/src/samples/drumsynth/instrument/mute_bass.ds new file mode 100644 index 0000000..1f3cf29 --- /dev/null +++ b/src/samples/drumsynth/instrument/mute_bass.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=80 +Slope=-100 +Envelope=0,0 83,95 83,0 + +[Overtones] +On=1 +Level=128 +F1=110 +Wave1=0 +Track1=0 +F2=55 +Wave2=1 +Track2=0 +Filter=0 +Method=1 +Param=38 +Envelope1=0,100 6450,24 18900,0 +Envelope2=0,100 7650,20 34050,0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/pizzi.ds b/src/samples/drumsynth/instrument/pizzi.ds new file mode 100644 index 0000000..82f526f --- /dev/null +++ b/src/samples/drumsynth/instrument/pizzi.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=57 +Slope=-64 +Envelope=0,100 596,0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=440 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=81 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 1043,6 5000,0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/soft_piano.ds b/src/samples/drumsynth/instrument/soft_piano.ds new file mode 100644 index 0000000..4658473 --- /dev/null +++ b/src/samples/drumsynth/instrument/soft_piano.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,41 8709,25 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=0 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,100 8400,27 26550,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=440 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=74 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 37687,0 +Envelope2=0,100 8100,25 47980,0 + +[NoiseBand] +On=1 +Level=67 +F=2200 +dF=5 +Envelope=0,0 459,96 1393,15 9750,0 + +[NoiseBand2] +On=1 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/square_lead.ds b/src/samples/drumsynth/instrument/square_lead.ds new file mode 100644 index 0000000..ca1bc9e --- /dev/null +++ b/src/samples/drumsynth/instrument/square_lead.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=80 +Slope=-100 +Envelope=0,0 83,95 83,0 + +[Overtones] +On=1 +Level=90 +F1=110.5 +Wave1=4 +Track1=0 +F2=109.5 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=28 +Envelope1=0,0 2400,75 27300,60 32100,0 +Envelope2=0,0 3000,70 27300,60 32100,0 + +[NoiseBand] +On=1 +Level=127 +F=220 +dF=6 +Envelope=0,0 2400,78 8100,17 32100,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/sweep.ds b/src/samples/drumsynth/instrument/sweep.ds new file mode 100644 index 0000000..7422ca2 --- /dev/null +++ b/src/samples/drumsynth/instrument/sweep.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=20.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=106 +F1=220 +F2=220 +Droop=0 +Phase=0 +Envelope=0,0 1200,51 48900,9 53400,25 62400,21 66900,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,100 4500,30 9000,0 + +[Overtones] +On=1 +Level=141 +F1=1100 +Wave1=0 +Track1=0 +F2=880 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=52 +Envelope1=0,0 900,96 8700,13 19800,0 +Envelope2=0,13 14100,13 22500,71 31200,0 + +[NoiseBand] +On=1 +Level=106 +F=660 +dF=0 +Envelope=0,14 24600,13 33600,48 42600,20 44100,0 + +[NoiseBand2] +On=1 +Level=90 +F=440 +dF=0 +Envelope=0,12 34500,12 44400,32 51300,24 54900,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/techno_stab.ds b/src/samples/drumsynth/instrument/techno_stab.ds new file mode 100644 index 0000000..04d5c93 --- /dev/null +++ b/src/samples/drumsynth/instrument/techno_stab.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,63 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=126 +F1=220 +Wave1=4 +Track1=0 +F2=220 +Wave2=3 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=1 + +[NoiseBand] +On=0 +Level=110 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=11 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/instrument/tinkle.ds b/src/samples/drumsynth/instrument/tinkle.ds new file mode 100644 index 0000000..a5b621e --- /dev/null +++ b/src/samples/drumsynth/instrument/tinkle.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=22 +F1=6520 +F2=6520 +Droop=0 +Phase=0 +Envelope=0,0 9000,59 17700,28 28500,5 40500,26 48900,3 57600,16 67200,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 + +[Overtones] +On=1 +Level=128 +F1=6520 +Wave1=0 +Track1=0 +F2=3520 +Wave2=1 +Track2=0 +Filter=0 +Method=1 +Param=40 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 58800,0 +Envelope2=0,100 33000,72 62400,0 + +[NoiseBand] +On=1 +Level=117 +F=8000 +dF=53 +Envelope=0,100 300,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/trumpet.ds b/src/samples/drumsynth/instrument/trumpet.ds new file mode 100644 index 0000000..9b3453d --- /dev/null +++ b/src/samples/drumsynth/instrument/trumpet.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=117 +F1=1760 +F2=1767 +Droop=0 +Phase=0 +Envelope=0,0 3150,57 24450,89 29250,0 + +[Noise] +On=0 +Level=53 +Slope=-100 +Envelope=0,0 1200,100 5400,53 54600,48 58500,29 60900,0 + +[Overtones] +On=1 +Level=128 +F1=880 +Wave1=0 +Track1=0 +F2=880 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=89 +Envelope1=0,0 300,100 3000,95 25500,92 29700,0 +Envelope2=0,0 450,100 1380,21 1500,98 84300,97 84300,0 + +[NoiseBand] +On=0 +Level=84 +F=1000 +dF=69 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/upright_bass.ds b/src/samples/drumsynth/instrument/upright_bass.ds new file mode 100644 index 0000000..f3eeb2b --- /dev/null +++ b/src/samples/drumsynth/instrument/upright_bass.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=117 +F1=1760 +F2=1767 +Droop=0 +Phase=0 +Envelope=0,0 3150,57 24450,89 29250,0 + +[Noise] +On=0 +Level=53 +Slope=-100 +Envelope=0,0 1200,100 5400,53 54600,48 58500,29 60900,0 + +[Overtones] +On=1 +Level=128 +F1=110 +Wave1=0 +Track1=0 +F2=55 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=48 +Envelope1=0,0 300,100 6300,28 16950,12 29700,0 +Envelope2=0,0 0,100 14700,90 41700,0 + +[NoiseBand] +On=1 +Level=26 +F=100 +dF=69 +Envelope=0,0 360,100 1170,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/violin.ds b/src/samples/drumsynth/instrument/violin.ds new file mode 100644 index 0000000..331ae38 --- /dev/null +++ b/src/samples/drumsynth/instrument/violin.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,0 9900,82 36000,83 36600,0 + +[Noise] +On=0 +Level=18 +Slope=-57 +Envelope=0,0 600,100 4200,45 29400,21 36600,0 + +[Overtones] +On=1 +Level=128 +F1=1760 +Wave1=1 +Track1=0 +F2=6 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=81 +Envelope1=0,0 9900,82 36000,83 36600,0 +Envelope2=0,0 14550,51 27000,86 36000,83 36600,0 + +[NoiseBand] +On=1 +Level=26 +F=1760 +dF=75 +Envelope=0,0 600,100 2250,20 33450,17 36000,83 36600,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/instrument/whistler.ds b/src/samples/drumsynth/instrument/whistler.ds new file mode 100644 index 0000000..9a7afcf --- /dev/null +++ b/src/samples/drumsynth/instrument/whistler.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,0 9900,82 36000,83 36600,0 + +[Noise] +On=0 +Level=22 +Slope=-85 +Envelope=0,0 600,100 4200,45 19800,30 21150,0 + +[Overtones] +On=1 +Level=128 +F1=3520 +Wave1=0 +Track1=0 +F2=6 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=81 +Envelope1=0,0 1650,83 11400,81 15300,0 +Envelope2=0,0 14550,51 27000,86 36000,83 36600,0 + +[NoiseBand] +On=1 +Level=37 +F=3520 +dF=75 +Envelope=0,0 600,100 4200,45 13650,44 16500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/hihatopclo.ds b/src/samples/drumsynth/jorgensohn/hihatopclo.ds new file mode 100644 index 0000000..e2786e7 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/hihatopclo.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=2 +FilterEnv=0,0 714,100 2538,100 3331,96 24271,44 31600,0 34423,0 442000,100 442000,0 +Comment=schauer-sohn@freenet.de + +[Tone] +On=1 +Level=72 +F1=200 +F2=495 +Droop=85 +Phase=0 +Envelope=0,0 3173,19 6107,8 14198,3 33551,0 + +[Noise] +On=0 +Level=143 +Slope=18 +Envelope=0,0 2792,0 10279,0 37050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=162 +F1=7838 +Wave1=4 +Track1=0 +F2=4395 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,0 635,11 872,26 2142,19 3649,12 6345,9 12818,5 31727,5 32615,0 34027,0 +Envelope2=0,0 952,99 32520,32 34344,0 +Filter=1 + +[NoiseBand] +On=1 +Level=181 +F=6000 +dF=16 +Envelope=0,0 1110,26 5711,11 12691,5 31647,2 33868,0 + +[NoiseBand2] +On=1 +Level=181 +F=6200 +dF=18 +Envelope=0,0 1031,27 6266,8 16974,3 31330,0 33234,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/kick.ds b/src/samples/drumsynth/jorgensohn/kick.ds new file mode 100644 index 0000000..82b1592 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=99 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=117 +F1=200 +F2=30 +Droop=40 +Phase=10 +Envelope=0,100 5294,31 9581,5 16498,0 + +[Noise] +On=0 +Level=12 +Slope=-100 +Envelope=0,33 317,8 10184,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=80 +F1=800 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,29 1983,44 9359,16 19988,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/ramacymlong.ds b/src/samples/drumsynth/jorgensohn/ramacymlong.ds new file mode 100644 index 0000000..3f65bd7 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/ramacymlong.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,0 1491,0 3014,0 5806,0 442000,100 442000,0 + +[Tone] +On=1 +Level=162 +F1=100 +F2=7040 +Droop=100 +Phase=90 +Envelope=0,61 381,48 666,20 1840,20 2760,44 5457,20 7868,11 11422,7 18655,2 32615,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,0 698,0 1618,0 3363,0 5933,0 13452,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=7005 +Wave1=0 +Track1=0 +F2=7075 +Wave2=0 +Track2=0 +Method=0 +Param=34 +Envelope1=0,17 1491,57 4569,25 10533,6 32488,0 +Envelope2=0,22 1491,56 4822,23 10628,6 32361,0 +Filter=0 + +[NoiseBand] +On=0 +Level=111 +F=2000 +dF=47 +Envelope=0,0 2189,0 4500,0 + +[NoiseBand2] +On=0 +Level=181 +F=8000 +dF=100 +Envelope=0,0 254,0 539,0 2348,0 13357,0 + +[Distortion] +On=0 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/ramacymshort.ds b/src/samples/drumsynth/jorgensohn/ramacymshort.ds new file mode 100644 index 0000000..b4e8ba9 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/ramacymshort.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,0 1491,0 3014,0 5806,0 442000,100 442000,0 + +[Tone] +On=1 +Level=162 +F1=100 +F2=7040 +Droop=100 +Phase=90 +Envelope=0,61 381,48 666,20 1840,20 2760,44 4093,21 6916,4 15578,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,0 698,0 1618,0 3363,0 5933,0 13452,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=7030 +Wave1=0 +Track1=0 +F2=7050 +Wave2=0 +Track2=0 +Method=0 +Param=34 +Envelope1=0,17 1491,57 2760,25 6060,5 11580,0 +Envelope2=0,22 1491,56 2792,28 6155,6 10628,0 +Filter=0 + +[NoiseBand] +On=0 +Level=111 +F=2000 +dF=47 +Envelope=0,0 2189,0 4500,0 + +[NoiseBand2] +On=0 +Level=181 +F=8000 +dF=100 +Envelope=0,0 254,0 539,0 2348,0 13357,0 + +[Distortion] +On=0 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/ride6.ds b/src/samples/drumsynth/jorgensohn/ride6.ds new file mode 100644 index 0000000..1a5aff9 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/ride6.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=0 +HighPass=0 +Resonance=80 +FilterEnv=0,78 442000,100 442000,0 + +[Tone] +On=1 +Level=139 +F1=7000 +F2=7000 +Droop=0 +Phase=0 +Envelope=0,0 5394,51 7297,29 10787,15 21955,5 37691,0 + +[Noise] +On=0 +Level=143 +Slope=18 +Envelope=0,0 2792,0 10279,0 37050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=164 +F1=7838 +Wave1=4 +Track1=0 +F2=4565 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,0 238,41 1190,22 2914,13 6345,9 12818,5 37691,0 +Envelope2=0,100 40102,24 40102,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=7000 +dF=36 +Envelope=0,0 238,40 1190,24 2855,16 5790,10 12691,5 37564,0 + +[NoiseBand2] +On=1 +Level=150 +F=5880 +dF=25 +Envelope=0,0 238,35 1348,20 3807,12 12532,5 37755,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/snare5.ds b/src/samples/drumsynth/jorgensohn/snare5.ds new file mode 100644 index 0000000..8894b26 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/snare5.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 6714,100 444000,100 444000,0 + +[Tone] +On=1 +Level=137 +F1=195 +F2=200 +Droop=0 +Phase=00 +Envelope=0,100 190,100 972,26 2201,8 6255,1 7854,0 + +[Noise] +On=1 +Level=108 +Slope=-24 +Envelope=0,100 222,100 1314,27 2803,14 6302,2 7696,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=285 +Wave1=0 +Track1=0 +F2=75 +Wave2=2 +Track2=0 +Method=0 +Param=93 +Envelope1=0,100 190,99 952,21 5431,4 7807,0 +Envelope2=0,100 158,100 839,14 1077,12 6033,1 7696,0 +Filter=0 + +[NoiseBand] +On=1 +Level=47 +F=278 +dF=10 +Envelope=0,100 190,102 206,100 966,24 6096,3 7727,0 + +[NoiseBand2] +On=1 +Level=49 +F=280 +dF=12 +Envelope=0,100 158,100 934,26 6033,2 7838,0 + +[Distortion] +On=1 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/vibra.ds b/src/samples/drumsynth/jorgensohn/vibra.ds new file mode 100644 index 0000000..2be66fe --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/vibra.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=schauer-sohn@freenet.de +Tuning=0 +Stretch=20 +Level=0 +Filter=0 +HighPass=1 +Resonance=96 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=99 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,35 793,100 2855,69 5552,68 8566,48 11422,58 15625,29 19512,35 24112,18 28808,19 33249,8 39976,8 47209,5 54697,5 70179,0 + +[Noise] +On=0 +Level=51 +Slope=-100 +Envelope=0,100 635,0 2617,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=34 +F1=1320 +Wave1=0 +Track1=0 +F2=438 +Wave2=0 +Track2=0 +Method=0 +Param=66 +Envelope1=0,100 2379,96 5235,54 8170,36 11263,35 15149,18 19353,17 23985,10 29315,9 34772,3 41372,5 47590,2 55331,2 70179,0 +Envelope2=0,0 793,100 3014,51 5869,59 8328,39 11501,47 15308,20 19433,23 24112,10 28808,10 33249,4 39595,4 47209,2 54570,2 70052,0 +Filter=0 + +[NoiseBand] +On=1 +Level=27 +F=882 +dF=0 +Envelope=0,100 3093,47 5949,55 8408,35 11501,44 15308,20 19353,26 23874,12 28554,13 33249,5 39976,6 47209,4 54062,4 70179,0 + +[NoiseBand2] +On=1 +Level=39 +F=663 +dF=0 +Envelope=0,100 4283,100 5790,56 8328,38 12056,43 15546,21 19591,25 23795,14 29062,15 34265,5 40102,5 47209,2 56473,2 70179,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/jorgensohn/wood.ds b/src/samples/drumsynth/jorgensohn/wood.ds new file mode 100644 index 0000000..18167e1 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/wood.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=99 +FilterEnv=0,100 12215,74 442000,100 443000,0 + +[Tone] +On=0 +Level=117 +F1=200 +F2=30 +Droop=40 +Phase=10 +Envelope=0,100 5294,31 9581,5 16498,0 + +[Noise] +On=0 +Level=1 +Slope=-100 +Envelope=0,33 317,8 10184,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=80 +F1=800 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,29 1983,44 9359,16 19988,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1770 +dF=13 +Envelope=0,100 666,2 5774,0 + +[NoiseBand2] +On=1 +Level=128 +F=1750 +dF=15 +Envelope=0,100 698,2 5838,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/wood2.ds b/src/samples/drumsynth/jorgensohn/wood2.ds new file mode 100644 index 0000000..b2ffb9a --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/wood2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=99 +FilterEnv=0,100 12215,74 442000,100 443000,0 + +[Tone] +On=0 +Level=117 +F1=200 +F2=30 +Droop=40 +Phase=10 +Envelope=0,100 5294,31 9581,5 16498,0 + +[Noise] +On=0 +Level=1 +Slope=-100 +Envelope=0,33 317,8 10184,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=80 +F1=800 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,29 1983,44 9359,16 19988,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=900 +dF=13 +Envelope=0,100 666,2 5774,0 + +[NoiseBand2] +On=1 +Level=128 +F=860 +dF=15 +Envelope=0,100 698,2 5838,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/jorgensohn/zurrr.ds b/src/samples/drumsynth/jorgensohn/zurrr.ds new file mode 100644 index 0000000..7b0c9b3 --- /dev/null +++ b/src/samples/drumsynth/jorgensohn/zurrr.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=0 +Resonance=98 +FilterEnv=0,100 40134,100 442000,100 442000,0 + +[Tone] +On=0 +Level=28 +F1=1340 +F2=1340 +Droop=0 +Phase=0 +Envelope=0,100 40293,100 40293,0 + +[Noise] +On=0 +Level=143 +Slope=18 +Envelope=0,0 2792,0 10279,0 37050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=164 +F1=1000 +Wave1=4 +Track1=0 +F2=1000.01 +Wave2=4 +Track2=0 +Method=2 +Param=100 +Envelope1=0,0 159,100 1507,33 4045,41 9121,100 14674,24 30775,2 37691,0 +Envelope2=0,100 40102,24 40102,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=7000 +dF=23 +Envelope=0,0 238,48 1269,34 3331,21 6028,14 12691,5 37564,0 + +[NoiseBand2] +On=0 +Level=74 +F=7030 +dF=25 +Envelope=0,0 159,38 3490,20 12532,5 37755,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Bongo_h.ds b/src/samples/drumsynth/latin/Bongo_h.ds new file mode 100644 index 0000000..d158ccd --- /dev/null +++ b/src/samples/drumsynth/latin/Bongo_h.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=73 +Slope=-46 +Envelope=0,100 194,8 685,0 + +[Overtones] +On=1 +Level=128 +F1=321 +Wave1=0 +Track1=0 +F2=254 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=75 +Envelope1=0,100 2712,15 8815,0 +Envelope2=0,100 209,18 2384,2 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Bongo_m2.ds b/src/samples/drumsynth/latin/Bongo_m2.ds new file mode 100644 index 0000000..da462d5 --- /dev/null +++ b/src/samples/drumsynth/latin/Bongo_m2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,0 2607,88 3500,20 8750,0 + +[Noise] +On=0 +Level=81 +Slope=57 +Envelope=0,0 670,83 1341,95 2011,42 2682,13 3799,5 5810,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=4000 +dF=35 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=1 +Level=128 +F=300 +dF=27 +Envelope=0,100 834,15 2548,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Bongo_mu.ds b/src/samples/drumsynth/latin/Bongo_mu.ds new file mode 100644 index 0000000..e57dcce --- /dev/null +++ b/src/samples/drumsynth/latin/Bongo_mu.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=77 +Slope=-100 +Envelope=0,100 194,8 685,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=81 +Envelope1=0,100 983,12 2414,0 +Envelope2=0,100 1043,12 2384,2 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Clave_we.ds b/src/samples/drumsynth/latin/Clave_we.ds new file mode 100644 index 0000000..b58c091 --- /dev/null +++ b/src/samples/drumsynth/latin/Clave_we.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=181 +F1=2450 +F2=2450 +Droop=0 +Phase=-130 +Envelope=0,99 149,66 946,21 2138,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=94 +F=2450 +dF=25 +Envelope=0,5 1341,34 2905,39 3948,21 7138,8 11184,2 18560,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Gamelan.ds b/src/samples/drumsynth/latin/Gamelan.ds new file mode 100644 index 0000000..88ac89a --- /dev/null +++ b/src/samples/drumsynth/latin/Gamelan.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=500 +F2=500 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=73 +Slope=-79 +Envelope=0,100 194,8 685,0 + +[Overtones] +On=1 +Level=161 +F1=700 +Wave1=0 +Track1=0 +F2=1000 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=89 +Envelope1=0,100 2011,47 4097,23 8418,8 18027,0 +Envelope2=0,100 745,20 1341,95 20709,100 20709,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Maracas.ds b/src/samples/drumsynth/latin/Maracas.ds new file mode 100644 index 0000000..f988c69 --- /dev/null +++ b/src/samples/drumsynth/latin/Maracas.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=92 +Envelope=0,0 1415,63 1788,9 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=151 +F=100 +dF=35 +Envelope=0,100 1000,20 3054,16 7449,22 8641,0 + +[Distortion] +On=0 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Shaker_1.ds b/src/samples/drumsynth/latin/Shaker_1.ds new file mode 100644 index 0000000..bd6ae11 --- /dev/null +++ b/src/samples/drumsynth/latin/Shaker_1.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,0 2607,88 3500,20 8750,0 + +[Noise] +On=1 +Level=79 +Slope=-13 +Envelope=0,0 670,83 968,93 1415,40 2682,13 3799,5 5810,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Shaker_2.ds b/src/samples/drumsynth/latin/Shaker_2.ds new file mode 100644 index 0000000..2876e9d --- /dev/null +++ b/src/samples/drumsynth/latin/Shaker_2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,0 2607,88 3500,20 8750,0 + +[Noise] +On=1 +Level=79 +Slope=-13 +Envelope=0,0 1341,95 2682,13 4470,12 5364,34 6630,10 8194,29 9461,6 11323,3 12589,15 14303,0 15718,2 16835,8 18400,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Tamb_hit.ds b/src/samples/drumsynth/latin/Tamb_hit.ds new file mode 100644 index 0000000..7780a2c --- /dev/null +++ b/src/samples/drumsynth/latin/Tamb_hit.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=17 +Envelope=0,0 670,4 745,97 1192,11 3278,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=9500 +dF=50 +Envelope=0,0 670,2 670,100 2086,26 3576,6 8120,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Tamb_shk.ds b/src/samples/drumsynth/latin/Tamb_shk.ds new file mode 100644 index 0000000..9a927ae --- /dev/null +++ b/src/samples/drumsynth/latin/Tamb_shk.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=73 +Slope=17 +Envelope=0,0 670,4 1341,63 2086,7 3278,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=9500 +dF=50 +Envelope=0,0 670,2 745,32 1713,10 1788,28 3576,6 8120,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/ThumbPno.ds b/src/samples/drumsynth/latin/ThumbPno.ds new file mode 100644 index 0000000..92397f4 --- /dev/null +++ b/src/samples/drumsynth/latin/ThumbPno.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=32 +F1=320 +F2=300 +Droop=0 +Phase=90 +Envelope=0,0 596,0 13111,72 15644,27 22795,9 23838,0 + +[Noise] +On=1 +Level=136 +Slope=-100 +Envelope=0,100 36,11 387,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=512 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=72 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=32 +F=395 +dF=0 +Envelope=0,0 0,0 13111,65 15197,25 23242,9 24434,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=12 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/Triangle.ds b/src/samples/drumsynth/latin/Triangle.ds new file mode 100644 index 0000000..836452c --- /dev/null +++ b/src/samples/drumsynth/latin/Triangle.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=0 +Level=111 +Slope=69 +Envelope=0,100 3948,55 12440,4 18772,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/bongo_l.ds b/src/samples/drumsynth/latin/bongo_l.ds new file mode 100644 index 0000000..7048a8d --- /dev/null +++ b/src/samples/drumsynth/latin/bongo_l.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=77 +Slope=-100 +Envelope=0,100 194,8 685,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=56 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 1043,12 2384,2 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/guiro.ds b/src/samples/drumsynth/latin/guiro.ds new file mode 100644 index 0000000..4946af5 --- /dev/null +++ b/src/samples/drumsynth/latin/guiro.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=45 +FilterEnv=0,57 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=129 +F1=31 +Wave1=0 +Track1=0 +F2=31.01 +Wave2=0 +Track2=0 +Method=3 +Param=68 +Envelope1=0,100 14594,0 +Envelope2=0,20 7075,20 10724,25 16117,64 16117,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/one_clap.ds b/src/samples/drumsynth/latin/one_clap.ds new file mode 100644 index 0000000..9e22ad1 --- /dev/null +++ b/src/samples/drumsynth/latin/one_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=-59 +Envelope=0,100 117,20 729,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=155 +F=2000 +dF=44 +Envelope=0,100 143,13 1373,0 + +[NoiseBand2] +On=1 +Level=92 +F=2000 +dF=60 +Envelope=0,0 1188,8 2929,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/latin/taiko.ds b/src/samples/drumsynth/latin/taiko.ds new file mode 100644 index 0000000..cb9d60a --- /dev/null +++ b/src/samples/drumsynth/latin/taiko.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=94 +F1=120 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=147 +F1=250 +Wave1=0 +Track1=1 +F2=315 +Wave2=0 +Track2=1 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=81 +F=10000 +dF=49 +Envelope=0,0 3501,0 7524,20 10876,91 10876,0 + +[NoiseBand2] +On=1 +Level=128 +F=100 +dF=21 +Envelope=0,0 3,100 2533,23 11621,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/linn/linn_cab.ds b/src/samples/drumsynth/linn/linn_cab.ds new file mode 100644 index 0000000..c61cf38 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cab.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=1 +FilterEnv=0,11 0,39 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=130 +Slope=62 +Envelope=0,0 1124,44 2169,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=153 +F1=1081 +Wave1=0 +Track1=0 +F2=1639 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 626,25 2771,11 4678,0 +Envelope2=0,100 656,25 2712,13 4648,0 + +[NoiseBand] +On=1 +Level=154 +F=6000 +dF=76 +Envelope=0,0 1077,100 2185,0 + +[NoiseBand2] +On=0 +Level=98 +F=3131 +dF=78 +Envelope=0,100 477,12 1549,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_cga1.ds b/src/samples/drumsynth/linn/linn_cga1.ds new file mode 100644 index 0000000..241721f --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cga1.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=-6.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,63 442000,100 442000,0 + +[Tone] +On=1 +Level=153 +F1=230 +F2=230 +Droop=65 +Phase=00 +Envelope=0,100 417,50 2056,25 10355,0 + +[Noise] +On=1 +Level=92 +Slope=-35 +Envelope=0,100 98,0 + +[Overtones] +On=1 +Level=138 +F1=280 +Wave1=0 +Track1=0 +F2=420 +Wave2=1 +Track2=0 +Filter=0 +Method=0 +Param=27 +Envelope1=0,100 1758,10 7509,0 +Envelope2=0,100 1192,9 7390,0 + +[NoiseBand] +On=1 +Level=113 +F=800 +dF=52 +Envelope=0,100 521,15 2086,5 9237,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_cga2.ds b/src/samples/drumsynth/linn/linn_cga2.ds new file mode 100644 index 0000000..cf0b970 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cga2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,63 442000,100 442000,0 + +[Tone] +On=1 +Level=153 +F1=230 +F2=230 +Droop=65 +Phase=00 +Envelope=0,100 417,50 2056,25 10355,0 + +[Noise] +On=1 +Level=92 +Slope=-35 +Envelope=0,100 98,0 + +[Overtones] +On=1 +Level=138 +F1=280 +Wave1=0 +Track1=0 +F2=420 +Wave2=1 +Track2=0 +Filter=0 +Method=0 +Param=27 +Envelope1=0,100 1758,10 7509,0 +Envelope2=0,100 1192,9 7390,0 + +[NoiseBand] +On=1 +Level=113 +F=800 +dF=52 +Envelope=0,100 521,15 2086,5 9237,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_cga3.ds b/src/samples/drumsynth/linn/linn_cga3.ds new file mode 100644 index 0000000..01e6cdb --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cga3.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=6.00 +Stretch=80.0 +Filter=0 +HighPass=0 +FilterEnv=0,63 442000,100 442000,0 + +[Tone] +On=1 +Level=153 +F1=230 +F2=230 +Droop=65 +Phase=00 +Envelope=0,100 417,50 2056,25 10355,0 + +[Noise] +On=1 +Level=92 +Slope=-35 +Envelope=0,100 98,0 + +[Overtones] +On=1 +Level=138 +F1=280 +Wave1=0 +Track1=0 +F2=420 +Wave2=1 +Track2=0 +Filter=0 +Method=0 +Param=27 +Envelope1=0,100 1758,10 7509,0 +Envelope2=0,100 1192,9 7390,0 + +[NoiseBand] +On=1 +Level=113 +F=800 +dF=52 +Envelope=0,100 521,15 2086,5 9237,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_cgam.ds b/src/samples/drumsynth/linn/linn_cgam.ds new file mode 100644 index 0000000..97a9807 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cgam.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=-6.00 +Stretch=30.0 +Filter=0 +HighPass=0 +FilterEnv=0,63 442000,100 442000,0 + +[Tone] +On=1 +Level=153 +F1=230 +F2=230 +Droop=65 +Phase=00 +Envelope=0,100 417,50 2056,25 10355,0 + +[Noise] +On=1 +Level=92 +Slope=-35 +Envelope=0,100 98,0 + +[Overtones] +On=1 +Level=138 +F1=280 +Wave1=0 +Track1=0 +F2=420 +Wave2=1 +Track2=0 +Filter=0 +Method=0 +Param=27 +Envelope1=0,100 1758,10 7509,0 +Envelope2=0,100 1192,9 7390,0 + +[NoiseBand] +On=1 +Level=113 +F=800 +dF=52 +Envelope=0,100 521,15 2086,5 9237,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_clp.ds b/src/samples/drumsynth/linn/linn_clp.ds new file mode 100644 index 0000000..4007899 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_clp.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=70.0 +Filter=1 +HighPass=1 +FilterEnv=0,11 442000,100 443000,0 +Level=0 +Resonance=4 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=154 +Slope=-100 +Envelope=0,100 63,33 238,92 238,8 603,71 635,5 823,86 966,32 1029,89 1219,15 1396,39 5520,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=173 +F=1700 +dF=61 +Envelope=0,100 127,0 238,92 333,0 508,9 633,0 823,86 934,0 1029,89 1219,15 1631,33 4473,20 4918,8 7868,0 + +[NoiseBand2] +On=1 +Level=137 +F=400 +dF=40 +Envelope=0,100 793,18 1364,89 3141,20 4886,8 7805,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_cow.ds b/src/samples/drumsynth/linn/linn_cow.ds new file mode 100644 index 0000000..4ffd7b0 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_cow.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,63 442000,100 442000,0 +Level=-2 +Resonance=0 + +[Tone] +On=1 +Level=143 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,0 135,97 968,59 2411,0 + +[Noise] +On=0 +Level=145 +Slope=-25 +Envelope=0,100 387,41 1013,24 1043,33 1371,18 1549,30 1967,7 2056,22 3665,7 4529,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=99 +F1=1081 +Wave1=0 +Track1=0 +F2=1639 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 48,98 785,87 1761,41 2284,0 +Envelope2=0,0 48,98 508,24 2189,0 + +[NoiseBand] +On=1 +Level=93 +F=2389 +dF=15 +Envelope=0,0 71,98 595,24 1682,0 + +[NoiseBand2] +On=1 +Level=71 +F=3131 +dF=78 +Envelope=0,0 159,96 523,19 1586,0 + +[Distortion] +On=1 +Clipping=6 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_kik.ds b/src/samples/drumsynth/linn/linn_kik.ds new file mode 100644 index 0000000..9976788 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_kik.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,75 887,73 442000,100 442000,0 +Level=0 +Resonance=7 + +[Tone] +On=1 +Level=145 +F1=127 +F2=47 +Droop=14 +Phase=00 +Envelope=0,100 364,98 507,0 507,95 4545,47 5621,0 + +[Noise] +On=1 +Level=69 +Slope=-100 +Envelope=0,0 0,99 443,6 443,100 491,17 715,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=115 +F=3000 +dF=88 +Envelope=0,100 180,11 715,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_snr.ds b/src/samples/drumsynth/linn/linn_snr.ds new file mode 100644 index 0000000..0e1b58f --- /dev/null +++ b/src/samples/drumsynth/linn/linn_snr.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 1249,100 2935,83 5096,73 442000,100 443000,0 +Level=0 +Resonance=1 + +[Tone] +On=1 +Level=173 +F1=164 +F2=165 +Droop=28 +Phase=10 +Envelope=0,100 1150,13 1923,0 + +[Noise] +On=1 +Level=119 +Slope=-20 +Envelope=0,97 0,0 615,36 1487,25 3173,20 4144,9 5175,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=163 +F1=210 +Wave1=0 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Filter=0 +Method=0 +Param=60 +Envelope1=0,100 615,18 1785,0 +Envelope2=0,100 674,21 1745,0 + +[NoiseBand] +On=1 +Level=77 +F=400 +dF=34 +Envelope=0,63 1494,37 1804,5 3668,8 3926,0 + +[NoiseBand2] +On=1 +Level=119 +F=10000 +dF=90 +Envelope=0,97 238,0 1487,25 3490,15 3827,6 5750,0 + +[Distortion] +On=1 +Clipping=6 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_stk.ds b/src/samples/drumsynth/linn/linn_stk.ds new file mode 100644 index 0000000..a690f0d --- /dev/null +++ b/src/samples/drumsynth/linn/linn_stk.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,11 0,39 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=125 +Slope=19 +Envelope=0,100 790,0 3203,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=164 +F1=218 +Wave1=0 +Track1=0 +F2=1270 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 685,0 +Envelope2=0,100 685,0 + +[NoiseBand] +On=1 +Level=174 +F=1270 +dF=44 +Envelope=0,100 165,17 3236,0 + +[NoiseBand2] +On=1 +Level=142 +F=3131 +dF=80 +Envelope=0,100 203,17 2132,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_tamb.ds b/src/samples/drumsynth/linn/linn_tamb.ds new file mode 100644 index 0000000..1b9131a --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tamb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,83 442000,100 442000,0 +Level=0 +Resonance=40 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=138 +Slope=8 +Envelope=0,74 477,11 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Filter=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 + +[NoiseBand] +On=1 +Level=129 +F=6300 +dF=44 +Envelope=0,100 462,17 507,67 1818,28 1818,47 2682,22 2682,45 3153,21 4719,0 + +[NoiseBand2] +On=1 +Level=106 +F=8840 +dF=22 +Envelope=0,100 317,10 507,67 1408,24 1460,55 1904,35 2324,52 3054,35 4263,27 6801,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/linn/linn_tom1.ds b/src/samples/drumsynth/linn/linn_tom1.ds new file mode 100644 index 0000000..6e3e911 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tom1.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=-4.00 +Stretch=90.0 +Filter=1 +HighPass=0 +FilterEnv=0,95 4619,91 12962,71 28903,0 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=100 +F2=40 +Droop=11 +Phase=00 +Envelope=0,100 2533,54 6704,26 15346,17 30095,14 32330,0 + +[Noise] +On=1 +Level=151 +Slope=-56 +Envelope=0,100 1341,20 2384,1 35310,0 36204,0 + +[Overtones] +On=1 +Level=111 +F1=208 +Wave1=2 +Track1=1 +F2=300 +Wave2=1 +Track2=1 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 2682,20 7598,7 23391,0 +Envelope2=0,100 2000,20 5661,7 18474,0 + +[NoiseBand] +On=0 +Level=113 +F=6000 +dF=100 +Envelope=0,100 626,25 1877,13 5602,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_tom2.ds b/src/samples/drumsynth/linn/linn_tom2.ds new file mode 100644 index 0000000..447ea72 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tom2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=70.0 +Filter=1 +HighPass=0 +FilterEnv=0,95 4619,91 12962,71 28903,0 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=100 +F2=40 +Droop=11 +Phase=00 +Envelope=0,100 2533,54 6704,26 15346,17 30095,14 32330,0 + +[Noise] +On=1 +Level=151 +Slope=-56 +Envelope=0,100 1341,20 2384,1 35310,0 36204,0 + +[Overtones] +On=1 +Level=111 +F1=208 +Wave1=2 +Track1=1 +F2=300 +Wave2=1 +Track2=1 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 2682,20 7598,7 23391,0 +Envelope2=0,100 2000,20 5661,7 18474,0 + +[NoiseBand] +On=0 +Level=113 +F=6000 +dF=100 +Envelope=0,100 626,25 1877,13 5602,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_tom3.ds b/src/samples/drumsynth/linn/linn_tom3.ds new file mode 100644 index 0000000..2dc6bc2 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tom3.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=8.00 +Stretch=50.0 +Filter=1 +HighPass=0 +FilterEnv=0,95 4619,91 12962,71 28903,0 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=100 +F2=40 +Droop=11 +Phase=00 +Envelope=0,100 2533,54 6704,26 15346,17 30095,14 32330,0 + +[Noise] +On=1 +Level=151 +Slope=-56 +Envelope=0,100 1341,20 2384,1 35310,0 36204,0 + +[Overtones] +On=1 +Level=111 +F1=208 +Wave1=2 +Track1=1 +F2=300 +Wave2=1 +Track2=1 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 2682,20 7598,7 23391,0 +Envelope2=0,100 2000,20 5661,7 18474,0 + +[NoiseBand] +On=0 +Level=113 +F=6000 +dF=100 +Envelope=0,100 626,25 1877,13 5602,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_tom4.ds b/src/samples/drumsynth/linn/linn_tom4.ds new file mode 100644 index 0000000..0b7d578 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tom4.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=13.00 +Stretch=30.0 +Filter=1 +HighPass=0 +FilterEnv=0,95 4619,91 12962,71 28903,0 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=100 +F2=40 +Droop=11 +Phase=00 +Envelope=0,100 2533,54 6704,26 15346,17 30095,14 32330,0 + +[Noise] +On=1 +Level=151 +Slope=-56 +Envelope=0,100 1341,20 2384,1 35310,0 36204,0 + +[Overtones] +On=1 +Level=111 +F1=208 +Wave1=2 +Track1=1 +F2=300 +Wave2=1 +Track2=1 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 2682,20 7598,7 23391,0 +Envelope2=0,100 2000,20 5661,7 18474,0 + +[NoiseBand] +On=0 +Level=113 +F=6000 +dF=100 +Envelope=0,100 626,25 1877,13 5602,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/linn/linn_tom5.ds b/src/samples/drumsynth/linn/linn_tom5.ds new file mode 100644 index 0000000..45d8c09 --- /dev/null +++ b/src/samples/drumsynth/linn/linn_tom5.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=17.00 +Stretch=30.0 +Filter=1 +HighPass=0 +FilterEnv=0,95 4619,91 12962,71 28903,0 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=100 +F2=40 +Droop=11 +Phase=00 +Envelope=0,100 2533,54 6704,26 15346,17 30095,14 32330,0 + +[Noise] +On=1 +Level=151 +Slope=-56 +Envelope=0,100 1341,20 2384,1 35310,0 36204,0 + +[Overtones] +On=1 +Level=111 +F1=208 +Wave1=2 +Track1=1 +F2=300 +Wave2=1 +Track2=1 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 2682,20 7598,7 23391,0 +Envelope2=0,100 2000,20 5661,7 18474,0 + +[NoiseBand] +On=0 +Level=113 +F=6000 +dF=100 +Envelope=0,100 626,25 1877,13 5602,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Eye_Eye.ds b/src/samples/drumsynth/magnetboy/Eye_Eye.ds new file mode 100644 index 0000000..074cb61 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Eye_Eye.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=20 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=99999 +F2=40 +Droop=17 +Phase=32 +Envelope=0,0 27761,95 59487,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 58250,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=880 +Wave1=4 +Track1=0 +F2=480 +Wave2=1 +Track2=1 +Method=2 +Param=88 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 88835,8 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=100 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=6 diff --git a/src/samples/drumsynth/magnetboy/Fp1.ds b/src/samples/drumsynth/magnetboy/Fp1.ds new file mode 100644 index 0000000..48c8af0 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Fp1.ds @@ -0,0 +1,59 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=1 +HighPass=1 +Resonance=89 +FilterEnv=0,63 30140,35 106284,11 191153,0 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=9999 +F2=400 +Droop=100 +Envelope=0,0 9518,20 67419,37 151495,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 203050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=880 +Wave1=4 +Track1=1 +F2=48 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,0 22336,86 39722,67 191153,0 +Envelope2=0,1 4696,26 19544,76 27761,14 31092,79 52349,29 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=1 +Level=157 +F=56300 +dF=43 +Envelope=0,0 18243,26 134838,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Mist1.ds b/src/samples/drumsynth/magnetboy/Mist1.ds new file mode 100644 index 0000000..8f5aecf --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Mist1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=9 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=99999 +F2=240 +Droop=48 +Phase=32 +Envelope=0,0 26174,11 56315,66 122941,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 203050,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=880 +Wave1=4 +Track1=1 +F2=480 +Wave2=1 +Track2=1 +Method=2 +Param=88 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 88835,8 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=1 +Level=90 +F=5630 +dF=43 +Envelope=0,0 18243,26 134838,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Mist2.ds b/src/samples/drumsynth/magnetboy/Mist2.ds new file mode 100644 index 0000000..3139a6e --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Mist2.ds @@ -0,0 +1,59 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=1 +HighPass=1 +Resonance=89 +FilterEnv=0,63 30140,35 106284,11 191153,0 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=9999 +F2=400 +Droop=100 +Envelope=0,0 9518,20 67419,37 151495,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 203050,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=880 +Wave1=4 +Track1=1 +F2=480 +Wave2=1 +Track2=1 +Method=2 +Param=88 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 27761,14 31092,79 52349,29 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=56300 +dF=43 +Envelope=0,0 18243,26 134838,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/magnetboy/Randion1.ds b/src/samples/drumsynth/magnetboy/Randion1.ds new file mode 100644 index 0000000..e009503 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Randion1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=150 +Level=5 +Filter=1 +HighPass=0 +Resonance=33 +FilterEnv=0,63 49969,11 106284,91 191153,0 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=9999 +F2=80 +Droop=23 +Phase=90 +Envelope=0,0 9518,20 67419,37 151495,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 203050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=88 +Wave1=4 +Track1=1 +F2=4800 +Wave2=1 +Track2=1 +Method=3 +Param=28 +Envelope1=0,0 22336,86 39722,67 191153,0 +Envelope2=0,1 4696,26 19544,76 27761,14 31092,79 52349,29 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=1 +Level=157 +F=56300 +dF=16 +Envelope=0,0 18243,26 134838,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/magnetboy/Squelb.ds b/src/samples/drumsynth/magnetboy/Squelb.ds new file mode 100644 index 0000000..61b339a --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Squelb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=99999 +F2=240 +Droop=37 +Phase=32 +Envelope=0,0 31219,70 182428,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 58250,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=880 +Wave1=4 +Track1=1 +F2=480 +Wave2=1 +Track2=0 +Method=2 +Param=71 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 88835,8 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=100 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Throaties1.ds b/src/samples/drumsynth/magnetboy/Throaties1.ds new file mode 100644 index 0000000..5fc6cb9 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Throaties1.ds @@ -0,0 +1,59 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=1 +HighPass=1 +Resonance=89 +FilterEnv=0,63 30140,35 106284,11 191153,0 442000,100 442000,0 + +[Tone] +On=1 +Level=131 +F1=9999 +F2=80 +Droop=100 +Envelope=0,0 9518,20 67419,37 151495,0 + +[Noise] +On=0 +Level=62 +Slope=-85 +Envelope=0,0 40991,75 203050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=880 +Wave1=4 +Track1=1 +F2=48 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,0 22336,86 39722,67 191153,0 +Envelope2=0,1 4696,26 19544,76 27761,14 31092,79 52349,29 100732,74 193532,0 +Filter=0 + +[NoiseBand] +On=1 +Level=157 +F=56300 +dF=43 +Envelope=0,0 18243,26 134838,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=4 diff --git a/src/samples/drumsynth/magnetboy/Tone1.ds b/src/samples/drumsynth/magnetboy/Tone1.ds new file mode 100644 index 0000000..8cee9bb --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=109 +F1=4400 +F2=220 +Droop=44 +Phase=0 +Envelope=0,100 14400,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=220 +Wave1=4 +Track1=0 +F2=55 +Wave2=2 +Track2=0 +Method=3 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 29400,0 +Envelope2=0,0 0,100 8550,68 15000,93 30450,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone10.ds b/src/samples/drumsynth/magnetboy/Tone10.ds new file mode 100644 index 0000000..299d9ff --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone10.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=51 +F1=65 +F2=652 +Droop=100 +Phase=0 +Envelope=0,0 9000,59 17700,28 28500,5 40500,26 48900,3 57600,16 118261,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=652 +Wave1=0 +Track1=1 +F2=3520 +Wave2=1 +Track2=0 +Method=1 +Param=40 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 85900,0 +Envelope2=0,100 33000,72 62400,0 +Filter=0 + +[NoiseBand] +On=1 +Level=117 +F=8000 +dF=53 +Envelope=0,100 300,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone11.ds b/src/samples/drumsynth/magnetboy/Tone11.ds new file mode 100644 index 0000000..7180ce1 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone11.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=6500 +F2=1 +Droop=100 +Phase=0 +Envelope=0,0 9000,59 17700,28 28500,5 40500,26 48900,3 57600,16 118261,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=652 +Wave1=0 +Track1=0 +F2=3520 +Wave2=1 +Track2=1 +Method=2 +Param=82 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 85900,0 +Envelope2=0,100 33000,72 62400,0 +Filter=0 + +[NoiseBand] +On=1 +Level=117 +F=8000 +dF=53 +Envelope=0,100 300,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone12.ds b/src/samples/drumsynth/magnetboy/Tone12.ds new file mode 100644 index 0000000..5d8a929 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone12.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=6500 +F2=780 +Droop=80 +Phase=0 +Envelope=0,0 9000,59 17700,28 28500,5 40500,26 48900,3 57600,16 118261,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=652 +Wave1=2 +Track1=1 +F2=3520 +Wave2=1 +Track2=0 +Method=2 +Param=30 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 85900,0 +Envelope2=0,100 33000,72 62400,0 +Filter=1 + +[NoiseBand] +On=1 +Level=181 +F=800 +dF=98 +Envelope=0,100 300,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone14.ds b/src/samples/drumsynth/magnetboy/Tone14.ds new file mode 100644 index 0000000..3b06689 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone14.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=123 +F1=760 +F2=80 +Droop=100 +Phase=360 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=0 +Level=111 +Slope=69 +Envelope=0,100 3948,55 12440,4 18772,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=1000 +Wave1=0 +Track1=0 +F2=120 +Wave2=2 +Track2=1 +Method=1 +Param=0 +Envelope1=0,100 15943,44 78285,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=30 +F=12000 +dF=100 +Envelope=0,100 6000,50 64960,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=4 diff --git a/src/samples/drumsynth/magnetboy/Tone15.ds b/src/samples/drumsynth/magnetboy/Tone15.ds new file mode 100644 index 0000000..9d250da --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone15.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=17 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=108 +Slope=36 +Envelope=0,0 83,95 83,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=1 +Track2=0 +Method=1 +Param=68 +Envelope1=0,100 6450,24 18900,0 +Envelope2=0,100 7650,20 34050,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone16.ds b/src/samples/drumsynth/magnetboy/Tone16.ds new file mode 100644 index 0000000..4210616 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone16.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=1 +Resonance=77 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=106 +F1=50 +F2=220 +Droop=100 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=72 +Slope=-15 +Envelope=0,0 83,95 83,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=102 +F1=110 +Wave1=0 +Track1=0 +F2=55 +Wave2=1 +Track2=0 +Method=0 +Param=99 +Envelope1=0,100 6450,24 18900,0 +Envelope2=0,100 7650,20 34050,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=100 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone17.ds b/src/samples/drumsynth/magnetboy/Tone17.ds new file mode 100644 index 0000000..c09723d --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone17.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=81 +F1=200000 +F2=220 +Droop=100 +Phase=0 +Envelope=0,0 31219,70 67007,0 + +[Noise] +On=1 +Level=30 +Slope=-64 +Envelope=0,0 40991,75 58250,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=152 +F1=440 +Wave1=1 +Track1=0 +F2=440 +Wave2=2 +Track2=1 +Method=2 +Param=0 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 19544,76 19544,16 31092,79 57869,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone18.ds b/src/samples/drumsynth/magnetboy/Tone18.ds new file mode 100644 index 0000000..e97e944 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone18.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=159 +F1=999999 +F2=55 +Droop=71 +Phase=32 +Envelope=0,0 31219,70 67007,0 + +[Noise] +On=1 +Level=25 +Slope=100 +Envelope=0,0 40991,75 58250,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=145 +F1=880 +Wave1=3 +Track1=1 +F2=220 +Wave2=1 +Track2=0 +Method=2 +Param=83 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 57869,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/magnetboy/Tone19.ds b/src/samples/drumsynth/magnetboy/Tone19.ds new file mode 100644 index 0000000..cfb977e --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone19.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=12 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=88 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=159 +F1=99 +F2=55 +Droop=42 +Phase=-45 +Envelope=0,0 31219,70 67007,0 + +[Noise] +On=1 +Level=25 +Slope=100 +Envelope=0,0 40991,75 58250,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=104 +F1=880 +Wave1=1 +Track1=1 +F2=220 +Wave2=3 +Track2=0 +Method=2 +Param=39 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 57869,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/magnetboy/Tone2.ds b/src/samples/drumsynth/magnetboy/Tone2.ds new file mode 100644 index 0000000..75a97ac --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=109 +F1=5400 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 27483,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=106 +F1=220 +Wave1=1 +Track1=0 +F2=55 +Wave2=1 +Track2=0 +Method=3 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 14467,0 +Envelope2=0,0 0,100 8550,68 15000,93 30450,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone20.ds b/src/samples/drumsynth/magnetboy/Tone20.ds new file mode 100644 index 0000000..43c1495 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone20.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=17 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,78 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=143 +Slope=18 +Envelope=0,100 3000,35 10350,2 37050,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=783 +Wave1=1 +Track1=1 +F2=45 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,0 150,100 923,30 1399,8 2399,0 3498,0 +Envelope2=0,100 19443,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=9000 +dF=30 +Envelope=0,0 150,100 750,55 4050,29 12738,7 36300,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Tone3.ds b/src/samples/drumsynth/magnetboy/Tone3.ds new file mode 100644 index 0000000..e7c95e2 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=109 +F1=150 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 11041,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=106 +F1=22 +Wave1=1 +Track1=0 +F2=550 +Wave2=1 +Track2=0 +Method=3 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 70555,0 +Envelope2=0,0 0,100 11548,82 15483,34 37945,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone4.ds b/src/samples/drumsynth/magnetboy/Tone4.ds new file mode 100644 index 0000000..9522973 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone4.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=109 +F1=150 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 11041,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=106 +F1=22 +Wave1=1 +Track1=0 +F2=550 +Wave2=1 +Track2=1 +Method=0 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 70555,0 +Envelope2=0,0 0,100 11548,82 15483,34 37945,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone5.ds b/src/samples/drumsynth/magnetboy/Tone5.ds new file mode 100644 index 0000000..a6fa621 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone5.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=109 +F1=1500 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 11041,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=106 +F1=2200 +Wave1=3 +Track1=0 +F2=55 +Wave2=1 +Track2=0 +Method=0 +Param=100 +Envelope1=0,0 30,100 900,38 6375,16 70555,0 +Envelope2=0,0 0,100 11548,82 15483,34 37945,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone6.ds b/src/samples/drumsynth/magnetboy/Tone6.ds new file mode 100644 index 0000000..bcfeb61 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone6.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=69 +F1=1500 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 10787,0 + +[Noise] +On=1 +Level=62 +Slope=-28 +Envelope=0,0 248,98 60027,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=106 +F1=22 +Wave1=3 +Track1=0 +F2=5500 +Wave2=3 +Track2=1 +Method=0 +Param=100 +Envelope1=0,0 30,100 900,38 12944,50 70555,0 +Envelope2=0,0 0,100 11548,82 19036,26 69925,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Tone7.ds b/src/samples/drumsynth/magnetboy/Tone7.ds new file mode 100644 index 0000000..d31d881 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone7.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=69 +F1=150 +F2=40 +Droop=44 +Phase=0 +Envelope=0,100 10787,0 + +[Noise] +On=1 +Level=62 +Slope=100 +Envelope=0,0 248,98 60027,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=106 +F1=2 +Wave1=3 +Track1=0 +F2=55000 +Wave2=3 +Track2=1 +Method=0 +Param=100 +Envelope1=0,0 30,100 900,38 12944,50 70555,0 +Envelope2=0,0 0,100 11548,82 19036,26 69925,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/magnetboy/Tone8.ds b/src/samples/drumsynth/magnetboy/Tone8.ds new file mode 100644 index 0000000..80841b5 --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone8.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=74 +F1=1950 +F2=60 +Droop=82 +Phase=180 +Envelope=0,93 11400,17 33300,0 + +[Noise] +On=0 +Level=57 +Slope=100 +Envelope=0,0 248,98 248,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=220 +Wave1=2 +Track1=1 +F2=542.7 +Wave2=0 +Track2=1 +Method=3 +Param=0 +Envelope1=0,0 30,100 900,38 8025,22 25800,8 58800,0 +Envelope2=0,100 26550,83 62400,0 +Filter=0 + +[NoiseBand] +On=0 +Level=127 +F=1630 +dF=15 +Envelope=0,100 2100,10 9750,0 + +[NoiseBand2] +On=0 +Level=59 +F=220 +dF=6 +Envelope=0,0 225,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone9.ds b/src/samples/drumsynth/magnetboy/Tone9.ds new file mode 100644 index 0000000..0ba8b9f --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone9.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=53 +F1=442 +F2=442 +Droop=0 +Phase=0 +Envelope=0,0 9900,82 56870,41 111360,0 + +[Noise] +On=0 +Level=18 +Slope=-57 +Envelope=0,0 600,100 4200,45 29400,21 36600,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=1760 +Wave1=1 +Track1=0 +F2=6 +Wave2=1 +Track2=0 +Method=1 +Param=33 +Envelope1=0,0 16894,75 44735,50 104698,0 +Envelope2=0,0 14550,51 27000,86 36000,83 36600,0 +Filter=0 + +[NoiseBand] +On=0 +Level=26 +F=1760 +dF=75 +Envelope=0,0 600,100 2250,20 33450,17 36000,83 36600,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/magnetboy/Tone_float1.ds b/src/samples/drumsynth/magnetboy/Tone_float1.ds new file mode 100644 index 0000000..84e496f --- /dev/null +++ b/src/samples/drumsynth/magnetboy/Tone_float1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=159 +F1=999999 +F2=60 +Droop=62 +Phase=32 +Envelope=0,0 31219,70 92087,0 + +[Noise] +On=0 +Level=143 +Slope=100 +Envelope=0,0 40991,75 58250,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=145 +F1=880 +Wave1=3 +Track1=1 +F2=220 +Wave2=1 +Track2=0 +Method=2 +Param=100 +Envelope1=0,0 22336,86 39722,67 65357,0 +Envelope2=0,1 4696,26 19544,76 19544,16 31092,79 57869,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=5630 +dF=50 +Envelope=0,100 819,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 3198,53 24435,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=5 diff --git a/src/samples/drumsynth/misc/'lectro_hammer.ds b/src/samples/drumsynth/misc/'lectro_hammer.ds new file mode 100644 index 0000000..a95b553 --- /dev/null +++ b/src/samples/drumsynth/misc/'lectro_hammer.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=4 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,96 1299,30 1999,14 3198,8 23785,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=500 +F2=50 +Droop=50 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=65 +F1=25 +Wave1=2 +Track1=1 +F2=50 +Wave2=3 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 17489,89 19888,0 +Filter=0 + +[NoiseBand] +On=1 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=3 diff --git a/src/samples/drumsynth/misc/'lectro_square_hammer.ds b/src/samples/drumsynth/misc/'lectro_square_hammer.ds new file mode 100644 index 0000000..73905a9 --- /dev/null +++ b/src/samples/drumsynth/misc/'lectro_square_hammer.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=4 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,96 1299,30 1999,14 3198,8 23785,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=500 +F2=50 +Droop=50 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=25 +Wave1=0 +Track1=1 +F2=50 +Wave2=4 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 17489,89 19888,0 +Filter=0 + +[NoiseBand] +On=1 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=3 diff --git a/src/samples/drumsynth/misc/12-bit_heavy_hitter.ds b/src/samples/drumsynth/misc/12-bit_heavy_hitter.ds new file mode 100644 index 0000000..b2a007e --- /dev/null +++ b/src/samples/drumsynth/misc/12-bit_heavy_hitter.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=150 +Level=0 +Filter=1 +HighPass=1 +Resonance=38 +FilterEnv=0,0 350,11 442000,100 442000,0 + +[Tone] +On=1 +Level=34 +F1=500 +F2=200 +Droop=13 +Phase=0 +Envelope=0,100 400,74 1049,54 1899,39 5247,11 9144,0 + +[Noise] +On=1 +Level=74 +Slope=-82 +Envelope=0,100 1099,55 2498,29 4147,10 7096,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=800 +Wave1=0 +Track1=0 +F2=500 +Wave2=0 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=162 +F=630 +dF=50 +Envelope=0,76 1049,41 2748,14 4897,7 8945,0 + +[NoiseBand2] +On=1 +Level=135 +F=1500 +dF=74 +Envelope=0,100 1346,34 3895,0 + +[Distortion] +On=1 +Clipping=6 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/909_hard_snare.ds b/src/samples/drumsynth/misc/909_hard_snare.ds new file mode 100644 index 0000000..3dc8a32 --- /dev/null +++ b/src/samples/drumsynth/misc/909_hard_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=130 +Level=6 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,11 750,11 442000,100 443000,0 + +[Tone] +On=1 +Level=164 +F1=280 +F2=130 +Droop=23 +Phase=20 +Envelope=0,100 278,50 1071,17 2578,3 5347,0 + +[Noise] +On=1 +Level=104 +Slope=55 +Envelope=0,100 819,39 1666,15 5097,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=280 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 297,39 535,17 972,3 1699,0 +Envelope2=0,100 745,11 2235,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=4000 +dF=93 +Envelope=0,100 1210,41 2479,16 4164,0 + +[NoiseBand2] +On=1 +Level=102 +F=7356 +dF=83 +Envelope=0,100 1210,41 2479,16 4164,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/AAH.ds b/src/samples/drumsynth/misc/AAH.ds new file mode 100644 index 0000000..56ea4fa --- /dev/null +++ b/src/samples/drumsynth/misc/AAH.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=128 +F1=240 +F2=200 +Droop=9 +Phase=0 +Envelope=0,0 14005,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=1 +Track1=1 +F2=1200 +Wave2=0 +Track2=1 +Filter=0 +Method=0 +Param=6 +Envelope1=0,0 1564,74 12142,74 13558,0 +Envelope2=0,0 1937,54 12120,56 13558,0 + +[NoiseBand] +On=1 +Level=39 +F=1200 +dF=39 +Envelope=0,0 1937,54 11397,54 13558,0 + +[NoiseBand2] +On=1 +Level=16 +F=3150 +dF=43 +Envelope=0,0 1937,54 11397,54 13558,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/B1_B2.ds b/src/samples/drumsynth/misc/B1_B2.ds new file mode 100644 index 0000000..c8ddc9c --- /dev/null +++ b/src/samples/drumsynth/misc/B1_B2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=81 +F=10000 +dF=49 +Envelope=0,0 3501,0 7524,20 10876,91 10876,0 + +[NoiseBand2] +On=1 +Level=128 +F=100 +dF=21 +Envelope=0,100 2533,23 11621,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/Clap.ds b/src/samples/drumsynth/misc/Clap.ds new file mode 100644 index 0000000..010fb50 --- /dev/null +++ b/src/samples/drumsynth/misc/Clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=-2 +Filter=1 +HighPass=1 +Resonance=2 +FilterEnv=0,44 442000,100 443000,0 + +[Tone] +On=0 +Level=138 +F1=67 +F2=60 +Droop=0 +Phase=30 +Envelope=0,100 2309,25 12515,0 + +[Noise] +On=0 +Level=181 +Slope=1 +Envelope=0,0 48,47 63,100 920,70 2284,34 4093,14 6789,5 17635,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=175 +F=1000 +dF=100 +Envelope=0,0 32,44 45,100 131,66 228,40 363,21 508,5 543,51 560,100 652,62 767,39 898,19 1047,5 1076,51 1084,89 1161,53 1225,33 1301,18 1396,5 1434,56 1434,95 2387,40 3585,3 6187,0 17635,0 + +[NoiseBand2] +On=1 +Level=85 +F=825 +dF=43 +Envelope=0,0 48,47 59,100 952,73 2261,49 3775,31 7995,14 19829,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Distant_Thunder.ds b/src/samples/drumsynth/misc/Distant_Thunder.ds new file mode 100644 index 0000000..7d197ed --- /dev/null +++ b/src/samples/drumsynth/misc/Distant_Thunder.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,2 14991,68 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=100 +dF=22 +Envelope=0,0 5513,79 10429,32 15197,74 19750,63 24136,70 41120,46 46400,32 71861,43 83282,11 92800,28 130079,11 207016,0 + +[NoiseBand2] +On=1 +Level=128 +F=50 +dF=16 +Envelope=0,0 11025,64 28903,19 87008,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/N_low.ds b/src/samples/drumsynth/misc/N_low.ds new file mode 100644 index 0000000..a958257 --- /dev/null +++ b/src/samples/drumsynth/misc/N_low.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=-100 +Envelope=0,100 4768,41 9982,0 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=3 +Track1=0 +F2=440 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/N_vlow.ds b/src/samples/drumsynth/misc/N_vlow.ds new file mode 100644 index 0000000..190d5af --- /dev/null +++ b/src/samples/drumsynth/misc/N_vlow.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,0 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=-100 +Envelope=0,100 4768,41 9982,0 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=3 +Track1=0 +F2=440 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/RimShot.ds b/src/samples/drumsynth/misc/RimShot.ds new file mode 100644 index 0000000..ffb8169 --- /dev/null +++ b/src/samples/drumsynth/misc/RimShot.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,5 442000,100 442000,0 + +[Tone] +On=1 +Level=144 +F1=500 +F2=500 +Droop=0 +Phase=15 +Envelope=0,0 6,100 444,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=220 +Wave1=1 +Track1=0 +F2=1000 +Wave2=1 +Track2=0 +Method=0 +Param=38 +Envelope1=0,0 0,100 882,0 +Envelope2=0,0 0,100 447,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 2500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Saber_fight.ds b/src/samples/drumsynth/misc/Saber_fight.ds new file mode 100644 index 0000000..a7bed94 --- /dev/null +++ b/src/samples/drumsynth/misc/Saber_fight.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Comment=By Steve W +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=164 +F1=100 +F2=90 +Droop=50 +Envelope=0,0 5838,35 13706,46 23985,14 26270,14 50683,0 54490,10 69481,93 81617,47 90897,11 111043,46 133252,14 143563,89 187187,14 208603,9 245881,37 260158,5 277608,0 + +[Noise] +On=1 +Level=139 +Slope=29 +Envelope=0,0 48542,0 48542,51 54966,8 60677,0 134838,0 134838,31 143563,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=170 +F1=200 +Wave1=4 +Track1=0 +F2=55 +Wave2=4 +Track2=0 +Method=0 +Param=85 +Envelope1=0,0 47971,0 47971,26 52111,8 61867,0 134838,0 134838,17 141183,4 155460,0 +Envelope2=0,0 48098,0 48098,61 51635,7 53063,20 54966,10 65040,0 131665,0 131665,38 134838,5 138011,11 142770,3 151495,1 172910,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=1500 +dF=66 +Envelope=0,0 48066,0 48066,55 50921,5 51873,17 59487,0 131665,0 131665,28 134838,5 158633,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc/Simple-c.ds b/src/samples/drumsynth/misc/Simple-c.ds new file mode 100644 index 0000000..8c6e863 --- /dev/null +++ b/src/samples/drumsynth/misc/Simple-c.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=5 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,75 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=150 +Slope=-49 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 4529,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=1300 +dF=49 +Envelope=0,99 104,38 432,18 440,100 570,29 879,14 894,100 1028,26 1333,9 1333,98 2309,27 5661,7 11837,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Simple-r.ds b/src/samples/drumsynth/misc/Simple-r.ds new file mode 100644 index 0000000..d85a3ee --- /dev/null +++ b/src/samples/drumsynth/misc/Simple-r.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1800 +F2=1800 +Droop=0 +Phase=0 +Envelope=0,100 186,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=480 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 0,0 105,44 387,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=13 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Simple-s.ds b/src/samples/drumsynth/misc/Simple-s.ds new file mode 100644 index 0000000..f590115 --- /dev/null +++ b/src/samples/drumsynth/misc/Simple-s.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=153 +F1=170 +F2=170 +Droop=0 +Phase=0 +Envelope=0,100 1200,16 3375,0 + +[Noise] +On=1 +Level=90 +Slope=1 +Envelope=0,100 1950,20 5325,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 525,12 2025,0 +Envelope2=0,100 450,11 1650,0 + +[NoiseBand] +On=1 +Level=88 +F=2000 +dF=92 +Envelope=0,100 1275,16 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=16 +Envelope=0,0 20550,0 20700,100 43200,100 43350,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Tone_dis.ds b/src/samples/drumsynth/misc/Tone_dis.ds new file mode 100644 index 0000000..f392320 --- /dev/null +++ b/src/samples/drumsynth/misc/Tone_dis.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=17 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Tone_sw2.ds b/src/samples/drumsynth/misc/Tone_sw2.ds new file mode 100644 index 0000000..ac329b8 --- /dev/null +++ b/src/samples/drumsynth/misc/Tone_sw2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=200 +Droop=37 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/Tone_swp.ds b/src/samples/drumsynth/misc/Tone_swp.ds new file mode 100644 index 0000000..a54b81f --- /dev/null +++ b/src/samples/drumsynth/misc/Tone_swp.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/airbrush_bd.ds b/src/samples/drumsynth/misc/airbrush_bd.ds new file mode 100644 index 0000000..2eadbc7 --- /dev/null +++ b/src/samples/drumsynth/misc/airbrush_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,100 16498,59 442000,100 442000,0 + +[Tone] +On=1 +Level=180 +F1=900 +F2=50 +Droop=64 +Phase=0 +Envelope=0,100 1750,20 6266,3 14753,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=24 +F=10 +dF=92 +Envelope=0,100 793,34 3014,10 6266,2 15229,0 + +[NoiseBand2] +On=1 +Level=34 +F=300 +dF=40 +Envelope=0,100 397,43 2697,14 7138,3 14356,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/ambient_noise_snare.ds b/src/samples/drumsynth/misc/ambient_noise_snare.ds new file mode 100644 index 0000000..750e0f3 --- /dev/null +++ b/src/samples/drumsynth/misc/ambient_noise_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=7 +Filter=0 +HighPass=0 +Resonance=6 +FilterEnv=0,23 442000,100 443000,0 + +[Tone] +On=1 +Level=22 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 635,26 2221,8 6481,0 + +[Noise] +On=1 +Level=32 +Slope=-25 +Envelope=0,32 1190,17 2776,5 5810,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=400 +dF=34 +Envelope=0,32 1190,17 2776,5 5810,0 + +[NoiseBand2] +On=1 +Level=63 +F=3000 +dF=89 +Envelope=0,64 793,52 1348,27 3547,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc/amen_bd.ds b/src/samples/drumsynth/misc/amen_bd.ds new file mode 100644 index 0000000..a53cf2a --- /dev/null +++ b/src/samples/drumsynth/misc/amen_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=1 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,89 7297,78 13769,50 444000,100 444000,0 + +[Tone] +On=1 +Level=78 +F1=110 +F2=80 +Droop=54 +Phase=70 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=74 +Slope=-38 +Envelope=0,41 2189,38 4315,17 6948,7 10724,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=139 +F1=1020 +Wave1=0 +Track1=0 +F2=150 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,91 1110,62 2919,37 5647,20 8376,14 14436,0 +Envelope2=0,100 4025,50 10232,0 +Filter=0 + +[NoiseBand] +On=1 +Level=133 +F=120 +dF=31 +Envelope=0,100 1808,34 4442,11 10279,0 + +[NoiseBand2] +On=1 +Level=47 +F=5000 +dF=78 +Envelope=0,100 1618,46 3141,33 4473,17 6789,8 15419,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/amen_sn_1.ds b/src/samples/drumsynth/misc/amen_sn_1.ds new file mode 100644 index 0000000..54bbaf8 --- /dev/null +++ b/src/samples/drumsynth/misc/amen_sn_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=2 +FilterEnv=0,0 1685,8 10985,7 444000,100 444000,0 + +[Tone] +On=1 +Level=32 +F1=300 +F2=300 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=64 +Envelope=0,100 972,86 2300,47 3649,21 10628,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=78 +F1=400 +Wave1=0 +Track1=0 +F2=340 +Wave2=0 +Track2=0 +Method=1 +Param=48 +Envelope1=0,8 1250,20 6856,0 +Envelope2=0,100 1758,38 5796,0 +Filter=0 + +[NoiseBand] +On=1 +Level=32 +F=305 +dF=12 +Envelope=0,100 1473,58 4164,29 7456,14 10490,0 + +[NoiseBand2] +On=1 +Level=172 +F=650 +dF=78 +Envelope=0,50 793,58 1487,35 2816,14 4442,6 6643,2 9121,0 + +[Distortion] +On=1 +Clipping=7 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/and_loud_sn.ds b/src/samples/drumsynth/misc/and_loud_sn.ds new file mode 100644 index 0000000..6582a6a --- /dev/null +++ b/src/samples/drumsynth/misc/and_loud_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=11 +Filter=1 +HighPass=0 +Resonance=31 +FilterEnv=0,8 0,95 8695,79 11961,8 444000,100 444000,0 + +[Tone] +On=1 +Level=65 +F1=500 +F2=160 +Droop=60 +Phase=180 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 8045,0 + +[Noise] +On=1 +Level=70 +Slope=-64 +Envelope=0,100 1682,74 4500,17 6694,11 8445,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=160 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=41 +F=964 +dF=100 +Envelope=0,100 2250,30 3998,3 8795,0 + +[NoiseBand2] +On=1 +Level=42 +F=9000 +dF=58 +Envelope=0,100 1015,60 2475,34 4949,14 6896,5 9794,0 + +[Distortion] +On=0 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/another_909_moment.ds b/src/samples/drumsynth/misc/another_909_moment.ds new file mode 100644 index 0000000..db0082c --- /dev/null +++ b/src/samples/drumsynth/misc/another_909_moment.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=300 +F2=62 +Droop=39 +Phase=08 +Envelope=0,100 317,100 857,53 1396,31 3173,14 6218,5 10375,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 508,50 1500,20 4315,13 12056,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/another_example_snare.ds b/src/samples/drumsynth/misc/another_example_snare.ds new file mode 100644 index 0000000..e9acf6f --- /dev/null +++ b/src/samples/drumsynth/misc/another_example_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=-7 +Stretch=100 +Level=8 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,3 1618,10 444000,100 444000,0 + +[Tone] +On=1 +Level=73 +F1=600 +F2=378 +Droop=28 +Phase=0 +Envelope=0,100 1199,46 3798,0 + +[Noise] +On=1 +Level=119 +Slope=-29 +Envelope=0,100 500,20 5996,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=74 +F1=357 +Wave1=0 +Track1=0 +F2=630 +Wave2=1 +Track2=0 +Method=2 +Param=81 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 9613,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=7402 +dF=100 +Envelope=0,100 750,20 6916,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/application_bass_drum.ds b/src/samples/drumsynth/misc/application_bass_drum.ds new file mode 100644 index 0000000..94cac56 --- /dev/null +++ b/src/samples/drumsynth/misc/application_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-12 +Stretch=100 +Level=-2 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,3 6092,5 12310,7 442000,100 442000,0 + +[Tone] +On=1 +Level=160 +F1=600 +F2=72 +Droop=34 +Phase=12 +Envelope=0,91 3046,92 3934,48 10279,8 17132,0 + +[Noise] +On=1 +Level=109 +Slope=-16 +Envelope=0,39 400,17 1249,5 3426,1 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,54 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=72 +dF=5 +Envelope=0,53 4569,26 11422,16 21066,5 31854,0 + +[NoiseBand2] +On=1 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 25001,0 + +[Distortion] +On=1 +Clipping=0 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/b1_0.ds b/src/samples/drumsynth/misc/b1_0.ds new file mode 100644 index 0000000..0901380 --- /dev/null +++ b/src/samples/drumsynth/misc/b1_0.ds @@ -0,0 +1,59 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0 +Stretch=100 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=1 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=0 +Envelope=0,100 1713,42 3501,14 10876,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/b1_2.ds b/src/samples/drumsynth/misc/b1_2.ds new file mode 100644 index 0000000..6c52494 --- /dev/null +++ b/src/samples/drumsynth/misc/b1_2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=17 +Envelope=0,100 1713,42 3501,14 10876,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/b1_5.ds b/src/samples/drumsynth/misc/b1_5.ds new file mode 100644 index 0000000..3167441 --- /dev/null +++ b/src/samples/drumsynth/misc/b1_5.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=40 +Envelope=0,100 1713,42 3501,14 10876,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/b1_9.ds b/src/samples/drumsynth/misc/b1_9.ds new file mode 100644 index 0000000..dbc6da8 --- /dev/null +++ b/src/samples/drumsynth/misc/b1_9.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=90 +Envelope=0,100 1713,42 3501,14 10876,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/basic_808_click_hum.ds b/src/samples/drumsynth/misc/basic_808_click_hum.ds new file mode 100644 index 0000000..1c53120 --- /dev/null +++ b/src/samples/drumsynth/misc/basic_808_click_hum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=50 +Droop=58 +Phase=60 +Envelope=0,100 397,52 1428,29 3490,15 6980,10 16339,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/battle_hook_sn.ds b/src/samples/drumsynth/misc/battle_hook_sn.ds new file mode 100644 index 0000000..3a01989 --- /dev/null +++ b/src/samples/drumsynth/misc/battle_hook_sn.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=2 +Filter=1 +HighPass=1 +Resonance=1 +FilterEnv=0,0 1650,39 4949,38 8249,35 442000,100 443000,0 + +[Tone] +On=1 +Level=131 +F1=200 +F2=110 +Droop=18 +Phase=10 +Envelope=0,100 1150,13 1923,0 + +[Noise] +On=1 +Level=119 +Slope=21 +Envelope=0,97 0,0 615,36 1487,25 2284,14 2919,6 4315,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=163 +F1=210 +Wave1=0 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Method=0 +Param=60 +Envelope1=0,100 615,18 1785,0 +Envelope2=0,100 674,21 1745,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=5000 +dF=64 +Envelope=0,63 888,36 1650,16 3300,4 6092,1 7741,0 + +[NoiseBand2] +On=1 +Level=119 +F=10000 +dF=90 +Envelope=0,97 888,7 2284,19 3827,6 5750,0 + +[Distortion] +On=1 +Clipping=19 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/bauble_bd.ds b/src/samples/drumsynth/misc/bauble_bd.ds new file mode 100644 index 0000000..4321255 --- /dev/null +++ b/src/samples/drumsynth/misc/bauble_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=120 +F2=50 +Droop=82 +Phase=10 +Envelope=0,100 1049,71 2299,47 3998,29 5647,17 8595,7 22636,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/beat_box_bd.ds b/src/samples/drumsynth/misc/beat_box_bd.ds new file mode 100644 index 0000000..fc5ece0 --- /dev/null +++ b/src/samples/drumsynth/misc/beat_box_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=18 +Filter=0 +HighPass=0 +Resonance=11 +FilterEnv=0,85 14691,50 442000,100 443000,0 + +[Tone] +On=1 +Level=37 +F1=500 +F2=75 +Droop=30 +Phase=110 +Envelope=0,0 0,100 1904,100 2617,21 3649,0 + +[Noise] +On=0 +Level=82 +Slope=94 +Envelope=0,0 0,75 1409,64 1409,0 2169,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=115 +F1=437 +Wave1=0 +Track1=0 +F2=800 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=37 +F=5000 +dF=84 +Envelope=0,99 555,35 1190,14 2459,3 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/beefy_wack.ds b/src/samples/drumsynth/misc/beefy_wack.ds new file mode 100644 index 0000000..8978af8 --- /dev/null +++ b/src/samples/drumsynth/misc/beefy_wack.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=1 +Level=128 +Slope=-18 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=160 +F=200 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc/big_80's.ds b/src/samples/drumsynth/misc/big_80's.ds new file mode 100644 index 0000000..53ec10e --- /dev/null +++ b/src/samples/drumsynth/misc/big_80's.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=3 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6223,17 444000,100 444000,0 + +[Tone] +On=1 +Level=145 +F1=1500 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=1 +Level=101 +Slope=-10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=3 +Track1=1 +F2=1720 +Wave2=0 +Track2=1 +Method=1 +Param=80 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/big_80's_2.ds b/src/samples/drumsynth/misc/big_80's_2.ds new file mode 100644 index 0000000..afcf7f5 --- /dev/null +++ b/src/samples/drumsynth/misc/big_80's_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=400 +Level=4 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,0 250,17 6946,25 444000,100 444000,0 + +[Tone] +On=1 +Level=145 +F1=1500 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=1 +Level=101 +Slope=10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=101 +F1=220 +Wave1=3 +Track1=1 +F2=1720 +Wave2=0 +Track2=1 +Method=1 +Param=80 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/big_sleeper_snare.ds b/src/samples/drumsynth/misc/big_sleeper_snare.ds new file mode 100644 index 0000000..39d7f4c --- /dev/null +++ b/src/samples/drumsynth/misc/big_sleeper_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=15 +Filter=1 +HighPass=1 +Resonance=31 +FilterEnv=0,8 11961,8 444000,100 444000,0 + +[Tone] +On=1 +Level=65 +F1=162 +F2=130 +Droop=0 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=61 +Slope=-64 +Envelope=0,100 1682,74 4500,17 6694,11 13071,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=160 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=41 +F=964 +dF=100 +Envelope=0,100 2250,30 6948,23 13071,0 + +[NoiseBand2] +On=1 +Level=78 +F=9000 +dF=58 +Envelope=0,100 1015,60 2475,34 4949,14 7487,7 12849,0 + +[Distortion] +On=0 +Clipping=13 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc/blended_snare.ds b/src/samples/drumsynth/misc/blended_snare.ds new file mode 100644 index 0000000..edfd191 --- /dev/null +++ b/src/samples/drumsynth/misc/blended_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,29 3649,44 442000,100 443000,0 + +[Tone] +On=1 +Level=82 +F1=200 +F2=155 +Droop=42 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=149 +Slope=64 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=5000 +dF=100 +Envelope=0,0 0,98 507,43 1788,19 3486,0 + +[NoiseBand2] +On=1 +Level=135 +F=4000 +dF=70 +Envelope=0,100 839,35 1900,8 4402,0 + +[Distortion] +On=1 +Clipping=1 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/bouncy809bd.ds b/src/samples/drumsynth/misc/bouncy809bd.ds new file mode 100644 index 0000000..18c0681 --- /dev/null +++ b/src/samples/drumsynth/misc/bouncy809bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=55 +Phase=30 +Envelope=0,100 1750,20 19338,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/break_kick.ds b/src/samples/drumsynth/misc/break_kick.ds new file mode 100644 index 0000000..e07b1e6 --- /dev/null +++ b/src/samples/drumsynth/misc/break_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,51 1428,27 3807,9 6663,0 17132,0 442000,100 442000,0 + +[Tone] +On=1 +Level=108 +F1=300 +F2=120 +Droop=35 +Phase=45 +Envelope=0,0 2607,88 3500,20 6901,6 23081,0 + +[Noise] +On=0 +Level=81 +Slope=57 +Envelope=0,0 670,83 1341,95 2011,42 2682,13 3799,5 5810,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=3 +Track1=0 +F2=125 +Wave2=0 +Track2=1 +Method=2 +Param=89 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=61 +F=4000 +dF=35 +Envelope=0,100 476,11 1904,2 3750,0 + +[NoiseBand2] +On=1 +Level=128 +F=350 +dF=14 +Envelope=0,100 834,15 2548,0 + +[Distortion] +On=1 +Clipping=10 +Bits=4 +Rate=3 diff --git a/src/samples/drumsynth/misc/breathing_snare.ds b/src/samples/drumsynth/misc/breathing_snare.ds new file mode 100644 index 0000000..26c7db8 --- /dev/null +++ b/src/samples/drumsynth/misc/breathing_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=1 +Resonance=46 +FilterEnv=0,0 95,16 3642,15 442000,100 443000,0 + +[Tone] +On=0 +Level=88 +F1=300 +F2=110 +Droop=42 +Phase=45 +Envelope=0,0 0,98 665,79 1788,19 3486,0 + +[Noise] +On=1 +Level=113 +Slope=25 +Envelope=0,0 48,38 554,47 1663,20 3452,5 6081,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=90 +F1=110 +Wave1=0 +Track1=0 +F2=100 +Wave2=1 +Track2=0 +Method=0 +Param=50 +Envelope1=0,43 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=2000 +dF=70 +Envelope=0,0 0,98 982,89 2312,23 3452,5 6081,0 + +[NoiseBand2] +On=1 +Level=128 +F=1600 +dF=98 +Envelope=0,0 0,98 2106,87 3230,18 6081,0 + +[Distortion] +On=1 +Clipping=1 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/bright_house_sn.ds b/src/samples/drumsynth/misc/bright_house_sn.ds new file mode 100644 index 0000000..ce9577f --- /dev/null +++ b/src/samples/drumsynth/misc/bright_house_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,100 1599,77 7695,85 442000,100 442000,0 + +[Tone] +On=1 +Level=123 +F1=880 +F2=112 +Droop=50 +Phase=15 +Envelope=0,100 1799,51 2998,27 5347,1 8095,0 + +[Noise] +On=1 +Level=132 +Slope=74 +Envelope=0,100 1849,57 4500,30 6496,11 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=45 +F1=112 +Wave1=0 +Track1=0 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 2439,95 7895,0 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=6000 +dF=65 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/buff_hit.ds b/src/samples/drumsynth/misc/buff_hit.ds new file mode 100644 index 0000000..de4f917 --- /dev/null +++ b/src/samples/drumsynth/misc/buff_hit.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,100 633,14 3658,47 444000,100 444000,0 + +[Tone] +On=1 +Level=136 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=0 +Level=129 +Slope=83 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=3 +Param=2 +Envelope1=0,100 1156,57 3816,29 6698,0 +Envelope2=0,100 3009,48 6191,0 +Filter=0 + +[NoiseBand] +On=1 +Level=84 +F=6000 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=89 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=31 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc/buff_sound.ds b/src/samples/drumsynth/misc/buff_sound.ds new file mode 100644 index 0000000..3871115 --- /dev/null +++ b/src/samples/drumsynth/misc/buff_sound.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=10 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,50 792,38 3658,47 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1393,54 3436,0 + +[Noise] +On=0 +Level=129 +Slope=83 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=3 +Param=2 +Envelope1=0,100 1156,57 3816,29 6698,0 +Envelope2=0,100 3009,48 6191,0 +Filter=0 + +[NoiseBand] +On=1 +Level=66 +F=6000 +dF=82 +Envelope=0,100 1156,29 2914,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=89 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc/bug_into_water.ds b/src/samples/drumsynth/misc/bug_into_water.ds new file mode 100644 index 0000000..e4b2470 --- /dev/null +++ b/src/samples/drumsynth/misc/bug_into_water.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! << http://www.fruityloops.com >> +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=96 +FilterEnv=0,56 8804,72 8804,15 11660,0 34027,49 35217,12 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=600 +F2=120 +Droop=0 +Phase=0 +Envelope=0,54 3649,38 14594,0 + +[Noise] +On=1 +Level=128 +Slope=100 +Envelope=0,100 1428,14 5473,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=129 +F1=31 +Wave1=0 +Track1=0 +F2=31.01 +Wave2=0 +Track2=0 +Method=3 +Param=68 +Envelope1=0,100 14594,0 +Envelope2=0,20 7075,20 10724,25 16117,64 16117,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=20 +Bits=1 +Rate=7 diff --git a/src/samples/drumsynth/misc/bulge_n_yr_woofer.ds b/src/samples/drumsynth/misc/bulge_n_yr_woofer.ds new file mode 100644 index 0000000..8d63b56 --- /dev/null +++ b/src/samples/drumsynth/misc/bulge_n_yr_woofer.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=1 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,25 855,88 14691,50 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=45 +Droop=50 +Phase=110 +Envelope=0,0 0,100 899,38 4247,15 21737,0 + +[Noise] +On=0 +Level=146 +Slope=-75 +Envelope=0,0 0,100 4797,3 6296,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=115 +F1=437 +Wave1=0 +Track1=0 +F2=611 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=5 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/bumpin_quickie.ds b/src/samples/drumsynth/misc/bumpin_quickie.ds new file mode 100644 index 0000000..b8e0177 --- /dev/null +++ b/src/samples/drumsynth/misc/bumpin_quickie.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=40 +Droop=60 +Phase=12 +Envelope=0,100 1699,46 5697,13 8445,5 11693,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/calamity_snare.ds b/src/samples/drumsynth/misc/calamity_snare.ds new file mode 100644 index 0000000..1c666b3 --- /dev/null +++ b/src/samples/drumsynth/misc/calamity_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=150 +Level=-1 +Filter=1 +HighPass=1 +Resonance=3 +FilterEnv=0,0 174,17 5394,6 7971,10 442000,100 443000,0 + +[Tone] +On=0 +Level=10 +F1=120 +F2=150 +Droop=83 +Phase=60 +Envelope=0,100 714,24 1150,13 2459,6 4442,2 8883,0 + +[Noise] +On=1 +Level=181 +Slope=-23 +Envelope=0,63 654,38 2538,17 5394,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=47 +F1=300 +Wave1=1 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Method=3 +Param=35 +Envelope1=0,39 615,18 2776,0 +Envelope2=0,32 952,15 1824,8 3966,2 6861,0 +Filter=0 + +[NoiseBand] +On=1 +Level=51 +F=800 +dF=73 +Envelope=0,63 888,36 1650,16 3300,4 4521,1 5790,0 + +[NoiseBand2] +On=1 +Level=108 +F=900 +dF=27 +Envelope=0,63 888,36 1650,16 3173,7 4620,2 6980,0 + +[Distortion] +On=1 +Clipping=6 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc/change_the_channel_snare.ds b/src/samples/drumsynth/misc/change_the_channel_snare.ds new file mode 100644 index 0000000..a3b595c --- /dev/null +++ b/src/samples/drumsynth/misc/change_the_channel_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,6 238,39 3642,15 442000,100 443000,0 + +[Tone] +On=1 +Level=88 +F1=300 +F2=110 +Droop=42 +Phase=45 +Envelope=0,0 0,98 665,79 1788,19 3486,0 + +[Noise] +On=1 +Level=149 +Slope=-34 +Envelope=0,0 0,98 665,79 1520,5 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=158 +F=5000 +dF=100 +Envelope=0,0 0,98 507,43 1788,19 3486,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 839,35 2502,0 + +[Distortion] +On=1 +Clipping=44 +Bits=4 +Rate=3 diff --git a/src/samples/drumsynth/misc/chow_bd.ds b/src/samples/drumsynth/misc/chow_bd.ds new file mode 100644 index 0000000..e9903fd --- /dev/null +++ b/src/samples/drumsynth/misc/chow_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=50 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=600 +F2=34 +Droop=60 +Phase=0 +Envelope=0,100 5250,30 13325,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=3 +Track1=1 +F2=50 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 3750,30 12151,0 +Envelope2=0,100 3522,32 19274,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=20 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/clappy_snare.ds b/src/samples/drumsynth/misc/clappy_snare.ds new file mode 100644 index 0000000..c5a7971 --- /dev/null +++ b/src/samples/drumsynth/misc/clappy_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Level=12 +Filter=0 +HighPass=0 +Resonance=13 +FilterEnv=0,36 3048,31 442000,100 442000,0 + +[Tone] +On=1 +Level=71 +F1=300 +F2=150 +Droop=41 +Phase=40 +Envelope=0,100 1749,22 4997,0 + +[Noise] +On=1 +Level=49 +Slope=33 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=131 +F1=200 +Wave1=3 +Track1=1 +F2=6399 +Wave2=3 +Track2=1 +Method=2 +Param=66 +Envelope1=0,100 1639,21 5215,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=88 +F=3000 +dF=49 +Envelope=0,34 0,94 570,68 1663,68 1916,84 2898,40 4054,26 7346,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=6 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/clean_low_key_kick.ds b/src/samples/drumsynth/misc/clean_low_key_kick.ds new file mode 100644 index 0000000..0b51e96 --- /dev/null +++ b/src/samples/drumsynth/misc/clean_low_key_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=2 +Stretch=200 +Level=2 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,100 888,2 1650,6 2126,17 8598,83 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=30 +Droop=34 +Phase=0 +Envelope=0,99 654,47 1527,26 2126,16 2697,9 3490,5 4283,3 5267,2 9657,0 + +[Noise] +On=1 +Level=158 +Slope=-40 +Envelope=0,100 10,22 41,10 105,2 213,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=108 +F1=440 +Wave1=4 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=1 +Param=55 +Envelope1=0,0 1396,2 2602,0 +Envelope2=0,0 4886,2 7773,0 9930,0 11802,0 +Filter=0 + +[NoiseBand] +On=1 +Level=164 +F=50 +dF=3 +Envelope=0,98 286,41 603,20 1745,9 3744,3 7868,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=9 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/clean_soft_808.ds b/src/samples/drumsynth/misc/clean_soft_808.ds new file mode 100644 index 0000000..39e42f0 --- /dev/null +++ b/src/samples/drumsynth/misc/clean_soft_808.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=1 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 1099,38 2748,21 5746,9 9194,2 15441,0 444000,100 444000,0 + +[Tone] +On=1 +Level=175 +F1=120 +F2=50 +Droop=71 +Phase=0 +Envelope=0,100 1142,68 2284,53 3807,41 6092,31 9010,24 13579,16 25508,8 47463,2 69799,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=130 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=74 +F=50 +dF=13 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 21193,5 69672,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 68910,0 + +[Distortion] +On=0 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/clearly_snare.ds b/src/samples/drumsynth/misc/clearly_snare.ds new file mode 100644 index 0000000..4553e85 --- /dev/null +++ b/src/samples/drumsynth/misc/clearly_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=200 +Level=10 +Filter=1 +HighPass=1 +Resonance=22 +FilterEnv=0,11 1393,16 442000,100 443000,0 + +[Tone] +On=1 +Level=22 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 635,26 2221,8 6481,0 + +[Noise] +On=1 +Level=121 +Slope=-5 +Envelope=0,81 158,53 396,31 792,18 1425,13 2929,5 4180,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=26 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=6023 +dF=77 +Envelope=0,32 1190,17 2776,5 5810,0 + +[NoiseBand2] +On=1 +Level=22 +F=421 +dF=12 +Envelope=0,64 1348,27 3547,0 + +[Distortion] +On=1 +Clipping=4 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc/close_mic_sn.ds b/src/samples/drumsynth/misc/close_mic_sn.ds new file mode 100644 index 0000000..0d51bd4 --- /dev/null +++ b/src/samples/drumsynth/misc/close_mic_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=1 +Resonance=30 +FilterEnv=0,5 5901,10 444000,100 444000,0 + +[Tone] +On=1 +Level=119 +F1=200 +F2=90 +Droop=40 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=126 +Slope=-50 +Envelope=0,100 254,36 1174,11 6567,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1500 +dF=40 +Envelope=0,100 508,20 1523,0 + +[NoiseBand2] +On=1 +Level=53 +F=5000 +dF=90 +Envelope=0,100 571,35 1206,9 2411,0 + +[Distortion] +On=1 +Clipping=15 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/compression_does_it_808.ds b/src/samples/drumsynth/misc/compression_does_it_808.ds new file mode 100644 index 0000000..a25fdba --- /dev/null +++ b/src/samples/drumsynth/misc/compression_does_it_808.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=1 +Level=178 +F1=120 +F2=50 +Droop=71 +Phase=0 +Envelope=0,100 4822,83 20178,62 38199,20 57362,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=130 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=74 +F=50 +dF=13 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 21193,5 69672,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 68910,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/crusty_bump.ds b/src/samples/drumsynth/misc/crusty_bump.ds new file mode 100644 index 0000000..c493fa0 --- /dev/null +++ b/src/samples/drumsynth/misc/crusty_bump.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=54 +Phase=12 +Envelope=0,100 1699,46 5697,13 14991,0 + +[Noise] +On=1 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=109 +F=80 +dF=21 +Envelope=0,50 200,29 750,20 1349,11 2299,7 4247,3 9444,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=4 +Bits=2 +Rate=3 diff --git a/src/samples/drumsynth/misc/crusty_snare.ds b/src/samples/drumsynth/misc/crusty_snare.ds new file mode 100644 index 0000000..ede6fc7 --- /dev/null +++ b/src/samples/drumsynth/misc/crusty_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=2 +Filter=1 +HighPass=1 +Resonance=32 +FilterEnv=0,0 1396,20 5330,21 7995,18 442000,100 443000,0 + +[Tone] +On=1 +Level=67 +F1=200 +F2=50 +Droop=48 +Phase=10 +Envelope=0,100 1150,13 6853,4 11548,0 + +[Noise] +On=1 +Level=119 +Slope=-29 +Envelope=0,97 0,36 615,36 1487,25 2284,14 2919,6 3609,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=18 +F1=300 +Wave1=0 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Method=0 +Param=60 +Envelope1=0,100 615,18 11168,0 +Envelope2=0,100 674,21 1745,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=1250 +dF=62 +Envelope=0,63 888,36 1650,16 3300,4 6092,1 7741,0 + +[NoiseBand2] +On=1 +Level=119 +F=10000 +dF=90 +Envelope=0,73 1269,16 3530,2 5750,0 + +[Distortion] +On=1 +Clipping=19 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/cymbal.ds b/src/samples/drumsynth/misc/cymbal.ds new file mode 100644 index 0000000..2d5fe36 --- /dev/null +++ b/src/samples/drumsynth/misc/cymbal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=117 +Slope=90 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=325 +Wave1=0 +Track1=0 +F2=693 +Wave2=0 +Track2=0 +Method=3 +Param=100 +Envelope1=0,100 538,50 1935,19 4664,13 9581,11 11897,0 +Envelope2=0,100 16942,100 17196,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/decompression_snare.ds b/src/samples/drumsynth/misc/decompression_snare.ds new file mode 100644 index 0000000..d070160 --- /dev/null +++ b/src/samples/drumsynth/misc/decompression_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=7 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,32 442000,100 443000,0 + +[Tone] +On=0 +Level=22 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 635,26 2221,8 6481,0 + +[Noise] +On=1 +Level=102 +Slope=3 +Envelope=0,82 685,40 1362,47 1789,50 2914,56 5000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 685,100 1967,66 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=200 +dF=75 +Envelope=0,80 1358,49 3566,57 5810,0 + +[NoiseBand2] +On=1 +Level=113 +F=421 +dF=37 +Envelope=0,64 1348,27 3547,0 + +[Distortion] +On=0 +Clipping=4 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc/deep_bauble_bd.ds b/src/samples/drumsynth/misc/deep_bauble_bd.ds new file mode 100644 index 0000000..d943214 --- /dev/null +++ b/src/samples/drumsynth/misc/deep_bauble_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=120 +F2=45 +Droop=82 +Phase=10 +Envelope=0,100 1049,71 2299,47 3998,29 5647,17 8595,7 22636,0 + +[Noise] +On=1 +Level=65 +Slope=-30 +Envelope=0,100 317,22 635,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=45 +Wave1=1 +Track1=0 +F2=45 +Wave2=1 +Track2=0 +Method=2 +Param=40 +Envelope1=0,100 3093,22 6821,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=50 +dF=10 +Envelope=0,100 750,20 6088,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/deep_tones.ds b/src/samples/drumsynth/misc/deep_tones.ds new file mode 100644 index 0000000..34671a0 --- /dev/null +++ b/src/samples/drumsynth/misc/deep_tones.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-1 +Stretch=120 +Level=3 +Filter=1 +HighPass=0 +Resonance=4 +FilterEnv=0,93 3658,84 442000,100 443000,0 + +[Tone] +On=1 +Level=36 +F1=100 +F2=155 +Droop=42 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=149 +Slope=1 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=28 +F1=100 +Wave1=0 +Track1=0 +F2=100 +Wave2=4 +Track2=0 +Method=0 +Param=21 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=5000 +dF=100 +Envelope=0,0 0,98 507,43 1788,19 3486,0 + +[NoiseBand2] +On=1 +Level=135 +F=4000 +dF=70 +Envelope=0,100 839,35 1900,8 4402,0 + +[Distortion] +On=1 +Clipping=0 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/difference_snare.ds b/src/samples/drumsynth/misc/difference_snare.ds new file mode 100644 index 0000000..10752d6 --- /dev/null +++ b/src/samples/drumsynth/misc/difference_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=5 +Filter=1 +HighPass=0 +Resonance=31 +FilterEnv=0,77 15467,71 442000,100 442000,0 + +[Tone] +On=1 +Level=43 +F1=908 +F2=165 +Droop=63 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 8328,0 13071,0 + +[Noise] +On=1 +Level=95 +Slope=97 +Envelope=0,92 1666,41 4521,14 8804,0 11897,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=11 +Envelope1=0,100 1999,80 2792,42 4251,13 5235,0 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=19 +F=5000 +dF=26 +Envelope=0,68 3046,49 4500,30 7852,0 11929,0 + +[NoiseBand2] +On=1 +Level=88 +F=9076 +dF=58 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6901,5 8090,0 + +[Distortion] +On=1 +Clipping=10 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/different_909_snare.ds b/src/samples/drumsynth/misc/different_909_snare.ds new file mode 100644 index 0000000..a38127f --- /dev/null +++ b/src/samples/drumsynth/misc/different_909_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=130 +Level=6 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,11 750,11 442000,100 443000,0 + +[Tone] +On=1 +Level=173 +F1=280 +F2=115 +Droop=29 +Phase=20 +Envelope=0,100 278,50 1071,17 2578,3 5347,0 + +[Noise] +On=1 +Level=104 +Slope=-14 +Envelope=0,100 819,39 1666,15 5097,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=280 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 297,39 535,17 972,3 1699,0 +Envelope2=0,100 745,11 2235,0 +Filter=0 + +[NoiseBand] +On=0 +Level=115 +F=4000 +dF=93 +Envelope=0,100 1210,41 2479,16 4164,0 + +[NoiseBand2] +On=1 +Level=102 +F=7356 +dF=83 +Envelope=0,100 1210,41 2479,16 4164,0 + +[Distortion] +On=1 +Clipping=1 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/dirty_world_bd.ds b/src/samples/drumsynth/misc/dirty_world_bd.ds new file mode 100644 index 0000000..7cea9b3 --- /dev/null +++ b/src/samples/drumsynth/misc/dirty_world_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=4 +Filter=1 +HighPass=1 +Resonance=2 +FilterEnv=0,0 8661,23 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=20 +Droop=13 +Phase=0 +Envelope=0,25 697,83 1750,20 3135,57 5250,0 + +[Noise] +On=1 +Level=31 +Slope=-77 +Envelope=0,100 254,20 984,2 5647,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=20 +Wave1=2 +Track1=0 +F2=50 +Wave2=1 +Track2=0 +Method=1 +Param=55 +Envelope1=0,100 2549,70 4133,40 4766,23 6239,0 +Envelope2=0,100 1000,20 3769,45 13547,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=14 +F=3100 +dF=40 +Envelope=0,100 317,11 1301,2 6853,0 + +[Distortion] +On=1 +Clipping=15 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/dist_sub_kick.ds b/src/samples/drumsynth/misc/dist_sub_kick.ds new file mode 100644 index 0000000..7e6a00e --- /dev/null +++ b/src/samples/drumsynth/misc/dist_sub_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=100 +F2=35 +Droop=42 +Phase=120 +Envelope=0,99 1862,50 4097,25 5959,20 6630,0 + +[Noise] +On=1 +Level=164 +Slope=-62 +Envelope=0,100 127,36 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=876 +Wave1=0 +Track1=0 +F2=1356 +Wave2=0 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=161 +F=100 +dF=72 +Envelope=0,98 888,6 3300,2 6980,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=20 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/dist_sub_kick_2.ds b/src/samples/drumsynth/misc/dist_sub_kick_2.ds new file mode 100644 index 0000000..00db9d8 --- /dev/null +++ b/src/samples/drumsynth/misc/dist_sub_kick_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=2 +Stretch=100.0 +Level=2 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,0 2320,2 2598,0 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=20 +Droop=62 +Phase=120 +Envelope=0,99 1862,50 4097,25 5959,20 6630,0 + +[Noise] +On=1 +Level=164 +Slope=-92 +Envelope=0,100 10,55 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=876 +Wave1=0 +Track1=0 +F2=1356 +Wave2=0 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=78 +F=500 +dF=57 +Envelope=0,98 297,36 714,17 2142,5 6980,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=20 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/electro_dnb_kick.ds b/src/samples/drumsynth/misc/electro_dnb_kick.ds new file mode 100644 index 0000000..5f28961 --- /dev/null +++ b/src/samples/drumsynth/misc/electro_dnb_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100.0 +Level=9 +Filter=1 +HighPass=0 +Resonance=33 +FilterEnv=0,88 317,53 857,29 1904,10 4093,2 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=20 +Droop=59 +Phase=120 +Envelope=0,99 654,47 1527,26 2875,11 4204,4 4937,2 9657,0 + +[Noise] +On=0 +Level=181 +Slope=98 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=174 +F1=50 +Wave1=4 +Track1=0 +F2=50 +Wave2=4 +Track2=0 +Method=0 +Param=78 +Envelope1=0,100 190,41 635,22 1266,12 1999,5 2855,2 4886,0 +Envelope2=0,96 349,47 1269,19 3046,9 10355,0 +Filter=0 + +[NoiseBand] +On=0 +Level=164 +F=5000 +dF=57 +Envelope=0,98 127,38 381,17 1142,5 3680,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/electro_snare_layer.ds b/src/samples/drumsynth/misc/electro_snare_layer.ds new file mode 100644 index 0000000..4931c09 --- /dev/null +++ b/src/samples/drumsynth/misc/electro_snare_layer.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,7 5473,18 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=65.406 +F2=5632 +Droop=49 +Phase=0 +Envelope=0,100 2126,20 5616,0 + +[Noise] +On=0 +Level=128 +Slope=-10 +Envelope=0,100 218121,100 218121,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 1174,18 4632,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=122 +dF=17 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=101 +F=3100 +dF=60 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/electronic_rim.ds b/src/samples/drumsynth/misc/electronic_rim.ds new file mode 100644 index 0000000..5d346d0 --- /dev/null +++ b/src/samples/drumsynth/misc/electronic_rim.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=70 +Level=0 +Filter=1 +HighPass=1 +Resonance=59 +FilterEnv=0,47 5147,37 6696,29 442000,100 443000,0 + +[Tone] +On=1 +Level=160 +F1=500 +F2=150 +Droop=30 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=166 +Slope=10 +Envelope=0,0 0,98 507,43 1599,29 2349,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=123 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=3 +Param=15 +Envelope1=0,100 1726,23 3373,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=108 +F=3800 +dF=100 +Envelope=0,100 596,38 1299,0 + +[NoiseBand2] +On=0 +Level=165 +F=1000 +dF=82 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/end_transmission.ds b/src/samples/drumsynth/misc/end_transmission.ds new file mode 100644 index 0000000..9a29d4a --- /dev/null +++ b/src/samples/drumsynth/misc/end_transmission.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=73 +FilterEnv=0,100 73764,24 143563,17 159426,23 161806,7 176083,22 178462,8 192739,9 203050,2 222880,8 241915,13 256986,3 442000,100 443000,0 + +[Tone] +On=1 +Level=98 +F1=10000 +F2=10000 +Droop=0 +Phase=-45 +Envelope=0,100 53142,33 139597,16 239536,0 + +[Noise] +On=1 +Level=133 +Slope=69 +Envelope=0,100 819,31 10311,15 18772,8 33313,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=24 +F=200 +dF=50 +Envelope=0,100 11897,19 23002,0 23002,22 42038,2 55522,17 65833,0 89628,21 108664,2 123734,11 135631,4 222086,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=49 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/every_909.ds b/src/samples/drumsynth/misc/every_909.ds new file mode 100644 index 0000000..7ae1123 --- /dev/null +++ b/src/samples/drumsynth/misc/every_909.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-7 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,95 1269,47 2919,22 6092,5 11675,0 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=300 +F2=72 +Droop=47 +Phase=45 +Envelope=0,91 3046,92 3934,48 10279,8 17132,0 + +[Noise] +On=0 +Level=109 +Slope=-16 +Envelope=0,39 400,17 1249,5 3426,1 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,54 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=0 +Level=181 +F=72 +dF=5 +Envelope=0,53 4569,26 11422,16 21066,5 31854,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 25001,0 + +[Distortion] +On=0 +Clipping=0 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/fatness.ds b/src/samples/drumsynth/misc/fatness.ds new file mode 100644 index 0000000..ac968f3 --- /dev/null +++ b/src/samples/drumsynth/misc/fatness.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=133 +F1=120 +F2=50 +Droop=73 +Phase=0 +Envelope=0,100 2049,51 5647,21 11743,9 22386,0 + +[Noise] +On=1 +Level=51 +Slope=-42 +Envelope=0,100 278,14 595,4 793,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=350 +Wave1=0 +Track1=0 +F2=312.3 +Wave2=1 +Track2=1 +Method=2 +Param=86 +Envelope1=0,100 714,20 4997,6 10232,3 17132,1 22367,0 +Envelope2=0,48 6425,17 15943,0 +Filter=0 + +[NoiseBand] +On=1 +Level=36 +F=130 +dF=15 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=1 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/fattie_bd.ds b/src/samples/drumsynth/misc/fattie_bd.ds new file mode 100644 index 0000000..6081862 --- /dev/null +++ b/src/samples/drumsynth/misc/fattie_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=2 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=600 +F2=34 +Droop=60 +Phase=65 +Envelope=0,100 5250,30 13325,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=110 +Wave1=3 +Track1=1 +F2=50 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 3750,30 12151,0 +Envelope2=0,100 3522,32 19274,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=20 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/feel_me!.ds b/src/samples/drumsynth/misc/feel_me!.ds new file mode 100644 index 0000000..85cf31e --- /dev/null +++ b/src/samples/drumsynth/misc/feel_me!.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-12 +Stretch=100 +Level=8 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=0 +Level=148 +F1=220 +F2=220 +Droop=71 +Phase=12 +Envelope=0,85 3046,85 3934,48 5838,17 8630,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,82 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=0 +Level=74 +F=50 +dF=13 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[Distortion] +On=0 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/few_people_will_use_this_snare.ds b/src/samples/drumsynth/misc/few_people_will_use_this_snare.ds new file mode 100644 index 0000000..44b3619 --- /dev/null +++ b/src/samples/drumsynth/misc/few_people_will_use_this_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=12 +Stretch=100.0 +Level=-6 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,0 16783,20 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=100 +F2=40 +Droop=47 +Phase=0 +Envelope=0,100 508,49 3680,19 12310,7 33884,0 + +[Noise] +On=1 +Level=88 +Slope=10 +Envelope=0,100 3458,38 17132,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=134 +F1=161 +Wave1=4 +Track1=0 +F2=111 +Wave2=4 +Track2=0 +Method=1 +Param=82 +Envelope1=0,100 1301,68 2919,45 6536,28 16688,0 +Envelope2=0,100 1523,95 3204,81 10184,83 16688,0 +Filter=0 + +[NoiseBand] +On=1 +Level=141 +F=200 +dF=73 +Envelope=0,100 1301,68 2919,45 6536,28 16688,0 + +[NoiseBand2] +On=1 +Level=168 +F=500 +dF=61 +Envelope=0,100 1301,68 2919,45 6536,28 16688,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc/flat_tire.ds b/src/samples/drumsynth/misc/flat_tire.ds new file mode 100644 index 0000000..5def391 --- /dev/null +++ b/src/samples/drumsynth/misc/flat_tire.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=2000 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=153 +F1=120 +F2=100 +Droop=44 +Phase=-180 +Envelope=0,99 79,17 174,0 + +[Noise] +On=1 +Level=133 +Slope=38 +Envelope=0,100 982,70 1583,25 4576,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1916,25 7500,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=132 +F=9500 +dF=48 +Envelope=0,100 521,92 641,52 6596,41 11593,10 17239,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/fm.ds b/src/samples/drumsynth/misc/fm.ds new file mode 100644 index 0000000..361ab35 --- /dev/null +++ b/src/samples/drumsynth/misc/fm.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=2000 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=91 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/fried_food.ds b/src/samples/drumsynth/misc/fried_food.ds new file mode 100644 index 0000000..627d3d7 --- /dev/null +++ b/src/samples/drumsynth/misc/fried_food.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-17 +Stretch=100 +Level=-9 +Filter=0 +HighPass=1 +Resonance=53 +FilterEnv=0,0 2031,23 6599,31 6853,60 10279,23 11548,44 13325,11 15609,15 19671,4 28300,0 49874,0 444000,100 444000,0 + +[Tone] +On=1 +Level=92 +F1=880 +F2=220 +Droop=29 +Phase=12 +Envelope=0,85 3046,85 3934,48 10279,8 17132,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,54 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=1 + +[NoiseBand] +On=1 +Level=181 +F=220 +dF=0 +Envelope=0,0 4315,11 4442,35 5330,14 20051,5 54189,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[Distortion] +On=1 +Clipping=32 +Bits=3 +Rate=2 diff --git a/src/samples/drumsynth/misc/funky_trashcan_snare.ds b/src/samples/drumsynth/misc/funky_trashcan_snare.ds new file mode 100644 index 0000000..b55fc3d --- /dev/null +++ b/src/samples/drumsynth/misc/funky_trashcan_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=17 +FilterEnv=0,0 11675,5 444000,100 444000,0 + +[Tone] +On=0 +Level=65 +F1=162 +F2=130 +Droop=0 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=61 +Slope=-85 +Envelope=0,100 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=160 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 1000,20 13198,0 +Filter=0 + +[NoiseBand] +On=1 +Level=106 +F=800 +dF=68 +Envelope=0,100 1999,80 2792,42 3426,17 4251,14 4886,5 5362,8 8122,0 + +[NoiseBand2] +On=1 +Level=78 +F=800 +dF=58 +Envelope=0,100 1015,60 2475,34 4949,14 7392,5 9899,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/fuzzy_sn.ds b/src/samples/drumsynth/misc/fuzzy_sn.ds new file mode 100644 index 0000000..7bddbba --- /dev/null +++ b/src/samples/drumsynth/misc/fuzzy_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=34 +FilterEnv=0,80 776,17 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=300 +F2=85 +Droop=29 +Phase=90 +Envelope=0,100 2454,20 7506,0 + +[Noise] +On=1 +Level=98 +Slope=-51 +Envelope=0,100 500,20 3009,3 6825,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=6000 +dF=75 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=47 +F=8000 +dF=74 +Envelope=0,100 839,36 2185,13 7632,0 + +[Distortion] +On=1 +Clipping=15 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/gabbakick.ds b/src/samples/drumsynth/misc/gabbakick.ds new file mode 100644 index 0000000..fe9d916 --- /dev/null +++ b/src/samples/drumsynth/misc/gabbakick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100.0 +Level=-4 +Filter=0 +HighPass=1 +Resonance=66 +FilterEnv=0,48 1190,12 4283,2 8090,2 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=250 +F2=80 +Droop=28 +Phase=0 +Envelope=0,100 952,12 3093,2 7852,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Method=1 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=50 +dF=10 +Envelope=0,0 8566,3 22045,0 + +[NoiseBand2] +On=0 +Level=181 +F=14000 +dF=31 +Envelope=0,100 1043,1 10504,0 + +[Distortion] +On=1 +Clipping=39 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc/gimme_a_hard_tone.ds b/src/samples/drumsynth/misc/gimme_a_hard_tone.ds new file mode 100644 index 0000000..23f9f9c --- /dev/null +++ b/src/samples/drumsynth/misc/gimme_a_hard_tone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-7 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=71 +Droop=39 +Phase=12 +Envelope=0,100 1699,46 5697,13 17739,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc/gimmie_a_tone.ds b/src/samples/drumsynth/misc/gimmie_a_tone.ds new file mode 100644 index 0000000..664b550 --- /dev/null +++ b/src/samples/drumsynth/misc/gimmie_a_tone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=72 +Droop=39 +Phase=12 +Envelope=0,100 1699,46 5697,13 17739,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hard_electro_brush_sn.ds b/src/samples/drumsynth/misc/hard_electro_brush_sn.ds new file mode 100644 index 0000000..6d74a35 --- /dev/null +++ b/src/samples/drumsynth/misc/hard_electro_brush_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=28 +FilterEnv=0,3 2697,3 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=500 +F2=110 +Droop=58 +Phase=7643 +Envelope=0,100 2142,16 10500,0 + +[Noise] +On=1 +Level=47 +Slope=15 +Envelope=0,100 2935,18 6028,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=0 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=600 +dF=68 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=65 +F=3100 +dF=90 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc/hard_electronic_snare.ds b/src/samples/drumsynth/misc/hard_electronic_snare.ds new file mode 100644 index 0000000..6d78f66 --- /dev/null +++ b/src/samples/drumsynth/misc/hard_electronic_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=2 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,4 3300,9 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=600 +F2=50 +Droop=40 +Phase=0 +Envelope=0,100 5250,30 13325,0 + +[Noise] +On=1 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=50 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 3750,30 12151,0 +Envelope2=0,100 3522,32 12786,0 +Filter=0 + +[NoiseBand] +On=1 +Level=56 +F=210 +dF=60 +Envelope=0,44 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hard_hittin.ds b/src/samples/drumsynth/misc/hard_hittin.ds new file mode 100644 index 0000000..0adacbf --- /dev/null +++ b/src/samples/drumsynth/misc/hard_hittin.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=121 +Level=0 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,11 297,16 442000,100 443000,0 + +[Tone] +On=1 +Level=164 +F1=300 +F2=130 +Droop=23 +Phase=20 +Envelope=0,100 278,50 1071,17 2578,3 4918,0 + +[Noise] +On=1 +Level=123 +Slope=10 +Envelope=0,100 819,39 1666,15 3874,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=500 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 297,39 535,17 972,3 2458,0 +Envelope2=0,100 745,11 2235,0 +Filter=0 + +[NoiseBand] +On=1 +Level=118 +F=6500 +dF=76 +Envelope=0,100 1210,41 2479,16 4164,0 + +[NoiseBand2] +On=1 +Level=36 +F=5000 +dF=54 +Envelope=0,100 1210,41 2479,16 4164,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hardcore_a_bd.ds b/src/samples/drumsynth/misc/hardcore_a_bd.ds new file mode 100644 index 0000000..1f1962c --- /dev/null +++ b/src/samples/drumsynth/misc/hardcore_a_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=41 +FilterEnv=0,0 2665,4 4727,20 444000,100 444000,0 + +[Tone] +On=1 +Level=133 +F1=440 +F2=50 +Droop=49 +Phase=30 +Envelope=0,100 4597,91 10500,0 + +[Noise] +On=0 +Level=92 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=54 +F1=220 +Wave1=2 +Track1=0 +F2=110 +Wave2=0 +Track2=0 +Method=2 +Param=91 +Envelope1=0,100 1949,59 4497,24 8345,12 14941,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=0 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=0 +Level=96 +F=3100 +dF=100 +Envelope=0,100 200,35 450,15 1849,5 4997,0 + +[Distortion] +On=1 +Clipping=44 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc/hardcore_bd.ds b/src/samples/drumsynth/misc/hardcore_bd.ds new file mode 100644 index 0000000..2b196ae --- /dev/null +++ b/src/samples/drumsynth/misc/hardcore_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=1 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 2502,62 6540,41 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=75 +Droop=47 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=1 +Level=128 +Slope=-18 +Envelope=0,100 760,32 2074,13 4671,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=106 +F=200 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hardersnare.ds b/src/samples/drumsynth/misc/hardersnare.ds new file mode 100644 index 0000000..494f7db --- /dev/null +++ b/src/samples/drumsynth/misc/hardersnare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=150 +Droop=15 +Phase=0 +Envelope=0,100 1199,46 3798,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 5996,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=2000 +dF=86 +Envelope=0,72 750,20 4947,0 + +[NoiseBand2] +On=1 +Level=98 +F=3100 +dF=89 +Envelope=0,100 849,32 1649,13 3298,5 5846,0 + +[Distortion] +On=1 +Clipping=8 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/heady_mix_sn.ds b/src/samples/drumsynth/misc/heady_mix_sn.ds new file mode 100644 index 0000000..54fdaca --- /dev/null +++ b/src/samples/drumsynth/misc/heady_mix_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,3 1799,8 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=123 +F=5000 +dF=63 +Envelope=0,100 5250,30 10500,0 + +[NoiseBand2] +On=1 +Level=166 +F=3100 +dF=40 +Envelope=0,100 300,65 800,39 1500,20 2349,8 3748,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/heavy.ds b/src/samples/drumsynth/misc/heavy.ds new file mode 100644 index 0000000..3c4a168 --- /dev/null +++ b/src/samples/drumsynth/misc/heavy.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=180 +F2=40 +Droop=43 +Phase=10 +Envelope=0,0 0,41 715,39 4228,21 22526,0 + +[Noise] +On=0 +Level=100 +Slope=-68 +Envelope=0,0 268,100 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=11 +F1=360 +Wave1=1 +Track1=0 +F2=60 +Wave2=2 +Track2=0 +Method=1 +Param=46 +Envelope1=0,100 1490,17 22367,0 +Envelope2=0,100 3252,66 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=79 +F=400 +dF=34 +Envelope=0,99 670,21 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=2 diff --git a/src/samples/drumsynth/misc/hed_chunk_snare.ds b/src/samples/drumsynth/misc/hed_chunk_snare.ds new file mode 100644 index 0000000..e29561b --- /dev/null +++ b/src/samples/drumsynth/misc/hed_chunk_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=2 +Filter=1 +HighPass=1 +Resonance=31 +FilterEnv=0,14 9518,20 442000,100 442000,0 + +[Tone] +On=1 +Level=69 +F1=230 +F2=230 +Droop=0 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=139 +Slope=-32 +Envelope=0,68 3046,49 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=2 +Param=41 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=85 +F=162 +dF=75 +Envelope=0,68 1396,83 3046,49 4500,30 9000,0 + +[NoiseBand2] +On=1 +Level=133 +F=1600 +dF=78 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6980,5 9994,0 + +[Distortion] +On=1 +Clipping=4 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/hi-pass.ds b/src/samples/drumsynth/misc/hi-pass.ds new file mode 100644 index 0000000..f59bab5 --- /dev/null +++ b/src/samples/drumsynth/misc/hi-pass.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=1 +FilterEnv=0,0 2309,7 3874,25 5513,54 8790,83 13260,99 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 19741,0 + +[Noise] +On=1 +Level=128 +Slope=100 +Envelope=0,100 1937,47 13409,55 18176,30 20560,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hi_pic.ds b/src/samples/drumsynth/misc/hi_pic.ds new file mode 100644 index 0000000..17ff7b9 --- /dev/null +++ b/src/samples/drumsynth/misc/hi_pic.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=130 +Level=6 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,7 1299,11 442000,100 443000,0 + +[Tone] +On=0 +Level=164 +F1=280 +F2=130 +Droop=23 +Phase=20 +Envelope=0,100 278,50 1071,17 2578,3 5347,0 + +[Noise] +On=1 +Level=104 +Slope=12 +Envelope=0,100 450,53 1349,29 2848,13 5347,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=800 +Wave1=2 +Track1=0 +F2=200 +Wave2=4 +Track2=1 +Method=2 +Param=88 +Envelope1=0,100 450,53 1349,29 2848,13 5347,0 +Envelope2=0,100 450,53 1349,29 2848,13 5347,0 +Filter=0 + +[NoiseBand] +On=1 +Level=31 +F=800 +dF=19 +Envelope=0,100 1210,41 2479,16 4164,0 + +[NoiseBand2] +On=1 +Level=59 +F=800 +dF=83 +Envelope=0,100 1210,41 2479,16 4164,0 + +[Distortion] +On=1 +Clipping=10 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/hip-hop_fantasy_kick.ds b/src/samples/drumsynth/misc/hip-hop_fantasy_kick.ds new file mode 100644 index 0000000..c79bc04 --- /dev/null +++ b/src/samples/drumsynth/misc/hip-hop_fantasy_kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=40 +Droop=51 +Phase=45 +Envelope=0,100 1699,46 2792,28 4949,16 7614,7 10660,2 17739,0 + +[Noise] +On=1 +Level=19 +Slope=-100 +Envelope=0,100 1142,16 3046,6 7361,2 14340,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=20 +F=700 +dF=40 +Envelope=0,76 750,20 2411,8 4822,2 7487,0 + +[NoiseBand2] +On=1 +Level=51 +F=80 +dF=14 +Envelope=0,35 2919,17 6980,6 11675,2 26904,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hipster_joint_bd.ds b/src/samples/drumsynth/misc/hipster_joint_bd.ds new file mode 100644 index 0000000..b0ca4b0 --- /dev/null +++ b/src/samples/drumsynth/misc/hipster_joint_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=71 +Phase=0 +Envelope=0,100 1678,76 3927,26 6698,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc/hit_me_wooden_snare.ds b/src/samples/drumsynth/misc/hit_me_wooden_snare.ds new file mode 100644 index 0000000..743a279 --- /dev/null +++ b/src/samples/drumsynth/misc/hit_me_wooden_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-7 +Stretch=100 +Level=-1 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,0 1013,5 5394,6 7971,10 442000,100 443000,0 + +[Tone] +On=1 +Level=18 +F1=120 +F2=150 +Droop=83 +Phase=60 +Envelope=0,100 714,24 1150,13 2459,6 4442,2 8883,0 + +[Noise] +On=1 +Level=158 +Slope=-23 +Envelope=0,63 654,38 2538,17 5394,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=84 +F1=300 +Wave1=1 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Method=1 +Param=35 +Envelope1=0,39 615,18 2776,0 +Envelope2=0,32 952,15 1824,8 3966,2 6861,0 +Filter=0 + +[NoiseBand] +On=1 +Level=160 +F=1254 +dF=73 +Envelope=0,63 888,36 1650,16 3300,4 4521,1 5790,0 + +[NoiseBand2] +On=1 +Level=119 +F=9 +dF=51 +Envelope=0,63 888,36 1650,16 3173,7 4620,2 6980,0 + +[Distortion] +On=1 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hitthosesubs.ds b/src/samples/drumsynth/misc/hitthosesubs.ds new file mode 100644 index 0000000..0a17ce0 --- /dev/null +++ b/src/samples/drumsynth/misc/hitthosesubs.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=1 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=600 +F2=45 +Droop=46 +Phase=0 +Envelope=0,100 1750,20 16040,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/hot_morning_bass_drum.ds b/src/samples/drumsynth/misc/hot_morning_bass_drum.ds new file mode 100644 index 0000000..4e82ce2 --- /dev/null +++ b/src/samples/drumsynth/misc/hot_morning_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,0 13452,8 21193,1 444000,100 444000,0 + +[Tone] +On=1 +Level=148 +F1=400 +F2=50 +Droop=41 +Phase=0 +Envelope=0,100 2538,26 6345,5 10500,0 + +[Noise] +On=1 +Level=36 +Slope=-79 +Envelope=0,100 400,17 1249,5 2792,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=130 +Wave1=0 +Track1=1 +F2=300 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=50 +dF=13 +Envelope=0,100 1396,42 2250,30 3553,15 5965,3 13960,0 + +[NoiseBand2] +On=1 +Level=65 +F=120 +dF=23 +Envelope=0,100 635,44 2031,23 4442,13 7107,3 10533,0 + +[Distortion] +On=0 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/hot_snare.ds b/src/samples/drumsynth/misc/hot_snare.ds new file mode 100644 index 0000000..aa324ec --- /dev/null +++ b/src/samples/drumsynth/misc/hot_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=350 +F2=174 +Droop=69 +Phase=45 +Envelope=0,100 715,46 1788,17 5453,0 + +[Noise] +On=1 +Level=64 +Slope=-5 +Envelope=0,0 22,98 521,52 1043,21 2890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=88 +F=4000 +dF=83 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/i_luv_u_fat_noise.ds b/src/samples/drumsynth/misc/i_luv_u_fat_noise.ds new file mode 100644 index 0000000..9713914 --- /dev/null +++ b/src/samples/drumsynth/misc/i_luv_u_fat_noise.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=5 +Filter=1 +HighPass=1 +Resonance=21 +FilterEnv=0,0 348,3 442000,100 443000,0 + +[Tone] +On=1 +Level=170 +F1=300 +F2=50 +Droop=94 +Phase=0 +Envelope=0,99 2534,94 4547,77 6046,53 8445,44 27083,0 + +[Noise] +On=1 +Level=109 +Slope=85 +Envelope=0,26 849,9 2249,0 4560,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=49 +F1=400 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,58 2748,21 7196,5 13342,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=143 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=3 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/invisible_909_kick.ds b/src/samples/drumsynth/misc/invisible_909_kick.ds new file mode 100644 index 0000000..5a6fc05 --- /dev/null +++ b/src/samples/drumsynth/misc/invisible_909_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=1 +Filter=1 +HighPass=0 +Resonance=2 +FilterEnv=0,89 1399,27 3426,12 5996,3 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=300 +F2=43 +Droop=51 +Phase=50 +Envelope=0,99 750,74 1499,49 2149,40 3048,31 4447,25 7046,19 11843,8 16890,0 + +[Noise] +On=0 +Level=16 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3348,20 7445,0 +Envelope2=0,0 7246,23 11802,0 +Filter=0 + +[NoiseBand] +On=0 +Level=158 +F=50 +dF=4 +Envelope=0,0 2099,14 6696,30 7868,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=3 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/it's_like_that_snare.ds b/src/samples/drumsynth/misc/it's_like_that_snare.ds new file mode 100644 index 0000000..45a8210 --- /dev/null +++ b/src/samples/drumsynth/misc/it's_like_that_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=8 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,0 254,17 1047,33 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=150 +Droop=15 +Phase=0 +Envelope=0,100 1199,46 3798,0 + +[Noise] +On=1 +Level=128 +Slope=-79 +Envelope=0,100 500,20 5996,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/just_the_bass_drum.ds b/src/samples/drumsynth/misc/just_the_bass_drum.ds new file mode 100644 index 0000000..42a1ded --- /dev/null +++ b/src/samples/drumsynth/misc/just_the_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=2 +Filter=1 +HighPass=0 +Resonance=5 +FilterEnv=0,96 1299,30 1999,14 3198,8 23785,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=500 +F2=50 +Droop=50 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=25 +Wave1=0 +Track1=1 +F2=50 +Wave2=4 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 17489,89 19888,0 +Filter=0 + +[NoiseBand] +On=1 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/kneel_and_buzz.ds b/src/samples/drumsynth/misc/kneel_and_buzz.ds new file mode 100644 index 0000000..6a10bd5 --- /dev/null +++ b/src/samples/drumsynth/misc/kneel_and_buzz.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,5 38580,0 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=45 +Droop=63 +Phase=00 +Envelope=0,100 5250,30 42260,0 + +[Noise] +On=0 +Level=30 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=59 +F1=200 +Wave1=4 +Track1=1 +F2=500 +Wave2=0 +Track2=1 +Method=1 +Param=64 +Envelope1=0,100 1713,48 2221,11 2974,8 11422,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=32 +F=8000 +dF=51 +Envelope=0,100 286,1 1777,0 2982,0 + +[NoiseBand2] +On=1 +Level=181 +F=45 +dF=7 +Envelope=0,100 508,50 1500,30 4061,14 8249,5 27666,2 42514,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/large_hall_bd.ds b/src/samples/drumsynth/misc/large_hall_bd.ds new file mode 100644 index 0000000..d732038 --- /dev/null +++ b/src/samples/drumsynth/misc/large_hall_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=127 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=110 +F1=342 +Wave1=0 +Track1=1 +F2=1 +Wave2=4 +Track2=1 +Method=1 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 2935,74 7456,64 11184,56 11660,1 29585,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=30 +Bits=2 +Rate=4 diff --git a/src/samples/drumsynth/misc/laughter_and_jellybeans_snare.ds b/src/samples/drumsynth/misc/laughter_and_jellybeans_snare.ds new file mode 100644 index 0000000..b91a1aa --- /dev/null +++ b/src/samples/drumsynth/misc/laughter_and_jellybeans_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=17 +FilterEnv=0,0 11675,5 444000,100 444000,0 + +[Tone] +On=1 +Level=83 +F1=162 +F2=130 +Droop=0 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=79 +Slope=-29 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=160 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=37 +F=400 +dF=39 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[NoiseBand2] +On=1 +Level=78 +F=800 +dF=58 +Envelope=0,100 1015,60 2475,34 4949,14 7487,7 12849,0 + +[Distortion] +On=0 +Clipping=13 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc/light_snare.ds b/src/samples/drumsynth/misc/light_snare.ds new file mode 100644 index 0000000..579acdc --- /dev/null +++ b/src/samples/drumsynth/misc/light_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=16 +Filter=1 +HighPass=1 +Resonance=32 +FilterEnv=0,52 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=400 +F2=170 +Droop=54 +Phase=45 +Envelope=0,100 715,46 1788,17 5453,0 + +[Noise] +On=1 +Level=64 +Slope=-44 +Envelope=0,0 22,98 521,52 1043,21 2890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=88 +F=4000 +dF=83 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc/lo-fi_bass_drum.ds b/src/samples/drumsynth/misc/lo-fi_bass_drum.ds new file mode 100644 index 0000000..4554db1 --- /dev/null +++ b/src/samples/drumsynth/misc/lo-fi_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=36 +FilterEnv=0,19 7595,77 444000,100 444000,0 + +[Tone] +On=1 +Level=136 +F1=1500 +F2=120 +Droop=77 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=0 +Level=101 +Slope=100 +Envelope=0,14 857,34 2948,45 3148,8 6596,27 7695,5 11693,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=1 +Track1=1 +F2=1200 +Wave2=2 +Track2=1 +Method=1 +Param=70 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=21 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/lo-fi_march.ds b/src/samples/drumsynth/misc/lo-fi_march.ds new file mode 100644 index 0000000..5a661bc --- /dev/null +++ b/src/samples/drumsynth/misc/lo-fi_march.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Teddy Riley pitched snare +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=14 +FilterEnv=0,0 952,8 952,44 442000,100 442000,0 + +[Tone] +On=1 +Level=89 +F1=214 +F2=100 +Droop=13 +Phase=0 +Envelope=0,100 834,89 1877,11 3308,5 3903,0 + +[Noise] +On=1 +Level=141 +Slope=-55 +Envelope=0,100 328,100 715,89 1341,37 2533,14 3397,9 5235,2 8328,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=134 +F1=13000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 1043,31 2533,9 6250,0 +Envelope2=0,100 775,35 2354,9 5000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=81 +F=3000 +dF=40 +Envelope=0,90 268,91 1251,16 5483,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc/lo-fi_rim.ds b/src/samples/drumsynth/misc/lo-fi_rim.ds new file mode 100644 index 0000000..4d6b299 --- /dev/null +++ b/src/samples/drumsynth/misc/lo-fi_rim.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,19 444000,100 444000,0 + +[Tone] +On=1 +Level=137 +F1=565 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 1750,20 3579,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,25 507,50 1283,62 1758,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=500 +dF=70 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/loudness_sn.ds b/src/samples/drumsynth/misc/loudness_sn.ds new file mode 100644 index 0000000..9253943 --- /dev/null +++ b/src/samples/drumsynth/misc/loudness_sn.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=120 +Level=5 +Filter=1 +HighPass=1 +Resonance=34 +FilterEnv=0,2 6726,10 442000,100 443000,0 + +[Tone] +On=1 +Level=128 +F1=330 +F2=114 +Droop=43 +Phase=10 +Envelope=0,0 0,41 715,39 3046,8 7868,0 + +[Noise] +On=1 +Level=100 +Slope=21 +Envelope=0,100 1142,39 1396,26 2284,13 4822,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=11 +F1=360 +Wave1=1 +Track1=0 +F2=60 +Wave2=2 +Track2=0 +Method=1 +Param=46 +Envelope1=0,100 1490,17 22367,0 +Envelope2=0,100 3252,66 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=85 +F=2300 +dF=71 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=1000 +dF=82 +Envelope=0,0 115,14 1039,11 1504,0 + +[Distortion] +On=1 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/lovely_clean_bd.ds b/src/samples/drumsynth/misc/lovely_clean_bd.ds new file mode 100644 index 0000000..552a781 --- /dev/null +++ b/src/samples/drumsynth/misc/lovely_clean_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=4 +Filter=0 +HighPass=1 +Resonance=5 +FilterEnv=0,95 1399,50 4197,23 7246,11 12492,6 442000,100 442000,0 + +[Tone] +On=1 +Level=150 +F1=110 +F2=43 +Droop=50 +Phase=15 +Envelope=0,100 1799,51 4048,23 6796,9 10500,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=83 +F1=110 +Wave1=0 +Track1=1 +F2=110 +Wave2=0 +Track2=1 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=20 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/lower_electro_bd.ds b/src/samples/drumsynth/misc/lower_electro_bd.ds new file mode 100644 index 0000000..e213176 --- /dev/null +++ b/src/samples/drumsynth/misc/lower_electro_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=80 +Level=0 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,78 2181,32 442000,100 442000,0 + +[Tone] +On=1 +Level=172 +F1=5633 +F2=55 +Droop=72 +Phase=0 +Envelope=0,100 1586,0 10500,0 + +[Noise] +On=0 +Level=128 +Slope=-85 +Envelope=0,100 555,21 1448,4 2439,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=1 +Track1=0 +F2=220 +Wave2=3 +Track2=1 +Method=3 +Param=30 +Envelope1=0,100 952,26 1904,0 3750,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=122 +dF=17 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=0 +Level=101 +F=5555 +dF=60 +Envelope=0,100 932,0 2578,0 + +[Distortion] +On=1 +Clipping=25 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/mack_bd.ds b/src/samples/drumsynth/misc/mack_bd.ds new file mode 100644 index 0000000..4d73c3b --- /dev/null +++ b/src/samples/drumsynth/misc/mack_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=46 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc/manipulate_bd.ds b/src/samples/drumsynth/misc/manipulate_bd.ds new file mode 100644 index 0000000..2dcca0c --- /dev/null +++ b/src/samples/drumsynth/misc/manipulate_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=30 +FilterEnv=0,0 1742,5 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=40 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=1 +F2=50 +Wave2=2 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 1250,20 5241,0 +Envelope2=0,100 1583,81 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/many_frequencies.ds b/src/samples/drumsynth/misc/many_frequencies.ds new file mode 100644 index 0000000..1bdabd8 --- /dev/null +++ b/src/samples/drumsynth/misc/many_frequencies.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,11 9613,11 442000,100 442000,0 + +[Tone] +On=1 +Level=133 +F1=160 +F2=150 +Droop=60 +Phase=0 +Envelope=0,100 2648,50 7096,20 14291,0 + +[Noise] +On=1 +Level=65 +Slope=14 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=2 +Param=41 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=232 +dF=65 +Envelope=0,100 650,61 2250,30 7445,9 15091,0 + +[NoiseBand2] +On=1 +Level=154 +F=5000 +dF=94 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6980,5 9994,0 + +[Distortion] +On=1 +Clipping=4 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/mello_bd.ds b/src/samples/drumsynth/misc/mello_bd.ds new file mode 100644 index 0000000..43ee002 --- /dev/null +++ b/src/samples/drumsynth/misc/mello_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=2 +Filter=0 +HighPass=0 +Resonance=6 +FilterEnv=0,23 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=180 +F2=50 +Droop=31 +Phase=10 +Envelope=0,0 0,96 715,39 2458,16 6481,0 + +[Noise] +On=0 +Level=100 +Slope=70 +Envelope=0,0 268,100 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=400 +dF=34 +Envelope=0,99 670,21 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=158 +F=3000 +dF=89 +Envelope=0,100 100,30 3547,0 + +[Distortion] +On=0 +Clipping=7 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc/mind_ya_heds.ds b/src/samples/drumsynth/misc/mind_ya_heds.ds new file mode 100644 index 0000000..7d4a626 --- /dev/null +++ b/src/samples/drumsynth/misc/mind_ya_heds.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=200 +Level=1 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=100 +Droop=42 +Phase=0 +Envelope=0,100 1745,14 5156,1 9121,0 13325,0 + +[Noise] +On=1 +Level=181 +Slope=-90 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=119 +F1=5000 +Wave1=0 +Track1=0 +F2=4231 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,54 1210,11 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=133 +F=300 +dF=66 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=500 +dF=81 +Envelope=0,100 1500,20 4997,6 9994,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/missing_snare.ds b/src/samples/drumsynth/misc/missing_snare.ds new file mode 100644 index 0000000..b854e62 --- /dev/null +++ b/src/samples/drumsynth/misc/missing_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,11 442000,100 442000,0 + +[Tone] +On=1 +Level=154 +F1=800 +F2=55 +Droop=54 +Phase=65 +Envelope=0,100 5250,30 9597,0 14753,0 + +[Noise] +On=1 +Level=137 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=55 +F1=660 +Wave1=4 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 1110,15 8487,0 +Envelope2=0,100 7932,9 14277,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=50 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/missing_snare_2.ds b/src/samples/drumsynth/misc/missing_snare_2.ds new file mode 100644 index 0000000..c4a63d1 --- /dev/null +++ b/src/samples/drumsynth/misc/missing_snare_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,11 442000,100 442000,0 + +[Tone] +On=1 +Level=154 +F1=800 +F2=55 +Droop=54 +Phase=65 +Envelope=0,100 5250,30 9597,0 14753,0 + +[Noise] +On=1 +Level=137 +Slope=9 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=82 +F1=660 +Wave1=4 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 1110,15 8487,0 +Envelope2=0,100 7932,9 14277,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=70 +Envelope=0,68 1983,23 6425,8 12453,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=30 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/more_basic_bd.ds b/src/samples/drumsynth/misc/more_basic_bd.ds new file mode 100644 index 0000000..3326471 --- /dev/null +++ b/src/samples/drumsynth/misc/more_basic_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=2 +Filter=1 +HighPass=0 +Resonance=1 +FilterEnv=0,85 2475,90 4220,29 442000,100 442000,0 + +[Tone] +On=1 +Level=163 +F1=400 +F2=67 +Droop=37 +Phase=110 +Envelope=0,0 0,100 1904,100 2617,21 3490,0 + +[Noise] +On=1 +Level=128 +Slope=-31 +Envelope=0,53 1079,11 3458,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=29 +F1=213 +Wave1=3 +Track1=0 +F2=67 +Wave2=0 +Track2=1 +Method=2 +Param=88 +Envelope1=0,100 1523,23 7500,0 +Envelope2=0,100 2157,36 5171,51 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=111 +F=3000 +dF=94 +Envelope=0,74 333,28 808,9 2459,3 4212,0 + +[NoiseBand2] +On=1 +Level=81 +F=6000 +dF=80 +Envelope=0,48 1108,11 3721,0 + +[Distortion] +On=1 +Clipping=2 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc/more_snap.ds b/src/samples/drumsynth/misc/more_snap.ds new file mode 100644 index 0000000..8e29011 --- /dev/null +++ b/src/samples/drumsynth/misc/more_snap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=95 +Level=8 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,8 442000,100 443000,0 + +[Tone] +On=1 +Level=127 +F1=350 +F2=160 +Droop=36 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=149 +Slope=36 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=113 +F=3800 +dF=51 +Envelope=0,100 596,38 2801,0 + +[NoiseBand2] +On=1 +Level=181 +F=7000 +dF=69 +Envelope=0,100 150,53 450,31 1199,11 2498,3 4097,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/muted_snare.ds b/src/samples/drumsynth/misc/muted_snare.ds new file mode 100644 index 0000000..2d665c0 --- /dev/null +++ b/src/samples/drumsynth/misc/muted_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,43 6060,39 442000,100 442000,0 + +[Tone] +On=1 +Level=156 +F1=234 +F2=112 +Droop=49 +Phase=0 +Envelope=0,100 2126,20 5616,0 + +[Noise] +On=1 +Level=128 +Slope=-30 +Envelope=0,100 2887,24 5425,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 1174,18 4632,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=122 +dF=17 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=101 +F=3100 +dF=60 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/n_hi.ds b/src/samples/drumsynth/misc/n_hi.ds new file mode 100644 index 0000000..1173493 --- /dev/null +++ b/src/samples/drumsynth/misc/n_hi.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=100 +Envelope=0,100 4768,41 9982,0 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=3 +Track1=0 +F2=440 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/n_mid.ds b/src/samples/drumsynth/misc/n_mid.ds new file mode 100644 index 0000000..c57e14a --- /dev/null +++ b/src/samples/drumsynth/misc/n_mid.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=1 +Envelope=0,100 4768,41 9982,0 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=3 +Track1=0 +F2=440 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/neo808.ds b/src/samples/drumsynth/misc/neo808.ds new file mode 100644 index 0000000..7b94226 --- /dev/null +++ b/src/samples/drumsynth/misc/neo808.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-1 +Stretch=75 +Level=16 +Filter=1 +HighPass=1 +Resonance=22 +FilterEnv=0,39 442000,100 443000,0 + +[Tone] +On=1 +Level=59 +F1=400 +F2=130 +Droop=86 +Phase=45 +Envelope=0,100 238,26 1904,8 4997,2 9518,0 + +[Noise] +On=1 +Level=41 +Slope=23 +Envelope=0,0 22,98 521,52 1043,21 2890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=88 +F=4000 +dF=83 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/neo808_2.ds b/src/samples/drumsynth/misc/neo808_2.ds new file mode 100644 index 0000000..4f1d165 --- /dev/null +++ b/src/samples/drumsynth/misc/neo808_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-1 +Stretch=75 +Level=16 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,26 2142,48 4045,83 442000,100 443000,0 + +[Tone] +On=1 +Level=98 +F1=400 +F2=130 +Droop=86 +Phase=45 +Envelope=0,100 238,26 1904,8 4997,2 9518,0 + +[Noise] +On=1 +Level=55 +Slope=23 +Envelope=0,0 22,98 521,52 1043,21 2890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=88 +F=4000 +dF=83 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/noise.ds b/src/samples/drumsynth/misc/noise.ds new file mode 100644 index 0000000..02e06ac --- /dev/null +++ b/src/samples/drumsynth/misc/noise.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,100 633,14 3658,47 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=1 +Level=128 +Slope=-18 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=160 +F=200 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc/noise_calling_kick.ds b/src/samples/drumsynth/misc/noise_calling_kick.ds new file mode 100644 index 0000000..d7b3311 --- /dev/null +++ b/src/samples/drumsynth/misc/noise_calling_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=1 +Stretch=100 +Level=1 +Filter=0 +HighPass=0 +Resonance=2 +FilterEnv=0,56 1399,27 3426,12 5996,3 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=60 +Droop=41 +Phase=180 +Envelope=0,99 300,62 949,37 2099,20 3748,4 5796,0 8994,0 + +[Noise] +On=1 +Level=109 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3348,20 7445,0 +Envelope2=0,0 7246,23 11802,0 +Filter=0 + +[NoiseBand] +On=1 +Level=154 +F=50 +dF=4 +Envelope=0,99 750,74 1149,42 2099,20 3748,4 5147,4 7445,2 9644,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=11 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc/noise_clip.ds b/src/samples/drumsynth/misc/noise_clip.ds new file mode 100644 index 0000000..86a449d --- /dev/null +++ b/src/samples/drumsynth/misc/noise_clip.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=9 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,23 442000,100 443000,0 + +[Tone] +On=1 +Level=84 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 715,39 2458,16 6481,0 + +[Noise] +On=1 +Level=100 +Slope=70 +Envelope=0,0 268,100 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=146 +F=400 +dF=34 +Envelope=0,99 670,21 1788,4 5810,0 + +[NoiseBand2] +On=1 +Level=158 +F=3000 +dF=89 +Envelope=0,100 100,30 3547,0 + +[Distortion] +On=1 +Clipping=7 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc/nosie_calling_kick_2.ds b/src/samples/drumsynth/misc/nosie_calling_kick_2.ds new file mode 100644 index 0000000..9a9e7c7 --- /dev/null +++ b/src/samples/drumsynth/misc/nosie_calling_kick_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=1 +Stretch=100 +Level=1 +Filter=0 +HighPass=0 +Resonance=2 +FilterEnv=0,56 1399,27 3426,12 5996,3 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=60 +Droop=41 +Phase=180 +Envelope=0,99 300,62 949,37 2099,20 3748,4 5796,0 8994,0 + +[Noise] +On=1 +Level=109 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3348,20 7445,0 +Envelope2=0,0 7246,23 11802,0 +Filter=0 + +[NoiseBand] +On=0 +Level=154 +F=50 +dF=4 +Envelope=0,99 750,74 1149,42 2099,20 3748,4 5147,4 7445,2 9644,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=11 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/odd_snare.ds b/src/samples/drumsynth/misc/odd_snare.ds new file mode 100644 index 0000000..d367afb --- /dev/null +++ b/src/samples/drumsynth/misc/odd_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100.0 +Level=-1 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,0 952,19 5394,6 7971,10 442000,100 443000,0 + +[Tone] +On=1 +Level=18 +F1=120 +F2=150 +Droop=83 +Phase=60 +Envelope=0,100 714,24 1150,13 2459,6 4442,2 8883,0 + +[Noise] +On=1 +Level=113 +Slope=62 +Envelope=0,63 654,38 2538,17 5394,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=84 +F1=300 +Wave1=1 +Track1=1 +F2=412 +Wave2=0 +Track2=1 +Method=1 +Param=35 +Envelope1=0,39 615,18 2776,0 +Envelope2=0,32 952,15 1824,8 3966,2 6861,0 +Filter=0 + +[NoiseBand] +On=1 +Level=160 +F=3000 +dF=73 +Envelope=0,63 888,36 1650,16 3300,4 4521,1 5790,0 + +[NoiseBand2] +On=1 +Level=119 +F=1200 +dF=51 +Envelope=0,63 888,36 1650,16 3173,7 4620,2 6980,0 + +[Distortion] +On=1 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/original_tone_snare.ds b/src/samples/drumsynth/misc/original_tone_snare.ds new file mode 100644 index 0000000..64bca4b --- /dev/null +++ b/src/samples/drumsynth/misc/original_tone_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=7 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,10 1552,26 442000,100 443000,0 + +[Tone] +On=0 +Level=22 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 635,26 2221,8 6481,0 + +[Noise] +On=1 +Level=28 +Slope=-100 +Envelope=0,32 317,14 713,6 1362,2 1789,1 2914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=6023 +dF=34 +Envelope=0,32 1190,17 2776,5 5810,0 + +[NoiseBand2] +On=1 +Level=22 +F=421 +dF=12 +Envelope=0,64 1348,27 3547,0 + +[Distortion] +On=1 +Clipping=4 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc/ot_12.ds b/src/samples/drumsynth/misc/ot_12.ds new file mode 100644 index 0000000..7f8c081 --- /dev/null +++ b/src/samples/drumsynth/misc/ot_12.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=1 +Track1=0 +F2=440 +Wave2=2 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/ot_34.ds b/src/samples/drumsynth/misc/ot_34.ds new file mode 100644 index 0000000..dcbeb78 --- /dev/null +++ b/src/samples/drumsynth/misc/ot_34.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=3 +Track1=0 +F2=440 +Wave2=4 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/ot_sine.ds b/src/samples/drumsynth/misc/ot_sine.ds new file mode 100644 index 0000000..4e6f99b --- /dev/null +++ b/src/samples/drumsynth/misc/ot_sine.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=2000 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/overdriver_kick.ds b/src/samples/drumsynth/misc/overdriver_kick.ds new file mode 100644 index 0000000..dffa239 --- /dev/null +++ b/src/samples/drumsynth/misc/overdriver_kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-3 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=54 +Droop=47 +Phase=65 +Envelope=0,100 1699,46 5697,13 8445,5 11693,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=119 +F1=315 +Wave1=3 +Track1=0 +F2=630 +Wave2=3 +Track2=1 +Method=2 +Param=90 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=56 +F=890 +dF=0 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=74 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/pleasure_factory_kick.ds b/src/samples/drumsynth/misc/pleasure_factory_kick.ds new file mode 100644 index 0000000..0ed1210 --- /dev/null +++ b/src/samples/drumsynth/misc/pleasure_factory_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-2 +Stretch=100.0 +Level=10 +Filter=0 +HighPass=0 +Resonance=33 +FilterEnv=0,88 317,53 857,29 1904,10 4093,2 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=150 +F2=50 +Droop=46 +Phase=120 +Envelope=0,99 654,47 1527,26 2875,11 4204,4 4937,2 9657,0 + +[Noise] +On=0 +Level=181 +Slope=-29 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=174 +F1=50 +Wave1=4 +Track1=0 +F2=67.5 +Wave2=2 +Track2=0 +Method=0 +Param=60 +Envelope1=0,100 190,41 635,22 1266,12 1999,5 2855,2 4886,0 +Envelope2=0,96 349,47 1269,19 3046,9 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=104 +F=5000 +dF=57 +Envelope=0,59 50,38 200,18 450,7 1249,0 + +[NoiseBand2] +On=1 +Level=168 +F=62 +dF=5 +Envelope=0,10 1699,14 3148,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/pop_1_off_snare.ds b/src/samples/drumsynth/misc/pop_1_off_snare.ds new file mode 100644 index 0000000..9759613 --- /dev/null +++ b/src/samples/drumsynth/misc/pop_1_off_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=80 +Level=0 +Filter=1 +HighPass=1 +Resonance=17 +FilterEnv=0,9 12881,14 444000,100 444000,0 + +[Tone] +On=1 +Level=65 +F1=130 +F2=130 +Droop=0 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=160 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=37 +F=400 +dF=39 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[NoiseBand2] +On=1 +Level=78 +F=800 +dF=58 +Envelope=0,100 1015,60 2475,34 4949,14 7487,7 12849,0 + +[Distortion] +On=1 +Clipping=13 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc/power_out.ds b/src/samples/drumsynth/misc/power_out.ds new file mode 100644 index 0000000..0817caf --- /dev/null +++ b/src/samples/drumsynth/misc/power_out.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=-30 +Stretch=30 +Level=9 +Filter=0 +HighPass=0 +Resonance=87 +FilterEnv=0,100 4188,85 442000,100 443000,0 + +[Tone] +On=1 +Level=147 +F1=220 +F2=100 +Droop=73 +Phase=0 +Envelope=0,100 5203,89 9296,93 13960,69 28951,95 28951,13 58631,79 127700,0 + +[Noise] +On=1 +Level=67 +Slope=3 +Envelope=0,100 5552,5 23002,12 58694,10 79317,9 161013,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=143 +F1=500 +Wave1=4 +Track1=1 +F2=600 +Wave2=0 +Track2=1 +Method=0 +Param=13 +Envelope1=0,0 2235,51 11993,0 +Envelope2=0,100 1117,19 3799,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=500 +dF=52 +Envelope=0,100 19290,47 44417,0 + +[NoiseBand2] +On=0 +Level=131 +F=500 +dF=100 +Envelope=0,100 21320,54 58123,0 + +[Distortion] +On=1 +Clipping=30 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc/psychoacoutic_bd.ds b/src/samples/drumsynth/misc/psychoacoutic_bd.ds new file mode 100644 index 0000000..6bfb828 --- /dev/null +++ b/src/samples/drumsynth/misc/psychoacoutic_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=110 +F1=100 +Wave1=0 +Track1=1 +F2=5 +Wave2=4 +Track2=1 +Method=2 +Param=70 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=6 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc/punchy_clean_kick.ds b/src/samples/drumsynth/misc/punchy_clean_kick.ds new file mode 100644 index 0000000..46a4ea5 --- /dev/null +++ b/src/samples/drumsynth/misc/punchy_clean_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=35 +Droop=24 +Phase=120 +Envelope=0,99 1862,50 4097,25 5959,20 6630,0 + +[Noise] +On=1 +Level=164 +Slope=-62 +Envelope=0,100 127,36 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=876 +Wave1=0 +Track1=0 +F2=1356 +Wave2=0 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=127 +F=100 +dF=57 +Envelope=0,98 888,6 3300,2 6980,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=20 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/puppy_kick.ds b/src/samples/drumsynth/misc/puppy_kick.ds new file mode 100644 index 0000000..f7150ff --- /dev/null +++ b/src/samples/drumsynth/misc/puppy_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=11 +Filter=0 +HighPass=0 +Resonance=2 +FilterEnv=0,56 1399,27 3426,12 5996,3 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=400 +F2=60 +Droop=74 +Phase=5 +Envelope=0,99 450,62 1099,30 2199,9 3748,4 5796,0 8994,0 + +[Noise] +On=0 +Level=109 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3448,7 7445,0 +Envelope2=0,0 4497,6 11802,0 +Filter=0 + +[NoiseBand] +On=0 +Level=154 +F=50 +dF=4 +Envelope=0,99 750,74 1149,42 2099,20 3748,4 5147,4 7445,2 9644,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=3 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/q'ey_bass_drum.ds b/src/samples/drumsynth/misc/q'ey_bass_drum.ds new file mode 100644 index 0000000..a4755f9 --- /dev/null +++ b/src/samples/drumsynth/misc/q'ey_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-7 +Stretch=100 +Level=-2 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,95 1269,47 2919,22 6092,5 11675,0 442000,100 442000,0 + +[Tone] +On=1 +Level=160 +F1=600 +F2=72 +Droop=34 +Phase=12 +Envelope=0,91 3046,92 3934,48 10279,8 17132,0 + +[Noise] +On=1 +Level=109 +Slope=-16 +Envelope=0,39 400,17 1249,5 3426,1 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,54 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=72 +dF=5 +Envelope=0,53 4569,26 11422,16 21066,5 31854,0 + +[NoiseBand2] +On=1 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 25001,0 + +[Distortion] +On=0 +Clipping=0 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/q_kick_2.ds b/src/samples/drumsynth/misc/q_kick_2.ds new file mode 100644 index 0000000..999e8b0 --- /dev/null +++ b/src/samples/drumsynth/misc/q_kick_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=2 +Stretch=100 +Level=5 +Filter=1 +HighPass=0 +Resonance=47 +FilterEnv=0,73 500,45 1399,26 2399,15 4647,2 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=50 +Droop=66 +Phase=0 +Envelope=0,91 700,64 1799,34 3198,12 10294,0 + +[Noise] +On=0 +Level=181 +Slope=-29 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=125 +F1=110 +Wave1=1 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=49 +Envelope1=0,23 2049,1 4886,0 +Envelope2=0,0 0,44 550,22 1449,13 3248,2 5896,0 9930,0 11802,0 +Filter=0 + +[NoiseBand] +On=0 +Level=164 +F=5000 +dF=57 +Envelope=0,98 286,41 603,20 1745,9 3744,3 7868,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc/questoin_kick.ds b/src/samples/drumsynth/misc/questoin_kick.ds new file mode 100644 index 0000000..7df7e58 --- /dev/null +++ b/src/samples/drumsynth/misc/questoin_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-5 +Filter=1 +HighPass=1 +Resonance=8 +FilterEnv=0,0 550,14 1699,12 5996,3 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=400 +F2=60 +Droop=74 +Phase=5 +Envelope=0,99 250,58 800,38 2498,15 5247,3 8994,0 + +[Noise] +On=0 +Level=109 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3448,7 7445,0 +Envelope2=0,0 4497,6 11802,0 +Filter=0 + +[NoiseBand] +On=1 +Level=154 +F=50 +dF=3 +Envelope=0,0 3748,4 8545,8 9644,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=38 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc/r+b_fantasy_kick.ds b/src/samples/drumsynth/misc/r+b_fantasy_kick.ds new file mode 100644 index 0000000..aa758f1 --- /dev/null +++ b/src/samples/drumsynth/misc/r+b_fantasy_kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,0 35915,4 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=300 +F2=40 +Droop=51 +Phase=45 +Envelope=0,100 1699,46 2792,28 4949,16 7614,7 10660,2 17739,0 + +[Noise] +On=1 +Level=19 +Slope=-100 +Envelope=0,100 1142,16 3046,6 7361,2 14340,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=22 +F=700 +dF=40 +Envelope=0,76 750,20 2411,8 4822,2 7487,0 + +[NoiseBand2] +On=1 +Level=76 +F=80 +dF=14 +Envelope=0,35 2919,17 6980,6 11675,2 36295,0 + +[Distortion] +On=1 +Clipping=3 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/reverb_please_snare.ds b/src/samples/drumsynth/misc/reverb_please_snare.ds new file mode 100644 index 0000000..2721c44 --- /dev/null +++ b/src/samples/drumsynth/misc/reverb_please_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,71 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=1000 +F2=509 +Droop=60 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/rimmy_noise.ds b/src/samples/drumsynth/misc/rimmy_noise.ds new file mode 100644 index 0000000..8f6333a --- /dev/null +++ b/src/samples/drumsynth/misc/rimmy_noise.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Teddy Riley hollow snare +Tuning=0.00 +Stretch=80 +Level=5 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=129 +F1=375 +F2=375 +Droop=11 +Phase=90 +Envelope=0,100 1341,0 + +[Noise] +On=1 +Level=123 +Slope=36 +Envelope=0,100 819,98 1862,34 3576,17 9163,7 11174,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=134 +F1=13000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 1043,31 2533,9 6250,0 +Envelope2=0,100 775,35 2354,9 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=104 +F=901 +dF=81 +Envelope=0,100 894,91 1937,30 2831,14 6034,5 8865,1 12440,0 + +[NoiseBand2] +On=1 +Level=28 +F=20 +dF=89 +Envelope=0,37 6704,35 11025,8 14526,0 + +[Distortion] +On=1 +Clipping=0 +Bits=6 +Rate=1 diff --git a/src/samples/drumsynth/misc/rimshot_1.ds b/src/samples/drumsynth/misc/rimshot_1.ds new file mode 100644 index 0000000..1a31ca5 --- /dev/null +++ b/src/samples/drumsynth/misc/rimshot_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=26 +FilterEnv=0,18 6318,38 442000,100 443000,0 + +[Tone] +On=1 +Level=133 +F1=350 +F2=174 +Droop=84 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=166 +Slope=40 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=123 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=3 +Param=15 +Envelope1=0,100 1726,23 3373,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=3800 +dF=100 +Envelope=0,100 596,38 2801,0 + +[NoiseBand2] +On=1 +Level=164 +F=1000 +dF=82 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/rimshot_2.ds b/src/samples/drumsynth/misc/rimshot_2.ds new file mode 100644 index 0000000..554f605 --- /dev/null +++ b/src/samples/drumsynth/misc/rimshot_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=26 +FilterEnv=0,18 6318,38 442000,100 443000,0 + +[Tone] +On=1 +Level=133 +F1=350 +F2=174 +Droop=95 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=100 +Slope=40 +Envelope=0,0 0,98 507,43 952,9 2617,2 5949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=123 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=3 +Param=15 +Envelope1=0,100 1726,23 3373,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=144 +F=3800 +dF=100 +Envelope=0,100 596,38 2801,0 + +[NoiseBand2] +On=1 +Level=181 +F=1000 +dF=3 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/ring_fray_kick.ds b/src/samples/drumsynth/misc/ring_fray_kick.ds new file mode 100644 index 0000000..ab7b952 --- /dev/null +++ b/src/samples/drumsynth/misc/ring_fray_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=1 +Stretch=100.0 +Level=-4 +Filter=1 +HighPass=1 +Resonance=14 +FilterEnv=0,0 2320,2 2598,0 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=50 +Droop=62 +Phase=120 +Envelope=0,99 654,47 1527,26 2875,11 4204,4 4937,2 9657,0 + +[Noise] +On=1 +Level=181 +Slope=98 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=13 +F1=110 +Wave1=4 +Track1=0 +F2=780 +Wave2=4 +Track2=0 +Method=0 +Param=78 +Envelope1=0,100 190,41 635,22 1266,12 1999,5 2855,2 4886,0 +Envelope2=0,92 159,8 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=164 +F=5000 +dF=57 +Envelope=0,98 127,38 381,17 1142,5 3680,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=20 +Bits=3 +Rate=2 diff --git a/src/samples/drumsynth/misc/ring_mod_drone_bd.ds b/src/samples/drumsynth/misc/ring_mod_drone_bd.ds new file mode 100644 index 0000000..c0bac6d --- /dev/null +++ b/src/samples/drumsynth/misc/ring_mod_drone_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=69 +FilterEnv=0,0 267297,2 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=74 +Phase=00 +Envelope=0,100 65040,36 180842,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=435 +Wave1=1 +Track1=1 +F2=224 +Wave2=1 +Track2=1 +Method=2 +Param=50 +Envelope1=0,100 11897,56 43624,27 101525,11 186394,0 +Envelope2=0,32 70592,33 194326,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=7 diff --git a/src/samples/drumsynth/misc/rm.ds b/src/samples/drumsynth/misc/rm.ds new file mode 100644 index 0000000..0de6197 --- /dev/null +++ b/src/samples/drumsynth/misc/rm.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1000 +F2=100 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=2000 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=91 +Envelope1=0,0 6108,0 8343,89 13781,90 13781,0 +Envelope2=0,100 5140,95 7673,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/rubber_'82.ds b/src/samples/drumsynth/misc/rubber_'82.ds new file mode 100644 index 0000000..9868f35 --- /dev/null +++ b/src/samples/drumsynth/misc/rubber_'82.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=1 +HighPass=1 +Resonance=32 +FilterEnv=0,10 9844,77 22986,39 442000,100 443000,0 + +[Tone] +On=1 +Level=156 +F1=200 +F2=50 +Droop=84 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=0 +Level=119 +Slope=100 +Envelope=0,0 0,98 635,53 2459,25 6028,10 10311,5 16498,1 26095,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=166 +F1=200 +Wave1=0 +Track1=0 +F2=745 +Wave2=2 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 2199,80 5047,56 9144,39 19788,19 23036,0 +Envelope2=0,100 2349,59 7395,20 22236,0 +Filter=0 + +[NoiseBand] +On=0 +Level=67 +F=20000 +dF=52 +Envelope=0,0 7,100 1788,56 3331,30 6742,13 10628,5 16181,0 + +[NoiseBand2] +On=1 +Level=181 +F=59 +dF=3 +Envelope=0,100 200,53 5147,11 13442,4 22086,0 + +[Distortion] +On=1 +Clipping=26 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/rubbery_deep_house_kick.ds b/src/samples/drumsynth/misc/rubbery_deep_house_kick.ds new file mode 100644 index 0000000..c1feca4 --- /dev/null +++ b/src/samples/drumsynth/misc/rubbery_deep_house_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-2 +Stretch=100.0 +Level=9 +Filter=1 +HighPass=0 +Resonance=33 +FilterEnv=0,88 317,53 857,29 1904,10 4093,2 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=150 +F2=20 +Droop=46 +Phase=120 +Envelope=0,99 654,47 1527,26 2875,11 4204,4 4937,2 9657,0 + +[Noise] +On=0 +Level=181 +Slope=-29 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=174 +F1=50 +Wave1=4 +Track1=0 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=60 +Envelope1=0,100 190,41 635,22 1266,12 1999,5 2855,2 4886,0 +Envelope2=0,96 349,47 1269,19 3046,9 10355,0 +Filter=0 + +[NoiseBand] +On=0 +Level=164 +F=5000 +dF=57 +Envelope=0,98 286,41 603,20 1745,9 3744,3 7868,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/serious_bd.ds b/src/samples/drumsynth/misc/serious_bd.ds new file mode 100644 index 0000000..bfdac21 --- /dev/null +++ b/src/samples/drumsynth/misc/serious_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,55 14691,50 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=50 +Droop=39 +Phase=110 +Envelope=0,0 89,95 899,38 4247,15 21737,0 + +[Noise] +On=0 +Level=146 +Slope=-75 +Envelope=0,0 0,100 4797,3 6296,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=115 +F1=437 +Wave1=0 +Track1=0 +F2=611 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/short_909.ds b/src/samples/drumsynth/misc/short_909.ds new file mode 100644 index 0000000..8042ba8 --- /dev/null +++ b/src/samples/drumsynth/misc/short_909.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,19 444000,100 444000,0 + +[Tone] +On=1 +Level=137 +F1=565 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 1750,20 3579,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,25 507,50 1283,62 1758,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=500 +dF=70 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/simon's_snare.ds b/src/samples/drumsynth/misc/simon's_snare.ds new file mode 100644 index 0000000..b765e22 --- /dev/null +++ b/src/samples/drumsynth/misc/simon's_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-5 +Stretch=120 +Level=14 +Filter=1 +HighPass=0 +Resonance=11 +FilterEnv=0,86 14691,50 442000,100 443000,0 + +[Tone] +On=1 +Level=37 +F1=400 +F2=200 +Droop=28 +Phase=110 +Envelope=0,0 0,100 1904,100 2617,21 3649,0 + +[Noise] +On=1 +Level=117 +Slope=100 +Envelope=0,0 32,97 539,31 1269,11 1840,4 2403,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=115 +F1=437 +Wave1=0 +Track1=0 +F2=800 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=39 +F=5000 +dF=55 +Envelope=0,93 855,49 2074,28 3563,10 5305,4 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=11 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/simple-h.ds b/src/samples/drumsynth/misc/simple-h.ds new file mode 100644 index 0000000..e6be4db --- /dev/null +++ b/src/samples/drumsynth/misc/simple-h.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=0 +Level=153 +F1=170 +F2=170 +Droop=0 +Phase=0 +Envelope=0,100 1200,16 3375,0 + +[Noise] +On=1 +Level=82 +Slope=100 +Envelope=0,100 900,18 2175,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=136 +F=3000 +dF=28 +Envelope=0,100 19800,100 19950,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=16 +Envelope=0,0 20550,0 20700,100 43200,100 43350,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/simple-k.ds b/src/samples/drumsynth/misc/simple-k.ds new file mode 100644 index 0000000..9ede35d --- /dev/null +++ b/src/samples/drumsynth/misc/simple-k.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=153 +F1=180 +F2=40 +Droop=32 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=53 +Slope=3 +Envelope=0,100 150,13 900,0 + +[Overtones] +On=1 +Level=72 +F1=360 +Wave1=0 +Track1=1 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,100 4725,24 9975,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=0 +Level=136 +F=3000 +dF=28 +Envelope=0,100 19800,100 19950,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=16 +Envelope=0,0 20550,0 20700,100 43200,100 43350,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/simple_click_bd.ds b/src/samples/drumsynth/misc/simple_click_bd.ds new file mode 100644 index 0000000..b7e9041 --- /dev/null +++ b/src/samples/drumsynth/misc/simple_click_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 1904,42 14515,37 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=400 +F2=60 +Droop=47 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=40 +dF=8 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=3 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/skiwlz_snare.ds b/src/samples/drumsynth/misc/skiwlz_snare.ds new file mode 100644 index 0000000..e8ed3ea --- /dev/null +++ b/src/samples/drumsynth/misc/skiwlz_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-7 +Stretch=75 +Level=7 +Filter=1 +HighPass=1 +Resonance=36 +FilterEnv=0,11 9613,11 442000,100 442000,0 + +[Tone] +On=1 +Level=94 +F1=300 +F2=150 +Droop=38 +Phase=0 +Envelope=0,100 1649,47 3198,24 5996,12 10294,0 + +[Noise] +On=1 +Level=121 +Slope=66 +Envelope=0,100 1849,57 4097,26 6346,8 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=2 +Param=41 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=141 +F=6000 +dF=64 +Envelope=0,100 650,61 2250,30 4197,13 7146,5 11243,0 + +[NoiseBand2] +On=1 +Level=104 +F=5000 +dF=48 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6980,5 9994,0 + +[Distortion] +On=1 +Clipping=9 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/slepper_n_the_wilderness.ds b/src/samples/drumsynth/misc/slepper_n_the_wilderness.ds new file mode 100644 index 0000000..9f4cbf2 --- /dev/null +++ b/src/samples/drumsynth/misc/slepper_n_the_wilderness.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-7 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=1 +Level=148 +F1=800 +F2=35 +Droop=43 +Phase=12 +Envelope=0,100 984,49 2221,26 3966,11 8312,0 + +[Noise] +On=1 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=130 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=18 +F=342 +dF=51 +Envelope=0,50 200,29 750,20 1349,11 2299,7 4247,3 9444,0 + +[NoiseBand2] +On=1 +Level=39 +F=334 +dF=49 +Envelope=0,33 456,21 1269,11 2657,5 4521,3 10172,0 + +[Distortion] +On=1 +Clipping=20 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc/sloppy_electric.ds b/src/samples/drumsynth/misc/sloppy_electric.ds new file mode 100644 index 0000000..61da8a8 --- /dev/null +++ b/src/samples/drumsynth/misc/sloppy_electric.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=3 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,5 926,15 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=100 +F2=30 +Droop=21 +Phase=00 +Envelope=0,100 457,64 954,36 1510,21 2094,13 7110,0 + +[Noise] +On=0 +Level=30 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=59 +F1=200 +Wave1=4 +Track1=1 +F2=500 +Wave2=0 +Track2=1 +Method=1 +Param=64 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=127 +F=6000 +dF=84 +Envelope=0,100 1066,59 2170,32 2906,16 3959,11 5241,0 + +[NoiseBand2] +On=1 +Level=181 +F=50 +dF=5 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=5 diff --git a/src/samples/drumsynth/misc/smooth_rim.ds b/src/samples/drumsynth/misc/smooth_rim.ds new file mode 100644 index 0000000..a5a42e6 --- /dev/null +++ b/src/samples/drumsynth/misc/smooth_rim.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,0 901,40 444000,100 444000,0 + +[Tone] +On=1 +Level=64 +F1=500 +F2=120 +Droop=50 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=137 +Slope=8 +Envelope=0,100 1333,85 2627,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=4 +Track1=1 +F2=630 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 1250,20 2487,0 +Envelope2=0,100 228,70 508,43 952,25 1675,8 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/snappy_809.ds b/src/samples/drumsynth/misc/snappy_809.ds new file mode 100644 index 0000000..2d48fd8 --- /dev/null +++ b/src/samples/drumsynth/misc/snappy_809.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,29 3649,44 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=500 +F2=174 +Droop=42 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=149 +Slope=53 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=113 +F=3800 +dF=100 +Envelope=0,100 596,38 2801,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/softsnare.ds b/src/samples/drumsynth/misc/softsnare.ds new file mode 100644 index 0000000..4521b62 --- /dev/null +++ b/src/samples/drumsynth/misc/softsnare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=150 +Droop=15 +Phase=0 +Envelope=0,100 1199,46 3798,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 5996,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/sounding_kick.ds b/src/samples/drumsynth/misc/sounding_kick.ds new file mode 100644 index 0000000..0b826bc --- /dev/null +++ b/src/samples/drumsynth/misc/sounding_kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=13 +FilterEnv=0,36 3048,31 442000,100 442000,0 + +[Tone] +On=1 +Level=141 +F1=500 +F2=25 +Droop=35 +Phase=40 +Envelope=0,100 1749,22 4997,0 + +[Noise] +On=0 +Level=85 +Slope=92 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=131 +F1=200 +Wave1=3 +Track1=1 +F2=6399 +Wave2=3 +Track2=1 +Method=2 +Param=66 +Envelope1=0,100 1639,21 5215,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=25 +F=600 +dF=49 +Envelope=0,34 206,68 570,68 1663,68 1916,84 2898,40 3798,84 3832,50 4054,26 7346,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=11 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/sounds_like_a_low_tom.ds b/src/samples/drumsynth/misc/sounds_like_a_low_tom.ds new file mode 100644 index 0000000..cd21cc8 --- /dev/null +++ b/src/samples/drumsynth/misc/sounds_like_a_low_tom.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=75 +Level=6 +Filter=0 +HighPass=1 +Resonance=33 +FilterEnv=0,0 1713,4 3426,12 5552,35 8598,83 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=76 +F1=200 +F2=65 +Droop=53 +Phase=180 +Envelope=0,99 750,74 1499,49 2149,40 3048,31 4447,25 7046,19 11843,8 16890,0 + +[Noise] +On=1 +Level=39 +Slope=-40 +Envelope=0,100 10,22 41,10 105,2 213,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=440 +Wave1=1 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=1 +Param=55 +Envelope1=0,0 1396,2 2602,0 +Envelope2=0,0 4886,2 7773,0 9930,0 11802,0 +Filter=0 + +[NoiseBand] +On=1 +Level=82 +F=120 +dF=42 +Envelope=0,98 150,32 286,20 603,13 999,5 1649,2 3348,1 7868,0 + +[NoiseBand2] +On=1 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=1 +Clipping=16 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/special_man_bass_drum.ds b/src/samples/drumsynth/misc/special_man_bass_drum.ds new file mode 100644 index 0000000..2a7c49b --- /dev/null +++ b/src/samples/drumsynth/misc/special_man_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,0 13452,8 21193,1 444000,100 444000,0 + +[Tone] +On=1 +Level=148 +F1=700 +F2=43 +Droop=59 +Phase=0 +Envelope=0,100 2538,26 6345,5 10500,0 + +[Noise] +On=1 +Level=36 +Slope=-79 +Envelope=0,100 400,17 1249,5 2792,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=113 +F1=80 +Wave1=0 +Track1=1 +F2=300 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=50 +dF=13 +Envelope=0,100 1396,42 2250,30 3553,15 5965,3 13960,0 + +[NoiseBand2] +On=1 +Level=65 +F=120 +dF=23 +Envelope=0,100 635,44 2031,23 4442,13 7107,3 10533,0 + +[Distortion] +On=1 +Clipping=0 +Bits=5 +Rate=4 diff --git a/src/samples/drumsynth/misc/splatter.ds b/src/samples/drumsynth/misc/splatter.ds new file mode 100644 index 0000000..d6971c3 --- /dev/null +++ b/src/samples/drumsynth/misc/splatter.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=120 +Level=3 +Filter=0 +HighPass=1 +Resonance=4 +FilterEnv=0,8 65,15 442000,100 443000,0 + +[Tone] +On=0 +Level=128 +F1=180 +F2=40 +Droop=43 +Phase=10 +Envelope=0,0 0,41 715,39 4228,21 22526,0 + +[Noise] +On=1 +Level=100 +Slope=81 +Envelope=0,0 268,100 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=11 +F1=360 +Wave1=1 +Track1=0 +F2=60 +Wave2=2 +Track2=0 +Method=1 +Param=46 +Envelope1=0,100 1490,17 22367,0 +Envelope2=0,100 3252,66 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=61 +F=385 +dF=31 +Envelope=0,63 670,21 1788,4 5810,0 + +[NoiseBand2] +On=1 +Level=128 +F=1000 +dF=82 +Envelope=0,0 115,14 1039,11 1504,0 + +[Distortion] +On=1 +Clipping=28 +Bits=0 +Rate=3 diff --git a/src/samples/drumsynth/misc/sticky_q_kick.ds b/src/samples/drumsynth/misc/sticky_q_kick.ds new file mode 100644 index 0000000..259b745 --- /dev/null +++ b/src/samples/drumsynth/misc/sticky_q_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=2 +Stretch=200 +Level=2 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,0 888,2 1650,6 2126,17 8598,83 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=10000 +F2=30 +Droop=75 +Phase=0 +Envelope=0,99 654,47 1527,26 2126,16 2697,9 3490,5 4283,3 5267,2 9657,0 + +[Noise] +On=0 +Level=181 +Slope=-29 +Envelope=0,100 30,32 85,23 135,16 245,8 381,3 1192,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=110 +Wave1=4 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=49 +Envelope1=0,0 2253,6 4886,0 +Envelope2=0,0 1967,4 9359,53 9930,0 11802,0 +Filter=0 + +[NoiseBand] +On=0 +Level=164 +F=5000 +dF=57 +Envelope=0,98 286,41 603,20 1745,9 3744,3 7868,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc/stiffy_snare.ds b/src/samples/drumsynth/misc/stiffy_snare.ds new file mode 100644 index 0000000..565a4a6 --- /dev/null +++ b/src/samples/drumsynth/misc/stiffy_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=32 +F1=160 +F2=150 +Droop=12 +Phase=120 +Envelope=0,99 1015,32 2316,9 4949,1 6630,0 + +[Noise] +On=1 +Level=164 +Slope=5 +Envelope=0,100 656,58 2335,41 3198,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=876 +Wave1=0 +Track1=0 +F2=1356 +Wave2=0 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1266,31 4470,26 10578,0 +Envelope2=0,100 894,45 3278,30 10355,0 +Filter=0 + +[NoiseBand] +On=1 +Level=161 +F=100 +dF=35 +Envelope=0,98 1174,5 3649,0 10578,0 + +[NoiseBand2] +On=1 +Level=74 +F=500 +dF=31 +Envelope=0,100 127,35 603,16 2728,2 5108,0 + +[Distortion] +On=1 +Clipping=0 +Bits=3 +Rate=1 diff --git a/src/samples/drumsynth/misc/sweet_tight_snare.ds b/src/samples/drumsynth/misc/sweet_tight_snare.ds new file mode 100644 index 0000000..213130e --- /dev/null +++ b/src/samples/drumsynth/misc/sweet_tight_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=92 +F1=600 +F2=100 +Droop=30 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=146 +Slope=10 +Envelope=0,100 500,20 1694,2 2597,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/tchak_snare.ds b/src/samples/drumsynth/misc/tchak_snare.ds new file mode 100644 index 0000000..ccf605b --- /dev/null +++ b/src/samples/drumsynth/misc/tchak_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,11 6092,5 442000,100 442000,0 + +[Tone] +On=1 +Level=156 +F1=5633 +F2=100 +Droop=49 +Phase=0 +Envelope=0,100 2126,20 5616,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 2887,24 5425,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 1174,18 4632,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=1 +Level=146 +F=122 +dF=17 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=101 +F=3100 +dF=60 +Envelope=0,100 1079,11 4500,0 + +[Distortion] +On=1 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/terror_n_yr_hood_snare.ds b/src/samples/drumsynth/misc/terror_n_yr_hood_snare.ds new file mode 100644 index 0000000..4cbd8a1 --- /dev/null +++ b/src/samples/drumsynth/misc/terror_n_yr_hood_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=9 +Filter=0 +HighPass=0 +Resonance=6 +FilterEnv=0,23 442000,100 443000,0 + +[Tone] +On=1 +Level=22 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 635,26 2221,8 6481,0 + +[Noise] +On=0 +Level=100 +Slope=70 +Envelope=0,0 268,100 723,86 723,26 1348,19 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=63 +F=400 +dF=34 +Envelope=0,99 670,80 670,21 1788,4 5810,0 + +[NoiseBand2] +On=1 +Level=158 +F=3000 +dF=89 +Envelope=0,64 793,52 1348,27 3547,0 + +[Distortion] +On=1 +Clipping=7 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc/test.ds b/src/samples/drumsynth/misc/test.ds new file mode 100644 index 0000000..14352d3 --- /dev/null +++ b/src/samples/drumsynth/misc/test.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1203,0 1425,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,0 2565,0 3009,100 3769,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,0 1219,0 1219,100 2597,0 2597,0 +Envelope2=0,0 1251,0 1488,100 2581,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=40 +Envelope=0,0 3800,0 3800,98 4180,80 4370,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=40 +Envelope=0,0 4386,0 4481,83 4925,97 4925,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/think_bd.ds b/src/samples/drumsynth/misc/think_bd.ds new file mode 100644 index 0000000..83a4025 --- /dev/null +++ b/src/samples/drumsynth/misc/think_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=9 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,5 926,15 442000,100 442000,0 + +[Tone] +On=1 +Level=108 +F1=100 +F2=70 +Droop=85 +Phase=00 +Envelope=0,100 457,64 954,36 1510,21 2094,13 5152,0 + +[Noise] +On=1 +Level=30 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=45 +F1=200 +Wave1=0 +Track1=1 +F2=50 +Wave2=0 +Track2=0 +Method=1 +Param=18 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=127 +F=6000 +dF=84 +Envelope=0,100 1066,59 2170,32 2906,16 3959,11 5241,0 + +[NoiseBand2] +On=1 +Level=121 +F=50 +dF=5 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=17 +Bits=4 +Rate=5 diff --git a/src/samples/drumsynth/misc/think_sn_1.ds b/src/samples/drumsynth/misc/think_sn_1.ds new file mode 100644 index 0000000..5e9ae0a --- /dev/null +++ b/src/samples/drumsynth/misc/think_sn_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,5 926,15 442000,100 442000,0 + +[Tone] +On=1 +Level=100 +F1=300 +F2=70 +Droop=6 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=41 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=127 +F=6000 +dF=84 +Envelope=0,100 1066,59 2170,32 2906,16 3959,11 5241,0 + +[NoiseBand2] +On=1 +Level=76 +F=200 +dF=30 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/think_sn_2.ds b/src/samples/drumsynth/misc/think_sn_2.ds new file mode 100644 index 0000000..923f9d7 --- /dev/null +++ b/src/samples/drumsynth/misc/think_sn_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,5 926,15 442000,100 442000,0 + +[Tone] +On=1 +Level=108 +F1=300 +F2=70 +Droop=6 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=30 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=156 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=127 +F=6000 +dF=84 +Envelope=0,100 1066,59 2170,32 2906,16 3959,11 5241,0 + +[NoiseBand2] +On=1 +Level=76 +F=200 +dF=30 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/this_snare_spells_electronic.ds b/src/samples/drumsynth/misc/this_snare_spells_electronic.ds new file mode 100644 index 0000000..7080944 --- /dev/null +++ b/src/samples/drumsynth/misc/this_snare_spells_electronic.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=-1 +Filter=0 +HighPass=1 +Resonance=31 +FilterEnv=0,14 9518,20 442000,100 442000,0 + +[Tone] +On=1 +Level=51 +F1=230 +F2=116 +Droop=60 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=113 +Slope=97 +Envelope=0,92 4500,30 11897,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=2 +Param=41 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=30 +F=5000 +dF=46 +Envelope=0,68 3046,49 4500,30 11929,0 + +[NoiseBand2] +On=0 +Level=133 +F=1600 +dF=78 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6980,5 9994,0 + +[Distortion] +On=0 +Clipping=4 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/tomita_clip.ds b/src/samples/drumsynth/misc/tomita_clip.ds new file mode 100644 index 0000000..3284dad --- /dev/null +++ b/src/samples/drumsynth/misc/tomita_clip.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,5 926,15 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=40 +Droop=65 +Phase=00 +Envelope=0,100 571,59 1237,36 1999,19 3109,10 5965,5 12437,0 + +[Noise] +On=0 +Level=30 +Slope=10 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=59 +F1=200 +Wave1=4 +Track1=1 +F2=500 +Wave2=0 +Track2=1 +Method=1 +Param=64 +Envelope1=0,100 1713,48 2221,11 2974,8 11422,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=32 +F=8000 +dF=51 +Envelope=0,100 286,1 1777,0 2982,0 + +[NoiseBand2] +On=1 +Level=181 +F=50 +dF=7 +Envelope=0,100 349,49 1142,19 2602,7 5076,3 10565,2 14214,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=5 diff --git a/src/samples/drumsynth/misc/tone.ds b/src/samples/drumsynth/misc/tone.ds new file mode 100644 index 0000000..f8f66cd --- /dev/null +++ b/src/samples/drumsynth/misc/tone.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/tone_deg.ds b/src/samples/drumsynth/misc/tone_deg.ds new file mode 100644 index 0000000..6a60a53 --- /dev/null +++ b/src/samples/drumsynth/misc/tone_deg.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1000 +F2=1000 +Droop=0 +Phase=0 +Envelope=0,100 1862,51 18623,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc/tone_snare.ds b/src/samples/drumsynth/misc/tone_snare.ds new file mode 100644 index 0000000..c3e18c9 --- /dev/null +++ b/src/samples/drumsynth/misc/tone_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=7 +FilterEnv=0,6 1699,14 2948,25 4297,41 5647,57 442000,100 443000,0 + +[Tone] +On=1 +Level=119 +F1=450 +F2=230 +Droop=27 +Phase=-45 +Envelope=0,100 760,87 1937,18 4991,0 12142,0 + +[Noise] +On=1 +Level=150 +Slope=-5 +Envelope=0,100 521,24 2384,11 5661,3 5810,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=162 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=3 +Param=4 +Envelope1=0,100 1949,39 6596,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=154 +F=500 +dF=78 +Envelope=0,20 745,96 1490,36 3203,12 8194,11 9461,5 11025,0 + +[NoiseBand2] +On=1 +Level=166 +F=700 +dF=44 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/transient_snare.ds b/src/samples/drumsynth/misc/transient_snare.ds new file mode 100644 index 0000000..c8f24b0 --- /dev/null +++ b/src/samples/drumsynth/misc/transient_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-1 +Stretch=300 +Level=0 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,0 0,19 301,38 3927,8 442000,100 443000,0 + +[Tone] +On=0 +Level=36 +F1=100 +F2=155 +Droop=42 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=150 +Slope=75 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=28 +F1=100 +Wave1=0 +Track1=0 +F2=100 +Wave2=4 +Track2=0 +Method=0 +Param=21 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=37 +F=2310 +dF=100 +Envelope=0,0 0,98 507,43 1788,19 3486,0 + +[NoiseBand2] +On=1 +Level=181 +F=11 +dF=100 +Envelope=0,100 839,35 1900,8 4402,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc/trashyovertones.ds b/src/samples/drumsynth/misc/trashyovertones.ds new file mode 100644 index 0000000..50c3ae1 --- /dev/null +++ b/src/samples/drumsynth/misc/trashyovertones.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,18 444000,100 444000,0 + +[Tone] +On=1 +Level=133 +F1=160 +F2=140 +Droop=55 +Phase=30 +Envelope=0,100 3448,27 10500,0 + +[Noise] +On=1 +Level=166 +Slope=-42 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=200 +Wave1=0 +Track1=0 +F2=11 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 11543,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=84 +Envelope=0,100 2099,58 5447,36 11343,0 + +[NoiseBand2] +On=1 +Level=158 +F=3100 +dF=94 +Envelope=0,100 750,47 2199,20 5047,5 10993,0 + +[Distortion] +On=1 +Clipping=6 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc/type_snare.ds b/src/samples/drumsynth/misc/type_snare.ds new file mode 100644 index 0000000..a924f5a --- /dev/null +++ b/src/samples/drumsynth/misc/type_snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,0 635,9 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=250 +F2=250 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=152 +Slope=77 +Envelope=0,100 1824,26 3728,9 7218,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=45 +F1=700 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=2 +Param=52 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=152 +F=1200 +dF=61 +Envelope=0,100 750,20 6663,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=40 +Envelope=0,100 555,33 1500,20 3728,7 6821,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/ultra_electro_bd.ds b/src/samples/drumsynth/misc/ultra_electro_bd.ds new file mode 100644 index 0000000..b0a439c --- /dev/null +++ b/src/samples/drumsynth/misc/ultra_electro_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-3 +Filter=1 +HighPass=0 +Resonance=7 +FilterEnv=0,100 1172,9 1916,9 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=1 +Level=128 +Slope=-18 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=160 +F=200 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/usgae_bd.ds b/src/samples/drumsynth/misc/usgae_bd.ds new file mode 100644 index 0000000..3045a04 --- /dev/null +++ b/src/samples/drumsynth/misc/usgae_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,81 538,17 1678,3 444000,100 444000,0 + +[Tone] +On=1 +Level=180 +F1=500 +F2=30 +Droop=29 +Phase=90 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=57 +F1=30 +Wave1=4 +Track1=1 +F2=300 +Wave2=4 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 1188,17 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=11 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc/verby_soundin_808.ds b/src/samples/drumsynth/misc/verby_soundin_808.ds new file mode 100644 index 0000000..01716ac --- /dev/null +++ b/src/samples/drumsynth/misc/verby_soundin_808.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=1 +Level=148 +F1=120 +F2=50 +Droop=71 +Phase=12 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=158 +F1=130 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=1 +Param=47 +Envelope1=0,100 444,47 1250,20 3363,3 6250,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=50 +dF=13 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 21193,5 69672,0 + +[NoiseBand2] +On=1 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 68910,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc/very_basic_snare.ds b/src/samples/drumsynth/misc/very_basic_snare.ds new file mode 100644 index 0000000..5f4659b --- /dev/null +++ b/src/samples/drumsynth/misc/very_basic_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,29 3649,44 442000,100 443000,0 + +[Tone] +On=1 +Level=123 +F1=300 +F2=180 +Droop=42 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=149 +Slope=14 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=5000 +dF=100 +Envelope=0,0 0,98 507,43 1788,19 3486,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 839,35 2502,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/verylong.ds b/src/samples/drumsynth/misc/verylong.ds new file mode 100644 index 0000000..f228a57 --- /dev/null +++ b/src/samples/drumsynth/misc/verylong.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 14899,35 43206,19 373956,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,0 17878,12 17878,71 29797,38 61084,25 92372,4 186233,2 248807,4 271155,15 290524,24 294993,73 311382,27 344159,20 344159,54 357568,10 375446,17 414182,0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=85 +Envelope1=0,0 159416,68 326280,0 +Envelope2=0,0 140047,0 385875,77 429081,0 + +[NoiseBand] +On=1 +Level=128 +F=630 +dF=50 +Envelope=0,0 40226,0 56615,25 68534,62 89392,41 107270,84 125149,67 134088,27 184743,0 184743,41 207091,0 320321,0 320321,46 330750,0 394814,0 394814,35 414182,0 + +[NoiseBand2] +On=1 +Level=128 +F=3150 +dF=50 +Envelope=0,0 71514,0 86412,16 101311,28 126639,13 143027,3 227949,0 227949,29 232419,51 257747,60 280095,54 311382,38 336709,21 363527,8 396304,12 432061,31 438020,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/warm_deep_house_kick.ds b/src/samples/drumsynth/misc/warm_deep_house_kick.ds new file mode 100644 index 0000000..401ed78 --- /dev/null +++ b/src/samples/drumsynth/misc/warm_deep_house_kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=1 +Stretch=100 +Level=10 +Filter=1 +HighPass=0 +Resonance=42 +FilterEnv=0,97 3426,12 5996,15 8598,3 9444,0 10184,1 442000,100 443000,0 + +[Tone] +On=1 +Level=131 +F1=200 +F2=30 +Droop=41 +Phase=180 +Envelope=0,99 750,74 1499,49 2149,40 3048,31 4447,25 7046,19 11843,8 16890,0 + +[Noise] +On=1 +Level=16 +Slope=-75 +Envelope=0,100 250,22 450,11 650,4 1149,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=55 +Wave2=2 +Track2=0 +Method=0 +Param=55 +Envelope1=0,0 3348,20 7445,0 +Envelope2=0,0 7246,23 11802,0 +Filter=0 + +[NoiseBand] +On=1 +Level=158 +F=50 +dF=4 +Envelope=0,0 2099,14 6696,30 7868,0 + +[NoiseBand2] +On=0 +Level=45 +F=200 +dF=66 +Envelope=0,100 100,30 476,8 3712,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/warm_digi_808_click.ds b/src/samples/drumsynth/misc/warm_digi_808_click.ds new file mode 100644 index 0000000..277474e --- /dev/null +++ b/src/samples/drumsynth/misc/warm_digi_808_click.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=12 +Filter=0 +HighPass=0 +Resonance=79 +FilterEnv=0,98 6425,53 9042,86 11580,50 15149,61 20860,18 37913,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=700 +F2=47 +Droop=78 +Phase=7643 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=0 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=38 +F=55 +dF=8 +Envelope=0,100 9042,35 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=0 +Clipping=32 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc/whoa_bd.ds b/src/samples/drumsynth/misc/whoa_bd.ds new file mode 100644 index 0000000..c476882 --- /dev/null +++ b/src/samples/drumsynth/misc/whoa_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=800 +F2=30 +Droop=69 +Phase=0 +Envelope=0,100 1428,44 5869,16 17608,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=32 +F1=500 +Wave1=0 +Track1=1 +F2=100 +Wave2=0 +Track2=0 +Method=3 +Param=14 +Envelope1=0,35 1666,9 6187,1 16022,0 +Envelope2=0,100 1000,20 18005,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=26 +F=200 +dF=61 +Envelope=0,100 635,9 8249,0 + +[Distortion] +On=1 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/wobble_wobble.ds b/src/samples/drumsynth/misc/wobble_wobble.ds new file mode 100644 index 0000000..a262ead --- /dev/null +++ b/src/samples/drumsynth/misc/wobble_wobble.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=200 +F2=36 +Droop=60 +Phase=12 +Envelope=0,100 2299,63 5896,29 12792,11 26143,3 40483,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=30 +Wave1=0 +Track1=0 +F2=40 +Wave2=2 +Track2=0 +Method=0 +Param=20 +Envelope1=0,74 2665,37 7995,18 37691,0 +Envelope2=0,100 5330,23 12818,5 35153,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/wobbly_thumb_bd.ds b/src/samples/drumsynth/misc/wobbly_thumb_bd.ds new file mode 100644 index 0000000..bdcac85 --- /dev/null +++ b/src/samples/drumsynth/misc/wobbly_thumb_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=5 +Filter=1 +HighPass=0 +Resonance=54 +FilterEnv=0,100 397,33 1031,11 12691,0 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=300 +F2=50 +Droop=65 +Phase=0 +Envelope=0,100 1031,59 2617,42 4759,32 8328,20 13722,8 28554,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=172 +F1=54 +Wave1=0 +Track1=0 +F2=25 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 2697,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=40 +Envelope=0,2 8963,1 19274,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc/yet_another_electric_bass_drum.ds b/src/samples/drumsynth/misc/yet_another_electric_bass_drum.ds new file mode 100644 index 0000000..97e90a5 --- /dev/null +++ b/src/samples/drumsynth/misc/yet_another_electric_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,74 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=100 +F2=40 +Droop=47 +Phase=0 +Envelope=0,100 508,49 3680,19 12310,7 33884,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=134 +F1=440 +Wave1=4 +Track1=0 +F2=220 +Wave2=4 +Track2=0 +Method=1 +Param=82 +Envelope1=0,100 635,52 1523,31 3680,6 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=15 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc/yr_808_hummer.ds b/src/samples/drumsynth/misc/yr_808_hummer.ds new file mode 100644 index 0000000..be68b32 --- /dev/null +++ b/src/samples/drumsynth/misc/yr_808_hummer.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=200 +Level=4 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,3 442000,100 443000,0 + +[Tone] +On=1 +Level=157 +F1=470 +F2=50 +Droop=69 +Phase=17 +Envelope=0,100 3728,43 8883,16 15070,11 24826,4 41879,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc/zoom#4.ds b/src/samples/drumsynth/misc/zoom#4.ds new file mode 100644 index 0000000..f718055 --- /dev/null +++ b/src/samples/drumsynth/misc/zoom#4.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=20.0 +Stretch=6800.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 11681,0 340610,0 340610,65 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=90 +F2=10 +Droop=90 +Phase=360 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=1 +Level=181 +F1=200 +Wave1=4 +Track1=1 +F2=125 +Wave2=2 +Track2=1 +Filter=1 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=125 +dF=100 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/a_day_in_the_noise.ds b/src/samples/drumsynth/misc_bass/a_day_in_the_noise.ds new file mode 100644 index 0000000..8424174 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/a_day_in_the_noise.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=79 +FilterEnv=0,98 6425,53 9042,86 11580,50 15149,61 20860,18 37913,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=500 +F2=110 +Droop=48 +Phase=7643 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=0 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=55 +dF=8 +Envelope=0,100 9042,35 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=32 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/bumble_bass.ds b/src/samples/drumsynth/misc_bass/bumble_bass.ds new file mode 100644 index 0000000..bd84cea --- /dev/null +++ b/src/samples/drumsynth/misc_bass/bumble_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,0 6345,2 12929,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=5632 +F2=65.406 +Droop=75 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=1 +F2=130.813 +Wave2=3 +Track2=0 +Method=2 +Param=60 +Envelope1=0,100 3048,26 11643,0 +Envelope2=0,100 5235,80 11543,0 +Filter=1 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/depth_bass_drum.ds b/src/samples/drumsynth/misc_bass/depth_bass_drum.ds new file mode 100644 index 0000000..352ecf7 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/depth_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=12 +Filter=0 +HighPass=1 +Resonance=55 +FilterEnv=0,2 442000,100 442000,0 + +[Tone] +On=1 +Level=99 +F1=440 +F2=50 +Droop=56 +Phase=65 +Envelope=0,100 5996,25 14741,0 22886,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=56 +F1=110 +Wave1=0 +Track1=1 +F2=110 +Wave2=2 +Track2=0 +Method=2 +Param=87 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/dirty_a.ds b/src/samples/drumsynth/misc_bass/dirty_a.ds new file mode 100644 index 0000000..ad9b493 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/dirty_a.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=8000 +F2=55 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/filter_idea_bd.ds b/src/samples/drumsynth/misc_bass/filter_idea_bd.ds new file mode 100644 index 0000000..220eb2c --- /dev/null +++ b/src/samples/drumsynth/misc_bass/filter_idea_bd.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=4 +Filter=1 +HighPass=0 +Resonance=8 +FilterEnv=0,100 1650,62 4442,33 10026,16 21320,8 34011,5 59138,0 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=45 +Droop=76 +Phase=00 +Envelope=0,100 2031,53 3046,36 6345,21 14721,13 32996,7 55204,0 + +[Noise] +On=1 +Level=30 +Slope=-94 +Envelope=0,11 43307,2 90183,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=34 +F1=500 +Wave1=4 +Track1=1 +F2=500 +Wave2=4 +Track2=1 +Method=1 +Param=64 +Envelope1=0,39 59487,0 +Envelope2=0,100 79713,28 94228,0 +Filter=0 + +[NoiseBand] +On=1 +Level=32 +F=400 +dF=40 +Envelope=0,100 714,13 4500,0 4500,0 + +[NoiseBand2] +On=0 +Level=181 +F=45 +dF=7 +Envelope=0,100 508,50 1500,30 4061,14 8249,5 27666,2 42514,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/jarre_bass_drum.ds b/src/samples/drumsynth/misc_bass/jarre_bass_drum.ds new file mode 100644 index 0000000..950862f --- /dev/null +++ b/src/samples/drumsynth/misc_bass/jarre_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=12 +Filter=0 +HighPass=1 +Resonance=5 +FilterEnv=0,95 1399,50 4197,23 7246,11 12492,6 442000,100 442000,0 + +[Tone] +On=1 +Level=99 +F1=110 +F2=50 +Droop=76 +Phase=65 +Envelope=0,100 5996,25 14741,0 22886,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=56 +F1=110 +Wave1=0 +Track1=1 +F2=110 +Wave2=2 +Track2=1 +Method=1 +Param=87 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/jungle_laser.ds b/src/samples/drumsynth/misc_bass/jungle_laser.ds new file mode 100644 index 0000000..cf8912a --- /dev/null +++ b/src/samples/drumsynth/misc_bass/jungle_laser.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-18 +Filter=1 +HighPass=0 +Resonance=4 +FilterEnv=0,100 12691,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=220 +F2=55 +Droop=81 +Phase=00 +Envelope=0,100 68212,35 136424,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=220 +Wave1=2 +Track1=0 +F2=5.5 +Wave2=0 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 11897,56 43624,27 101525,11 186394,0 +Envelope2=0,32 70592,33 194326,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=1 +Clipping=37 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/low_end_hum.ds b/src/samples/drumsynth/misc_bass/low_end_hum.ds new file mode 100644 index 0000000..7ba1e9c --- /dev/null +++ b/src/samples/drumsynth/misc_bass/low_end_hum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=9 +FilterEnv=0,87 2300,2 17767,0 442000,100 442000,0 + +[Tone] +On=1 +Level=28 +F1=700 +F2=20 +Droop=18 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=55 +F1=95 +Wave1=0 +Track1=0 +F2=800 +Wave2=3 +Track2=1 +Method=1 +Param=50 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=45 +dF=8 +Envelope=0,100 2250,30 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=17 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/melodictone.ds b/src/samples/drumsynth/misc_bass/melodictone.ds new file mode 100644 index 0000000..2e4b374 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/melodictone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=11 +FilterEnv=0,80 444000,100 444000,0 + +[Tone] +On=1 +Level=133 +F1=440 +F2=440 +Droop=55 +Phase=30 +Envelope=0,100 4597,91 10500,0 + +[Noise] +On=0 +Level=92 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=220 +Wave1=0 +Track1=0 +F2=110 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 1949,59 4497,24 8345,12 14941,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=0 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=0 +Level=96 +F=3100 +dF=100 +Envelope=0,100 200,35 450,15 1849,5 4997,0 + +[Distortion] +On=0 +Clipping=6 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/metal_bass.ds b/src/samples/drumsynth/misc_bass/metal_bass.ds new file mode 100644 index 0000000..88a31aa --- /dev/null +++ b/src/samples/drumsynth/misc_bass/metal_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,0 6345,2 12929,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=65.406 +F2=65.406 +Droop=15 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=1 +Track1=0 +F2=130.813 +Wave2=0 +Track2=0 +Method=1 +Param=90 +Envelope1=0,100 3048,26 11643,0 +Envelope2=0,100 5235,80 11543,0 +Filter=1 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=12 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/more_bass.ds b/src/samples/drumsynth/misc_bass/more_bass.ds new file mode 100644 index 0000000..da5189d --- /dev/null +++ b/src/samples/drumsynth/misc_bass/more_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=56 +Slope=22 +Envelope=0,71 586,27 5996,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=110 +Wave1=0 +Track1=1 +F2=220 +Wave2=1 +Track2=0 +Method=1 +Param=20 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=3000 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=41 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=27 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/more_bass_2.ds b/src/samples/drumsynth/misc_bass/more_bass_2.ds new file mode 100644 index 0000000..ed779b8 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/more_bass_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=880 +F2=55 +Droop=100 +Phase=0 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=56 +Slope=22 +Envelope=0,71 586,27 5996,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=110 +Wave1=0 +Track1=0 +F2=220 +Wave2=1 +Track2=1 +Method=1 +Param=20 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=3000 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=41 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=27 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/rubber.ds b/src/samples/drumsynth/misc_bass/rubber.ds new file mode 100644 index 0000000..5910c8a --- /dev/null +++ b/src/samples/drumsynth/misc_bass/rubber.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,100 1110,20 2221,6 12532,0 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=5632 +F2=65.406 +Droop=75 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=1 +F2=130.813 +Wave2=0 +Track2=0 +Method=2 +Param=60 +Envelope1=0,100 4124,41 14118,8 28237,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=2332 +dF=7 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=155 +F=3100 +dF=10 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/smooth_bass.ds b/src/samples/drumsynth/misc_bass/smooth_bass.ds new file mode 100644 index 0000000..b6f8fc1 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/smooth_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=20 +FilterEnv=0,0 37041,3 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=2000 +F2=50 +Droop=70 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=50 +Wave2=2 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 13325,37 39420,0 +Filter=0 + +[NoiseBand] +On=0 +Level=56 +F=210 +dF=60 +Envelope=0,44 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_bass/solid.ds b/src/samples/drumsynth/misc_bass/solid.ds new file mode 100644 index 0000000..3267000 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/solid.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=-3 +Filter=0 +HighPass=1 +Resonance=73 +FilterEnv=0,98 4838,23 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 22526,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=100 +Wave1=0 +Track1=1 +F2=5 +Wave2=4 +Track2=1 +Method=2 +Param=70 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=15 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/synthbass.ds b/src/samples/drumsynth/misc_bass/synthbass.ds new file mode 100644 index 0000000..57a9ea3 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/synthbass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=53 +FilterEnv=0,78 6896,13 444000,100 444000,0 + +[Tone] +On=1 +Level=30 +F1=440 +F2=440 +Droop=55 +Phase=30 +Envelope=0,100 4597,91 10500,0 + +[Noise] +On=0 +Level=92 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=133 +F1=220 +Wave1=4 +Track1=0 +F2=110 +Wave2=4 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 1949,59 4497,24 8345,12 14941,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=0 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=0 +Level=96 +F=3100 +dF=100 +Envelope=0,100 200,35 450,15 1849,5 4997,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=6 diff --git a/src/samples/drumsynth/misc_bass/the_funk.ds b/src/samples/drumsynth/misc_bass/the_funk.ds new file mode 100644 index 0000000..378ac07 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/the_funk.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=3 +Filter=1 +HighPass=0 +Resonance=79 +FilterEnv=0,98 6425,53 9042,86 11580,50 15149,61 20860,18 37913,0 442000,100 442000,0 + +[Tone] +On=0 +Level=73 +F1=700 +F2=20 +Droop=18 +Phase=7643 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=3 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=55 +dF=8 +Envelope=0,100 9042,35 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=32 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_bass/warm_bass.ds b/src/samples/drumsynth/misc_bass/warm_bass.ds new file mode 100644 index 0000000..9c518f3 --- /dev/null +++ b/src/samples/drumsynth/misc_bass/warm_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=20 +FilterEnv=0,0 37041,3 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=2000 +F2=50 +Droop=70 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=880 +Wave1=0 +Track1=1 +F2=110 +Wave2=2 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 13325,37 39420,0 +Filter=0 + +[NoiseBand] +On=0 +Level=56 +F=210 +dF=60 +Envelope=0,44 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/big_beat_clap.ds b/src/samples/drumsynth/misc_claps/big_beat_clap.ds new file mode 100644 index 0000000..e444044 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/big_beat_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=80 +Level=0 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,21 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=100 +Slope=-40 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 2935,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=2000 +dF=72 +Envelope=0,99 104,38 432,18 440,100 521,30 879,14 894,100 1028,26 1333,9 1333,98 2309,27 3490,6 4362,0 5631,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=21 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/bright_clap.ds b/src/samples/drumsynth/misc_claps/bright_clap.ds new file mode 100644 index 0000000..dd19660 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/bright_clap.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,23 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=76 +Slope=46 +Envelope=0,100 500,20 586,97 728,84 808,19 1140,35 1172,99 1425,86 1536,18 1900,41 1900,98 2264,72 2344,21 2644,32 2708,92 2850,65 3832,26 5305,17 8297,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=80 +F=2000 +dF=62 +Envelope=0,100 396,20 649,97 808,85 871,14 1172,36 1235,98 1409,77 1647,14 1900,35 1995,93 2217,65 2359,12 2644,32 2708,92 3119,59 4529,11 7648,0 + +[NoiseBand2] +On=1 +Level=139 +F=4000 +dF=81 +Envelope=0,100 428,16 507,98 728,76 808,30 950,22 1140,35 1283,95 1393,74 1615,14 1869,35 2059,98 2185,65 2344,13 2613,35 2834,96 3135,38 3626,17 7775,0 + +[Distortion] +On=0 +Clipping=1 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_claps/clap.ds b/src/samples/drumsynth/misc_claps/clap.ds new file mode 100644 index 0000000..c13c2bc --- /dev/null +++ b/src/samples/drumsynth/misc_claps/clap.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=70 +Level=0 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,10 3880,2 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=-20 +Envelope=0,100 500,20 586,97 728,84 808,19 1140,35 1172,99 1425,86 1536,18 1900,41 1900,98 2264,72 2344,21 2644,32 2708,92 3373,10 4735,2 7522,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=2000 +dF=56 +Envelope=0,100 396,20 649,97 808,85 871,14 1172,36 1235,98 1409,77 1647,14 1900,35 1995,93 2217,65 2359,12 2644,32 2708,92 3373,10 5273,2 7506,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/clap2.ds b/src/samples/drumsynth/misc_claps/clap2.ds new file mode 100644 index 0000000..d0bbb65 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/clap2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=93 +FilterEnv=0,81 6730,100 444000,100 444000,0 + +[Tone] +On=1 +Level=94 +F1=70 +F2=70 +Droop=0 +Phase=0 +Envelope=0,100 165,24 444,6 3783,0 + +[Noise] +On=0 +Level=131 +Slope=0 +Envelope=0,100 507,20 5225,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=158 +F1=140 +Wave1=4 +Track1=0 +F2=115 +Wave2=4 +Track2=0 +Method=3 +Param=51 +Envelope1=0,100 982,100 1251,20 1837,5 3769,0 +Envelope2=0,17 5986,17 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=176 +F=280 +dF=24 +Envelope=0,63 1869,31 6777,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/clap_layer.ds b/src/samples/drumsynth/misc_claps/clap_layer.ds new file mode 100644 index 0000000..693faf5 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/clap_layer.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0.00 +Stretch=30 +Level=0 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,50 2538,49 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=-70 +Envelope=0,100 730,33 1142,49 1301,92 1682,44 2157,32 2157,95 2919,33 3204,43 3236,94 4500,30 8249,8 12405,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 949,69 2898,44 4897,29 6796,17 8745,10 11393,4 17689,0 +Envelope2=0,96 4297,11 5497,41 16240,81 17489,0 +Filter=0 + +[NoiseBand] +On=0 +Level=123 +F=200 +dF=8 +Envelope=0,100 5250,30 10500,0 + +[NoiseBand2] +On=0 +Level=166 +F=3100 +dF=40 +Envelope=0,100 300,65 800,39 1500,20 2349,8 3748,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_claps/classic_clap.ds b/src/samples/drumsynth/misc_claps/classic_clap.ds new file mode 100644 index 0000000..e20b6ad --- /dev/null +++ b/src/samples/drumsynth/misc_claps/classic_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=1 +FilterEnv=0,21 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=131 +Slope=-42 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 2384,16 4023,8 7211,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=59 +F=3250 +dF=64 +Envelope=0,99 104,38 440,0 440,100 521,30 894,0 894,100 1028,26 1333,0 1333,98 1788,28 4097,7 9386,0 + +[NoiseBand2] +On=1 +Level=181 +F=2000 +dF=83 +Envelope=0,100 100,30 443,0 443,95 554,29 839,4 934,97 1061,22 1314,1 1314,96 1774,27 3880,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/electro_clap.ds b/src/samples/drumsynth/misc_claps/electro_clap.ds new file mode 100644 index 0000000..3ce1b56 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/electro_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=71 +FilterEnv=0,6 412,88 681,14 1045,58 1298,18 1314,72 1884,5 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=131 +Slope=-22 +Envelope=0,100 119,34 190,9 301,74 447,17 447,100 536,32 760,62 760,6 886,15 886,100 1013,28 1093,47 1326,12 1326,100 1631,11 1631,33 2027,51 2384,16 4023,8 7211,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=59 +F=3250 +dF=64 +Envelope=0,99 104,38 440,0 440,100 521,30 894,0 894,100 1028,26 1333,0 1333,98 1788,28 4097,7 9386,0 + +[NoiseBand2] +On=1 +Level=181 +F=2000 +dF=83 +Envelope=0,100 100,30 443,0 443,95 554,29 839,4 934,97 1061,22 1314,1 1314,96 1774,27 3880,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/filter_clappy.ds b/src/samples/drumsynth/misc_claps/filter_clappy.ds new file mode 100644 index 0000000..afc81a7 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/filter_clappy.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=80 +Level=4 +Filter=1 +HighPass=1 +Resonance=31 +FilterEnv=0,11 9613,11 442000,100 442000,0 + +[Tone] +On=0 +Level=51 +F1=230 +F2=116 +Droop=60 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 6377,5 13071,0 + +[Noise] +On=1 +Level=113 +Slope=-62 +Envelope=0,68 444,95 1142,24 1555,44 1777,92 2411,18 2836,56 2855,93 3331,29 3609,52 3748,89 4500,30 6314,6 11929,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=200 +Wave1=0 +Track1=0 +F2=240 +Wave2=0 +Track2=0 +Method=2 +Param=41 +Envelope1=0,100 1999,80 2792,42 4251,13 6377,5 8059,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=4000 +dF=87 +Envelope=0,68 773,95 1555,25 2003,40 2003,92 2538,28 2836,56 2855,93 3331,29 3609,52 3748,89 4500,30 11929,0 + +[NoiseBand2] +On=0 +Level=133 +F=1600 +dF=78 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6980,5 9994,0 + +[Distortion] +On=0 +Clipping=4 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_claps/pitch_clap.ds b/src/samples/drumsynth/misc_claps/pitch_clap.ds new file mode 100644 index 0000000..68f954c --- /dev/null +++ b/src/samples/drumsynth/misc_claps/pitch_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=1 +FilterEnv=0,21 2149,58 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=122 +Slope=-64 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 2384,16 4023,8 7211,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=104 +F=1300 +dF=84 +Envelope=0,99 104,38 440,0 440,100 521,30 894,0 894,100 1028,26 1333,0 1333,98 1788,28 2848,3 9386,0 + +[NoiseBand2] +On=1 +Level=181 +F=2000 +dF=100 +Envelope=0,100 100,30 443,0 443,95 554,29 839,4 934,97 1061,22 1314,1 1314,96 1774,27 3880,0 + +[Distortion] +On=1 +Clipping=1 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/pitch_clap_2.ds b/src/samples/drumsynth/misc_claps/pitch_clap_2.ds new file mode 100644 index 0000000..1a44e89 --- /dev/null +++ b/src/samples/drumsynth/misc_claps/pitch_clap_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=31 +FilterEnv=0,21 2149,58 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=122 +Slope=26 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 2384,16 3331,3 6107,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=104 +F=122 +dF=34 +Envelope=0,99 104,38 440,0 440,100 521,30 894,0 894,100 1028,26 1333,0 1333,98 1788,28 2848,3 3966,0 + +[NoiseBand2] +On=1 +Level=181 +F=2000 +dF=100 +Envelope=0,100 100,30 443,0 443,95 554,29 839,4 934,97 1061,22 1314,1 1314,96 1774,27 3880,0 + +[Distortion] +On=1 +Clipping=1 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc_claps/shutter_clap.ds b/src/samples/drumsynth/misc_claps/shutter_clap.ds new file mode 100644 index 0000000..0bc84dc --- /dev/null +++ b/src/samples/drumsynth/misc_claps/shutter_clap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-2 +Stretch=220 +Level=3 +Filter=1 +HighPass=1 +Resonance=22 +FilterEnv=0,38 111,89 325,18 325,89 611,15 627,97 41721,59 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=1 +Level=146 +Slope=46 +Envelope=0,100 111,36 309,16 309,94 484,26 627,15 627,99 769,24 880,10 880,100 1087,20 1515,5 3371,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=111 +F1=380 +Wave1=3 +Track1=0 +F2=200 +Wave2=3 +Track2=0 +Method=3 +Param=27 +Envelope1=0,79 5447,26 9994,7 17489,0 +Envelope2=0,89 39896,89 40531,0 +Filter=0 + +[NoiseBand] +On=1 +Level=144 +F=3000 +dF=71 +Envelope=0,100 111,36 309,16 309,94 484,26 627,15 627,99 769,24 880,10 880,100 1087,20 1515,5 3371,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=12 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_claps/u_don't_kno.ds b/src/samples/drumsynth/misc_claps/u_don't_kno.ds new file mode 100644 index 0000000..965332b --- /dev/null +++ b/src/samples/drumsynth/misc_claps/u_don't_kno.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,26 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=100 +Slope=-40 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 4529,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=2000 +dF=72 +Envelope=0,99 104,38 432,18 440,100 521,30 879,14 894,100 1028,26 1333,9 1333,98 2309,27 3490,6 5552,2 12849,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/'lectro_spliff.ds b/src/samples/drumsynth/misc_electro/'lectro_spliff.ds new file mode 100644 index 0000000..7633b36 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/'lectro_spliff.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=120 +Level=5 +Filter=1 +HighPass=1 +Resonance=34 +FilterEnv=0,2 35153,8 442000,100 443000,0 + +[Tone] +On=0 +Level=37 +F1=360 +F2=114 +Droop=13 +Phase=10 +Envelope=0,5 32869,0 + +[Noise] +On=0 +Level=100 +Slope=21 +Envelope=0,100 1142,39 1396,26 2284,13 4822,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=119 +F1=360 +Wave1=1 +Track1=0 +F2=60 +Wave2=2 +Track2=0 +Method=1 +Param=56 +Envelope1=0,100 2031,65 7107,27 13706,7 22209,2 32996,0 +Envelope2=0,100 3252,66 7077,0 +Filter=0 + +[NoiseBand] +On=1 +Level=40 +F=330 +dF=5 +Envelope=0,100 6599,53 20940,15 34265,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=82 +Envelope=0,0 115,14 1039,11 1504,0 + +[Distortion] +On=1 +Clipping=6 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/a_round_thing.ds b/src/samples/drumsynth/misc_electro/a_round_thing.ds new file mode 100644 index 0000000..b81cabc --- /dev/null +++ b/src/samples/drumsynth/misc_electro/a_round_thing.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=72 +FilterEnv=0,100 10311,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=10000 +F2=50 +Droop=40 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/applied_engineering.ds b/src/samples/drumsynth/misc_electro/applied_engineering.ds new file mode 100644 index 0000000..c94ed76 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/applied_engineering.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-2 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,4 1031,11 9280,5 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=8000 +F2=20 +Droop=83 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=8472 +Wave1=3 +Track1=1 +F2=4726 +Wave2=1 +Track2=0 +Method=1 +Param=60 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=92 +F=50 +dF=20 +Envelope=0,100 2250,30 12373,0 + +[NoiseBand2] +On=0 +Level=74 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=14 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/atmosphere_of_space.ds b/src/samples/drumsynth/misc_electro/atmosphere_of_space.ds new file mode 100644 index 0000000..f1d878d --- /dev/null +++ b/src/samples/drumsynth/misc_electro/atmosphere_of_space.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=60210 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/bottle_bill_fx.ds b/src/samples/drumsynth/misc_electro/bottle_bill_fx.ds new file mode 100644 index 0000000..79dcd46 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/bottle_bill_fx.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=3 +Filter=1 +HighPass=1 +Resonance=79 +FilterEnv=0,14 635,44 1904,53 3109,24 4981,42 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=800 +F2=120 +Droop=53 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=34 +Slope=-70 +Envelope=0,100 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=500 +Wave1=2 +Track1=1 +F2=200 +Wave2=0 +Track2=0 +Method=3 +Param=100 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3750,30 7500,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=26 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=3 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_electro/casio_poppin.ds b/src/samples/drumsynth/misc_electro/casio_poppin.ds new file mode 100644 index 0000000..4a8488c --- /dev/null +++ b/src/samples/drumsynth/misc_electro/casio_poppin.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,11 269,53 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=6645 +F2=120 +Droop=10 +Phase=0 +Envelope=0,100 1750,20 3579,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=1 +F2=630 +Wave2=2 +Track2=0 +Method=0 +Param=83 +Envelope1=0,100 1250,20 2027,0 +Envelope2=0,100 1045,43 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=8865 +dF=90 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/category.ds b/src/samples/drumsynth/misc_electro/category.ds new file mode 100644 index 0000000..01590df --- /dev/null +++ b/src/samples/drumsynth/misc_electro/category.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=63 +FilterEnv=0,1 2221,82 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=5632 +F2=55 +Droop=50 +Phase=65 +Envelope=0,100 1586,0 10500,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=550 +Wave1=0 +Track1=1 +F2=241 +Wave2=1 +Track2=0 +Method=2 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 317,49 1110,29 2221,10 4283,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=26 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/cheap_fx.ds b/src/samples/drumsynth/misc_electro/cheap_fx.ds new file mode 100644 index 0000000..0fbcecf --- /dev/null +++ b/src/samples/drumsynth/misc_electro/cheap_fx.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=20 +FilterEnv=0,95 8725,32 44259,15 129286,0 442000,100 442000,0 + +[Tone] +On=1 +Level=12 +F1=624 +F2=444 +Droop=60 +Phase=00 +Envelope=0,100 6028,25 15241,85 24835,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=440 +Wave1=0 +Track1=0 +F2=880 +Wave2=4 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 3750,30 12093,89 25384,0 +Envelope2=0,49 8725,49 23536,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=20 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_electro/chrip_q.ds b/src/samples/drumsynth/misc_electro/chrip_q.ds new file mode 100644 index 0000000..c4ecd9f --- /dev/null +++ b/src/samples/drumsynth/misc_electro/chrip_q.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=63 +FilterEnv=0,1 2221,82 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=5632 +F2=55 +Droop=50 +Phase=65 +Envelope=0,100 1586,0 10500,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=110 +F1=550 +Wave1=0 +Track1=0 +F2=241 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 317,49 1110,29 2221,10 4283,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/clean_rock_bd.ds b/src/samples/drumsynth/misc_electro/clean_rock_bd.ds new file mode 100644 index 0000000..cf4314b --- /dev/null +++ b/src/samples/drumsynth/misc_electro/clean_rock_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=54 +FilterEnv=0,22 1749,97 22037,4 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=1500 +F2=43 +Droop=60 +Phase=0 +Envelope=0,100 5846,38 9744,0 18439,0 25384,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=83 +F1=150 +Wave1=4 +Track1=0 +F2=50 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,14 20687,50 22486,0 +Envelope2=0,100 24435,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=30 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/cold_shot.ds b/src/samples/drumsynth/misc_electro/cold_shot.ds new file mode 100644 index 0000000..1e6400f --- /dev/null +++ b/src/samples/drumsynth/misc_electro/cold_shot.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,0 2062,24 8646,43 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=8000 +F2=20 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=8472 +Wave1=3 +Track1=1 +F2=4726 +Wave2=3 +Track2=1 +Method=3 +Param=0 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=50 +dF=20 +Envelope=0,100 2250,30 12373,0 + +[NoiseBand2] +On=1 +Level=74 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=2 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/confusion.ds b/src/samples/drumsynth/misc_electro/confusion.ds new file mode 100644 index 0000000..98f36bf --- /dev/null +++ b/src/samples/drumsynth/misc_electro/confusion.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,46 13991,0 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=6645 +F2=120 +Droop=60 +Phase=0 +Envelope=0,100 1750,20 3579,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=130.813 +Wave1=1 +Track1=0 +F2=311.127 +Wave2=1 +Track2=1 +Method=1 +Param=93 +Envelope1=0,100 4315,55 16498,0 +Envelope2=0,100 1045,43 3807,68 6314,9 10438,59 16276,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=8865 +dF=90 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/cymbal_madness.ds b/src/samples/drumsynth/misc_electro/cymbal_madness.ds new file mode 100644 index 0000000..75e49b0 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/cymbal_madness.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-9 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,0 2062,28 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=2000 +F2=50 +Droop=50 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=136 +F1=440 +Wave1=0 +Track1=0 +F2=55 +Wave2=2 +Track2=0 +Method=3 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 5790,92 10153,65 19671,49 28554,20 42990,0 +Filter=0 + +[NoiseBand] +On=0 +Level=137 +F=210 +dF=70 +Envelope=0,44 2250,30 39738,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=35 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/depth_fx.ds b/src/samples/drumsynth/misc_electro/depth_fx.ds new file mode 100644 index 0000000..b47e420 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/depth_fx.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=-10 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,65 3148,47 6346,73 6796,23 9944,44 14291,50 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=65525 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 4497,8 7945,0 21087,0 + +[Noise] +On=1 +Level=55 +Slope=1 +Envelope=0,100 894,45 899,11 2349,20 3448,9 6496,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=85 +F1=4200 +Wave1=3 +Track1=0 +F2=5402 +Wave2=3 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +Envelope2=0,100 3000,30 10943,72 20587,0 +Filter=0 + +[NoiseBand] +On=1 +Level=63 +F=2000 +dF=16 +Envelope=0,100 894,45 1999,91 2756,18 3898,65 6901,6 10294,73 11893,13 13742,35 16290,0 + +[NoiseBand2] +On=1 +Level=36 +F=1000 +dF=14 +Envelope=0,100 714,13 999,93 3348,86 3748,16 7096,69 9894,22 12193,56 13792,15 17839,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/dialed.ds b/src/samples/drumsynth/misc_electro/dialed.ds new file mode 100644 index 0000000..60685e7 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/dialed.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,0 10232,65 46638,87 90897,40 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=0 +F2=880 +Droop=8 +Phase=00 +Envelope=0,100 6028,25 15241,85 24835,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=440 +Wave1=0 +Track1=1 +F2=880 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 3750,30 12093,89 15943,0 +Envelope2=0,49 4822,86 8725,49 65040,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=20 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_electro/doom_bump.ds b/src/samples/drumsynth/misc_electro/doom_bump.ds new file mode 100644 index 0000000..36b69af --- /dev/null +++ b/src/samples/drumsynth/misc_electro/doom_bump.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=52 +FilterEnv=0,100 523,56 998,29 2565,13 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=130.813 +F2=261.626 +Droop=50 +Phase=0 +Envelope=0,100 2391,47 21337,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=3 +Param=19 +Envelope1=0,100 2391,48 18589,0 +Envelope2=0,100 2423,56 22736,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=2 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_electro/electric_triangle.ds b/src/samples/drumsynth/misc_electro/electric_triangle.ds new file mode 100644 index 0000000..cdf3963 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electric_triangle.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 871,50 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=20 +Envelope=0,100 1140,69 1457,41 4671,11 8187,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=3400 +Wave1=3 +Track1=0 +F2=630 +Wave2=0 +Track2=1 +Method=2 +Param=90 +Envelope1=0,100 8266,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_electro/electro_perc_long.ds b/src/samples/drumsynth/misc_electro/electro_perc_long.ds new file mode 100644 index 0000000..d568b8f --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_perc_long.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=200 +Level=0 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,14 808,98 444000,100 444000,0 + +[Tone] +On=0 +Level=92 +F1=600 +F2=100 +Droop=30 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=146 +Slope=10 +Envelope=0,100 500,20 1694,2 2597,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=18029 +dF=100 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/electro_perc_short.ds b/src/samples/drumsynth/misc_electro/electro_perc_short.ds new file mode 100644 index 0000000..4fe82bf --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_perc_short.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=50 +Level=0 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,14 808,98 444000,100 444000,0 + +[Tone] +On=0 +Level=92 +F1=600 +F2=100 +Droop=30 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=146 +Slope=10 +Envelope=0,100 500,20 1694,2 2597,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=18029 +dF=100 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/electro_rim.ds b/src/samples/drumsynth/misc_electro/electro_rim.ds new file mode 100644 index 0000000..de35a01 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_rim.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,19 7595,77 444000,100 444000,0 + +[Tone] +On=1 +Level=145 +F1=1500 +F2=120 +Droop=37 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=0 +Level=101 +Slope=100 +Envelope=0,14 857,34 2948,45 3148,8 6596,27 7695,5 11693,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=1 +Track1=1 +F2=550 +Wave2=0 +Track2=1 +Method=0 +Param=70 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=9 +Bits=4 +Rate=5 diff --git a/src/samples/drumsynth/misc_electro/electro_rim_2.ds b/src/samples/drumsynth/misc_electro/electro_rim_2.ds new file mode 100644 index 0000000..6f1aef5 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_rim_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=3 +Filter=1 +HighPass=1 +Resonance=36 +FilterEnv=0,19 7595,77 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=1500 +F2=120 +Droop=37 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=0 +Level=101 +Slope=100 +Envelope=0,14 857,34 2948,45 3148,8 6596,27 7695,5 11693,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=1 +Track1=1 +F2=1200 +Wave2=2 +Track2=1 +Method=0 +Param=70 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=18 +Bits=1 +Rate=5 diff --git a/src/samples/drumsynth/misc_electro/electro_rim_3.ds b/src/samples/drumsynth/misc_electro/electro_rim_3.ds new file mode 100644 index 0000000..98287b6 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_rim_3.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=80 +Level=0 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,11 2181,32 442000,100 442000,0 + +[Tone] +On=1 +Level=172 +F1=5633 +F2=55 +Droop=92 +Phase=0 +Envelope=0,100 1586,0 10500,0 + +[Noise] +On=1 +Level=128 +Slope=-85 +Envelope=0,100 555,21 1448,4 2439,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=1 +Track1=0 +F2=220 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 952,26 1904,0 3750,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=122 +dF=17 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=1 +Level=101 +F=5555 +dF=60 +Envelope=0,100 932,0 2578,0 + +[Distortion] +On=1 +Clipping=16 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/electro_squeek.ds b/src/samples/drumsynth/misc_electro/electro_squeek.ds new file mode 100644 index 0000000..f8e0ec2 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/electro_squeek.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=9 +Filter=1 +HighPass=0 +Resonance=20 +FilterEnv=0,95 10232,65 20226,0 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=0 +F2=880 +Droop=60 +Phase=00 +Envelope=0,100 6028,25 15241,85 24835,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=440 +Wave1=2 +Track1=0 +F2=880 +Wave2=2 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 3750,30 8804,71 10470,0 +Envelope2=0,49 4822,86 8725,49 65040,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=20 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_electro/fuzzy_q_bd.ds b/src/samples/drumsynth/misc_electro/fuzzy_q_bd.ds new file mode 100644 index 0000000..7d61502 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/fuzzy_q_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=1 +Resonance=9 +FilterEnv=0,0 1507,43 8646,43 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=8000 +F2=20 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=82 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=3 +Param=59 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=50 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=74 +F=3100 +dF=40 +Envelope=0,100 1110,9 3000,0 + +[Distortion] +On=1 +Clipping=2 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/g_question.ds b/src/samples/drumsynth/misc_electro/g_question.ds new file mode 100644 index 0000000..acaa2c8 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/g_question.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,4 3300,9 444000,100 444000,0 + +[Tone] +On=0 +Level=1 +F1=600 +F2=50 +Droop=40 +Phase=0 +Envelope=0,100 5250,30 13325,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=110 +Wave1=0 +Track1=1 +F2=50 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 3750,30 12151,0 +Envelope2=0,100 3522,32 12786,0 +Filter=0 + +[NoiseBand] +On=0 +Level=56 +F=210 +dF=60 +Envelope=0,44 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/general_obscurity.ds b/src/samples/drumsynth/misc_electro/general_obscurity.ds new file mode 100644 index 0000000..a4084f4 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/general_obscurity.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,0 550,21 849,31 1549,37 2399,40 4247,40 444000,100 444000,0 + +[Tone] +On=1 +Level=101 +F1=5000 +F2=230 +Droop=62 +Phase=0 +Envelope=0,100 700,44 1750,20 2748,9 4347,4 6596,3 12043,0 19488,0 + +[Noise] +On=1 +Level=104 +Slope=100 +Envelope=0,68 1699,59 1899,30 3448,13 5147,4 8495,1 14841,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=802 +Wave1=1 +Track1=0 +F2=290 +Wave2=1 +Track2=0 +Method=2 +Param=90 +Envelope1=0,100 1250,20 11293,0 +Envelope2=0,100 1000,20 13941,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=5000 +dF=37 +Envelope=0,100 100,44 1249,51 2898,32 7046,8 9044,2 11443,0 + +[NoiseBand2] +On=1 +Level=65 +F=3100 +dF=40 +Envelope=0,100 1500,20 10743,0 + +[Distortion] +On=1 +Clipping=3 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/hard_bork.ds b/src/samples/drumsynth/misc_electro/hard_bork.ds new file mode 100644 index 0000000..4d5abde --- /dev/null +++ b/src/samples/drumsynth/misc_electro/hard_bork.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=-7 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=1 +FilterEnv=0,32 2074,30 3214,17 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=2000 +F2=230 +Droop=30 +Phase=60 +Envelope=0,100 2344,29 7442,0 + +[Noise] +On=0 +Level=128 +Slope=20 +Envelope=0,100 2945,82 4972,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=5200 +Wave1=1 +Track1=1 +F2=1020 +Wave2=2 +Track2=1 +Method=1 +Param=51 +Envelope1=0,100 2502,97 5210,0 +Envelope2=0,100 2074,89 6239,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_electro/hello_q.ds b/src/samples/drumsynth/misc_electro/hello_q.ds new file mode 100644 index 0000000..0b88ee9 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/hello_q.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=-10 +Filter=1 +HighPass=1 +Resonance=99 +FilterEnv=0,8 4045,92 5314,21 8249,81 9518,23 11897,67 13563,28 14753,50 15705,37 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 21098,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=60 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/just_the_tweet.ds b/src/samples/drumsynth/misc_electro/just_the_tweet.ds new file mode 100644 index 0000000..b1eb11e --- /dev/null +++ b/src/samples/drumsynth/misc_electro/just_the_tweet.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=6995 +F2=400 +Droop=20 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=5363 +Wave1=0 +Track1=1 +F2=5555 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3490,11 3966,0 + +[Distortion] +On=0 +Clipping=10 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/lo-fi_house_c.ds b/src/samples/drumsynth/misc_electro/lo-fi_house_c.ds new file mode 100644 index 0000000..d3361d6 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/lo-fi_house_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=52 +FilterEnv=0,0 1504,4 4529,4 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=130.813 +F2=130.813 +Droop=0 +Phase=0 +Envelope=0,100 2391,47 7601,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=311.127 +Wave1=2 +Track1=0 +F2=195.998 +Wave2=2 +Track2=0 +Method=2 +Param=99 +Envelope1=0,100 2391,48 8677,0 +Envelope2=0,100 2423,56 6936,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_electro/lo-fi_metal.ds b/src/samples/drumsynth/misc_electro/lo-fi_metal.ds new file mode 100644 index 0000000..5c489f8 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/lo-fi_metal.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=-6 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=6995 +F2=50 +Droop=7 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=1 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=5555 +Wave2=0 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=41 +Bits=0 +Rate=5 diff --git a/src/samples/drumsynth/misc_electro/lo-finess.ds b/src/samples/drumsynth/misc_electro/lo-finess.ds new file mode 100644 index 0000000..8df0d2b --- /dev/null +++ b/src/samples/drumsynth/misc_electro/lo-finess.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-7 +Filter=0 +HighPass=1 +Resonance=9 +FilterEnv=0,0 1507,43 8646,43 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=8000 +F2=20 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=82 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=3 +Param=59 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=29 +F=50 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=24 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/long_q_1.ds b/src/samples/drumsynth/misc_electro/long_q_1.ds new file mode 100644 index 0000000..9257cce --- /dev/null +++ b/src/samples/drumsynth/misc_electro/long_q_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=50 +FilterEnv=0,63 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=6684 +F2=509 +Droop=40 +Phase=00 +Envelope=0,100 954,36 3398,0 7545,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=90 +F1=3566 +Wave1=0 +Track1=1 +F2=2333 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=31 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/long_q_2.ds b/src/samples/drumsynth/misc_electro/long_q_2.ds new file mode 100644 index 0000000..39cd68b --- /dev/null +++ b/src/samples/drumsynth/misc_electro/long_q_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=50 +FilterEnv=0,63 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=6684 +F2=509 +Droop=30 +Phase=00 +Envelope=0,100 954,36 3398,0 5846,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=90 +F1=3566 +Wave1=0 +Track1=1 +F2=2333 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=31 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/long_q_3.ds b/src/samples/drumsynth/misc_electro/long_q_3.ds new file mode 100644 index 0000000..526e2d1 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/long_q_3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-2 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=50 +FilterEnv=0,63 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=6684 +F2=509 +Droop=44 +Phase=00 +Envelope=0,100 954,36 6546,0 21587,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=90 +F1=3566 +Wave1=0 +Track1=1 +F2=2333 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=31 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/long_quack.ds b/src/samples/drumsynth/misc_electro/long_quack.ds new file mode 100644 index 0000000..4190f95 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/long_quack.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=47 +FilterEnv=0,0 12442,62 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=220 +F2=110 +Droop=55 +Phase=65 +Envelope=0,100 6546,50 22636,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=55 +Wave1=1 +Track1=0 +F2=220 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/low_bit_tom.ds b/src/samples/drumsynth/misc_electro/low_bit_tom.ds new file mode 100644 index 0000000..c852bdb --- /dev/null +++ b/src/samples/drumsynth/misc_electro/low_bit_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=120 +Droop=46 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=31 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/metal_noise_shot.ds b/src/samples/drumsynth/misc_electro/metal_noise_shot.ds new file mode 100644 index 0000000..fa96abe --- /dev/null +++ b/src/samples/drumsynth/misc_electro/metal_noise_shot.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=56 +Slope=22 +Envelope=0,71 586,27 5996,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=110 +F1=5827 +Wave1=0 +Track1=1 +F2=4562 +Wave2=1 +Track2=1 +Method=2 +Param=70 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=3000 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=41 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=27 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/open_reso.ds b/src/samples/drumsynth/misc_electro/open_reso.ds new file mode 100644 index 0000000..bf14164 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/open_reso.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=4 +Filter=1 +HighPass=1 +Resonance=89 +FilterEnv=0,33 2379,74 5949,32 10311,14 16419,6 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=8000 +F2=55 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=1 +Level=56 +Slope=95 +Envelope=0,23 793,95 4759,26 6504,4 19512,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=3 +Param=59 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/paging_the_jetsons.ds b/src/samples/drumsynth/misc_electro/paging_the_jetsons.ds new file mode 100644 index 0000000..832dba2 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/paging_the_jetsons.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=-6 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=6995 +F2=384 +Droop=60 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=5363 +Wave1=0 +Track1=1 +F2=5555 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3490,11 3966,0 + +[Distortion] +On=1 +Clipping=1 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/pan.ds b/src/samples/drumsynth/misc_electro/pan.ds new file mode 100644 index 0000000..1fe356f --- /dev/null +++ b/src/samples/drumsynth/misc_electro/pan.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=6995 +F2=384 +Droop=60 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=5363 +Wave1=4 +Track1=0 +F2=5555 +Wave2=4 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3490,11 3966,0 + +[Distortion] +On=0 +Clipping=1 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/pleasant_combo.ds b/src/samples/drumsynth/misc_electro/pleasant_combo.ds new file mode 100644 index 0000000..38315f5 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/pleasant_combo.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=35 +FilterEnv=0,0 6901,8 14277,2 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=5632 +F2=57 +Droop=77 +Phase=65 +Envelope=0,100 5552,21 10500,0 + +[Noise] +On=0 +Level=146 +Slope=-94 +Envelope=0,71 635,11 1110,0 2459,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=110 +F1=550 +Wave1=3 +Track1=1 +F2=241 +Wave2=4 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 1904,53 5235,26 20226,0 +Envelope2=0,100 317,49 1110,29 4442,8 14198,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/q-ziq_for_the_masses.ds b/src/samples/drumsynth/misc_electro/q-ziq_for_the_masses.ds new file mode 100644 index 0000000..cd6c441 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/q-ziq_for_the_masses.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=0 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6223,17 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=1500 +F2=120 +Droop=10 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 4442,0 + +[Noise] +On=0 +Level=101 +Slope=-10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=55 +Wave1=0 +Track1=1 +F2=220 +Wave2=0 +Track2=1 +Method=1 +Param=90 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=27 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/rich_bd.ds b/src/samples/drumsynth/misc_electro/rich_bd.ds new file mode 100644 index 0000000..e1f6ede --- /dev/null +++ b/src/samples/drumsynth/misc_electro/rich_bd.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=-2 +Filter=1 +HighPass=1 +Resonance=54 +FilterEnv=0,0 2027,49 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=5000 +F2=60 +Droop=35 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=172 +F1=54 +Wave1=0 +Track1=0 +F2=25 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=47 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/ring.ds b/src/samples/drumsynth/misc_electro/ring.ds new file mode 100644 index 0000000..0c30e08 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/ring.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,46 13991,0 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=0 +Phase=65 +Envelope=0,100 2379,46 7932,20 17926,6 42514,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=2640 +Wave1=4 +Track1=0 +F2=4 +Wave2=0 +Track2=1 +Method=2 +Param=80 +Envelope1=0,100 4315,55 9439,16 15387,0 +Envelope2=0,100 3000,30 27364,77 39420,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=8865 +dF=90 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=9 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/ringing_sn.ds b/src/samples/drumsynth/misc_electro/ringing_sn.ds new file mode 100644 index 0000000..3d78747 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/ringing_sn.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=-6 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,5 3775,10 444000,100 444000,0 + +[Tone] +On=1 +Level=164 +F1=200 +F2=90 +Droop=40 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=136 +Slope=-100 +Envelope=0,100 254,36 1174,11 6567,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=41 +F1=865 +Wave1=0 +Track1=1 +F2=630 +Wave2=0 +Track2=0 +Method=2 +Param=24 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=155 +F=1500 +dF=40 +Envelope=0,100 508,20 1523,0 + +[NoiseBand2] +On=1 +Level=53 +F=5000 +dF=90 +Envelope=0,100 571,35 1206,9 2411,0 + +[Distortion] +On=1 +Clipping=40 +Bits=5 +Rate=3 diff --git a/src/samples/drumsynth/misc_electro/rockin_electro_bass_drum.ds b/src/samples/drumsynth/misc_electro/rockin_electro_bass_drum.ds new file mode 100644 index 0000000..9f20cd1 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/rockin_electro_bass_drum.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100 +Level=-4 +Filter=1 +HighPass=0 +Resonance=54 +FilterEnv=0,22 1749,97 22037,4 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=43 +Droop=60 +Phase=0 +Envelope=0,100 5846,38 9744,0 18439,0 25384,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=83 +F1=150 +Wave1=4 +Track1=0 +F2=50 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,14 20687,50 22486,0 +Envelope2=0,100 24435,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/shocking_kiss.ds b/src/samples/drumsynth/misc_electro/shocking_kiss.ds new file mode 100644 index 0000000..30d9bde --- /dev/null +++ b/src/samples/drumsynth/misc_electro/shocking_kiss.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=5 +FilterEnv=0,96 1299,30 1999,14 3198,8 23785,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=5000 +F2=50 +Droop=45 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=74 +F1=25 +Wave1=0 +Track1=1 +F2=50 +Wave2=4 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 17489,89 19888,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/siren_sing.ds b/src/samples/drumsynth/misc_electro/siren_sing.ds new file mode 100644 index 0000000..9a77a96 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/siren_sing.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=47 +FilterEnv=0,0 12442,62 442000,100 442000,0 + +[Tone] +On=1 +Level=54 +F1=110 +F2=550 +Droop=36 +Phase=65 +Envelope=0,100 5996,25 22886,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=83 +F1=220 +Wave1=0 +Track1=1 +F2=110 +Wave2=0 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=23 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/slide_tom.ds b/src/samples/drumsynth/misc_electro/slide_tom.ds new file mode 100644 index 0000000..b3f26ec --- /dev/null +++ b/src/samples/drumsynth/misc_electro/slide_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,74 570,9 1774,0 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=573 +Wave1=0 +Track1=0 +F2=330 +Wave2=0 +Track2=0 +Method=2 +Param=97 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1200 +dF=80 +Envelope=0,100 618,7 1473,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=1 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_electro/space_dynamic.ds b/src/samples/drumsynth/misc_electro/space_dynamic.ds new file mode 100644 index 0000000..4388ea3 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/space_dynamic.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=80 +Level=0 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,0 3113,98 442000,100 442000,0 + +[Tone] +On=1 +Level=172 +F1=5633 +F2=55 +Droop=32 +Phase=0 +Envelope=0,100 1586,0 4184,56 5830,10 6702,61 7932,10 8546,38 22886,0 + +[Noise] +On=0 +Level=128 +Slope=-85 +Envelope=0,100 555,21 1448,4 2439,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=4872 +Wave1=1 +Track1=1 +F2=3283 +Wave2=3 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 952,26 7099,52 13792,14 18838,94 25235,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=122 +dF=67 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=0 +Level=101 +F=5555 +dF=60 +Envelope=0,100 932,0 2578,0 + +[Distortion] +On=1 +Clipping=20 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/spaceness.ds b/src/samples/drumsynth/misc_electro/spaceness.ds new file mode 100644 index 0000000..642eaf1 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/spaceness.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=54 +FilterEnv=0,22 1749,97 22037,4 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=1500 +F2=43 +Droop=60 +Phase=0 +Envelope=0,100 5846,38 9744,0 18439,0 25384,0 + +[Noise] +On=0 +Level=128 +Slope=20 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=150 +Wave1=4 +Track1=0 +F2=50 +Wave2=0 +Track2=0 +Method=3 +Param=100 +Envelope1=0,14 20687,50 22486,0 +Envelope2=0,100 24435,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=9683 +dF=81 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=30 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/startling_one.ds b/src/samples/drumsynth/misc_electro/startling_one.ds new file mode 100644 index 0000000..fb79a54 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/startling_one.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=21 +FilterEnv=0,100 72971,47 115009,80 155460,35 192739,67 222086,27 251433,41 267297,18 295058,24 302989,8 315680,9 322025,3 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=60210 +F2=440 +Droop=30 +Phase=0 +Envelope=0,100 219707,38 425930,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/tone_percussion.ds b/src/samples/drumsynth/misc_electro/tone_percussion.ds new file mode 100644 index 0000000..ef43485 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/tone_percussion.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,71 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=1000 +F2=509 +Droop=60 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=6300 +Wave1=0 +Track1=1 +F2=18500 +Wave2=0 +Track2=1 +Method=1 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=90 +F=7122 +dF=37 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/tweet.ds b/src/samples/drumsynth/misc_electro/tweet.ds new file mode 100644 index 0000000..c18636e --- /dev/null +++ b/src/samples/drumsynth/misc_electro/tweet.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=6995 +F2=400 +Droop=20 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=1 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=5363 +Wave1=0 +Track1=1 +F2=5555 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3490,11 3966,0 + +[Distortion] +On=1 +Clipping=10 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/wee_dog.ds b/src/samples/drumsynth/misc_electro/wee_dog.ds new file mode 100644 index 0000000..f386965 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/wee_dog.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=36 +FilterEnv=0,19 7595,77 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=20 +F2=19754 +Droop=47 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 2633,0 + +[Noise] +On=0 +Level=101 +Slope=100 +Envelope=0,14 857,34 2948,45 3148,8 6596,27 7695,5 11693,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=3 +Track1=1 +F2=1200 +Wave2=0 +Track2=0 +Method=2 +Param=70 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=21 +Bits=0 +Rate=3 diff --git a/src/samples/drumsynth/misc_electro/what_to_do_at_220.ds b/src/samples/drumsynth/misc_electro/what_to_do_at_220.ds new file mode 100644 index 0000000..b88abcd --- /dev/null +++ b/src/samples/drumsynth/misc_electro/what_to_do_at_220.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,74 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=134 +F1=440 +Wave1=4 +Track1=0 +F2=220 +Wave2=4 +Track2=0 +Method=2 +Param=82 +Envelope1=0,100 635,52 1523,31 3680,6 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc_electro/who_hears_all_sound.ds b/src/samples/drumsynth/misc_electro/who_hears_all_sound.ds new file mode 100644 index 0000000..107d569 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/who_hears_all_sound.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=14 +Filter=0 +HighPass=0 +Resonance=31 +FilterEnv=0,77 7138,21 442000,100 442000,0 + +[Tone] +On=1 +Level=43 +F1=908 +F2=165 +Droop=73 +Phase=0 +Envelope=0,100 1999,80 2792,42 4251,13 13071,0 + +[Noise] +On=0 +Level=95 +Slope=97 +Envelope=0,92 1666,41 4521,14 8804,0 11897,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=50 +Wave1=0 +Track1=0 +F2=920 +Wave2=0 +Track2=0 +Method=3 +Param=11 +Envelope1=0,100 1999,80 2792,42 4251,13 14991,0 +Envelope2=0,100 1000,20 3569,4 6901,0 +Filter=0 + +[NoiseBand] +On=1 +Level=10 +F=3921 +dF=33 +Envelope=0,68 3046,49 4500,30 7852,0 11929,0 + +[NoiseBand2] +On=0 +Level=88 +F=9076 +dF=58 +Envelope=0,35 444,94 1364,59 2475,34 3998,21 5425,12 6901,5 8090,0 + +[Distortion] +On=1 +Clipping=7 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_electro/why_hit.ds b/src/samples/drumsynth/misc_electro/why_hit.ds new file mode 100644 index 0000000..6cb3427 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/why_hit.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,7 5473,18 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=65.406 +F2=5632 +Droop=65 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 4124,41 11422,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=2332 +dF=7 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=155 +F=3100 +dF=10 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_electro/yr_tv_will_be_next.ds b/src/samples/drumsynth/misc_electro/yr_tv_will_be_next.ds new file mode 100644 index 0000000..63c0428 --- /dev/null +++ b/src/samples/drumsynth/misc_electro/yr_tv_will_be_next.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=9 +Filter=1 +HighPass=1 +Resonance=83 +FilterEnv=0,53 9486,31 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=55 +F2=8000 +Droop=0 +Phase=0 +Envelope=0,100 4220,87 11771,0 + +[Noise] +On=0 +Level=128 +Slope=20 +Envelope=0,100 1140,69 1457,41 4671,11 8187,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=55 +Wave1=0 +Track1=0 +F2=7800 +Wave2=0 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 8266,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_electro/zappy_bells.ds b/src/samples/drumsynth/misc_electro/zappy_bells.ds new file mode 100644 index 0000000..4587abb --- /dev/null +++ b/src/samples/drumsynth/misc_electro/zappy_bells.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,11 442000,100 442000,0 + +[Tone] +On=1 +Level=154 +F1=800 +F2=55 +Droop=64 +Phase=65 +Envelope=0,100 5250,30 9597,0 14753,0 + +[Noise] +On=1 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=1760 +Wave1=4 +Track1=1 +F2=440 +Wave2=3 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/2-bit_zone_drone.ds b/src/samples/drumsynth/misc_fx/2-bit_zone_drone.ds new file mode 100644 index 0000000..1963e39 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/2-bit_zone_drone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=40 +FilterEnv=0,14 4981,42 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=150 +F2=300 +Droop=78 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=16 +Slope=-59 +Envelope=0,100 5584,34 12056,81 22209,68 27031,8 40229,39 46194,84 61169,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=1 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 57996,89 67260,0 +Envelope2=0,46 7234,79 8883,32 21447,58 30204,19 40356,68 45813,60 52793,81 68656,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=880 +dF=10 +Envelope=0,100 9645,62 16879,80 26270,10 42260,83 50509,52 58631,90 67260,0 + +[NoiseBand2] +On=1 +Level=94 +F=55 +dF=7 +Envelope=0,6 1500,30 19924,53 28935,36 34645,73 43021,46 51905,73 62184,55 68022,0 + +[Distortion] +On=1 +Clipping=0 +Bits=7 +Rate=7 diff --git a/src/samples/drumsynth/misc_fx/2_bit_click.ds b/src/samples/drumsynth/misc_fx/2_bit_click.ds new file mode 100644 index 0000000..4f1f015 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/2_bit_click.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,20 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1200 +dF=80 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/a_blast.ds b/src/samples/drumsynth/misc_fx/a_blast.ds new file mode 100644 index 0000000..968ea68 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/a_blast.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-11 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 30775,11 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=2000 +F2=50 +Droop=50 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=136 +F1=440 +Wave1=0 +Track1=0 +F2=55 +Wave2=2 +Track2=0 +Method=3 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 5790,92 10153,65 19671,49 28554,20 42990,0 +Filter=0 + +[NoiseBand] +On=1 +Level=137 +F=210 +dF=70 +Envelope=0,44 2250,30 39738,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=35 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/across_the_universe.ds b/src/samples/drumsynth/misc_fx/across_the_universe.ds new file mode 100644 index 0000000..ed73300 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/across_the_universe.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=-14 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,21 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=40 +F2=880 +Droop=50 +Phase=0 +Envelope=0,100 16656,47 30140,29 51556,14 140390,0 + +[Noise] +On=1 +Level=94 +Slope=100 +Envelope=0,100 8090,64 27364,38 120403,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=51 +F1=5200 +Wave1=2 +Track1=0 +F2=195.998 +Wave2=2 +Track2=1 +Method=2 +Param=59 +Envelope1=0,100 48383,35 72178,12 125320,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/alarm_3.ds b/src/samples/drumsynth/misc_fx/alarm_3.ds new file mode 100644 index 0000000..e30519c --- /dev/null +++ b/src/samples/drumsynth/misc_fx/alarm_3.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=0 +Level=1 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=342 +Wave1=0 +Track1=1 +F2=1 +Wave2=4 +Track2=1 +Method=1 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 2935,74 7456,64 11184,56 11660,1 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=2 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/alarming_buzz.ds b/src/samples/drumsynth/misc_fx/alarming_buzz.ds new file mode 100644 index 0000000..b61e8f0 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/alarming_buzz.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-15 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=8000 +F2=34 +Droop=20 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=1760 +Wave1=4 +Track1=1 +F2=880 +Wave2=3 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 20940,100 20940,0 +Envelope2=0,100 26650,100 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/alarming_buzz_2.ds b/src/samples/drumsynth/misc_fx/alarming_buzz_2.ds new file mode 100644 index 0000000..e509644 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/alarming_buzz_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-12 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=445 +F2=345 +Droop=100 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=440 +Wave1=1 +Track1=1 +F2=880 +Wave2=1 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 20940,100 20940,0 +Envelope2=0,100 26650,100 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/alien_curiousity.ds b/src/samples/drumsynth/misc_fx/alien_curiousity.ds new file mode 100644 index 0000000..70923d6 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/alien_curiousity.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-16 +Filter=0 +HighPass=1 +Resonance=64 +FilterEnv=0,98 110885,37 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=110 +F2=330 +Droop=50 +Phase=00 +Envelope=0,0 5250,30 80427,95 114216,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,100 35930,41 109695,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=1 +F2=880 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 96370,100 98749,0 +Envelope2=0,100 3000,30 93514,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=8 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/ambient_backgroud.ds b/src/samples/drumsynth/misc_fx/ambient_backgroud.ds new file mode 100644 index 0000000..91fd12a --- /dev/null +++ b/src/samples/drumsynth/misc_fx/ambient_backgroud.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-16 +Filter=1 +HighPass=0 +Resonance=54 +FilterEnv=0,98 14277,49 31885,28 46876,19 75668,8 107791,0 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=220 +F2=110 +Droop=50 +Phase=00 +Envelope=0,0 5250,30 80427,95 114216,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,100 35930,41 109695,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=0 +F2=800 +Wave2=4 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 96370,100 98749,0 +Envelope2=0,100 3000,30 93514,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=8 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/click.ds b/src/samples/drumsynth/misc_fx/click.ds new file mode 100644 index 0000000..f902a28 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/click.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=16 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=350 +F2=174 +Droop=69 +Phase=45 +Envelope=0,100 715,46 1788,17 5453,0 + +[Noise] +On=1 +Level=64 +Slope=-5 +Envelope=0,0 22,98 521,52 1043,21 2890,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=88 +F=4000 +dF=83 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/coo.ds b/src/samples/drumsynth/misc_fx/coo.ds new file mode 100644 index 0000000..08453b3 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/coo.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=63 +FilterEnv=0,1 6504,17 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=550 +Wave1=0 +Track1=0 +F2=241 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 317,49 1110,29 2221,10 4283,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=30 +Bits=2 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/detonate.ds b/src/samples/drumsynth/misc_fx/detonate.ds new file mode 100644 index 0000000..3b2783a --- /dev/null +++ b/src/samples/drumsynth/misc_fx/detonate.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,11 6092,5 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=5633 +F2=100 +Droop=12 +Phase=0 +Envelope=0,100 5250,30 53935,20 104698,86 191946,32 264917,23 303782,44 333923,41 398962,5 398962,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 2887,24 5425,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=137 +F1=65.406 +Wave1=0 +Track1=0 +F2=440 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 319646,95 391031,0 +Envelope2=0,100 337095,94 391031,0 +Filter=0 + +[NoiseBand] +On=1 +Level=146 +F=122 +dF=17 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=0 +Level=101 +F=3100 +dF=60 +Envelope=0,100 1079,11 4500,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/dirty_transform.ds b/src/samples/drumsynth/misc_fx/dirty_transform.ds new file mode 100644 index 0000000..a449695 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/dirty_transform.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-12 +Filter=1 +HighPass=0 +Resonance=60 +FilterEnv=0,0 0,55 14515,51 14753,0 25223,1 25223,54 39500,50 39500,0 56632,0 56632,50 71861,49 72337,1 86852,1 87565,49 99225,49 100653,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=0 +F2=880 +Droop=60 +Phase=00 +Envelope=0,8 5250,30 20702,22 29744,68 44497,58 114930,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=440 +Wave1=2 +Track1=0 +F2=880 +Wave2=2 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 3750,30 8804,71 10470,0 +Envelope2=0,49 4822,86 8725,49 65040,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=32 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_fx/dirty_transform_2.ds b/src/samples/drumsynth/misc_fx/dirty_transform_2.ds new file mode 100644 index 0000000..80f1f20 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/dirty_transform_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-12 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,0 0,55 14515,51 14753,0 25223,1 25223,54 39500,50 39500,0 56632,0 56632,50 71861,49 72337,1 86852,1 87565,49 99225,49 100653,1 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=0 +F2=880 +Droop=30 +Phase=00 +Envelope=0,8 5250,30 20702,22 29744,68 44497,58 114930,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=1 +F2=880 +Wave2=0 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 96370,100 98749,0 +Envelope2=0,100 13801,100 15467,1 29982,4 30220,101 43307,98 43783,0 55680,0 55918,100 67578,100 69005,0 82331,4 84710,100 96132,101 104698,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=32 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/distorion_oscilator.ds b/src/samples/drumsynth/misc_fx/distorion_oscilator.ds new file mode 100644 index 0000000..8d7836c --- /dev/null +++ b/src/samples/drumsynth/misc_fx/distorion_oscilator.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-15 +Filter=1 +HighPass=0 +Resonance=99 +FilterEnv=0,100 5552,44 23002,17 66626,3 129286,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=220 +F2=55 +Droop=81 +Phase=00 +Envelope=0,100 24588,47 61074,21 136424,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=220 +Wave1=2 +Track1=0 +F2=5.5 +Wave2=0 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 11897,56 43624,27 101525,11 186394,0 +Envelope2=0,32 70592,33 194326,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=1 +Clipping=37 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/electric_intro_to_a.ds b/src/samples/drumsynth/misc_fx/electric_intro_to_a.ds new file mode 100644 index 0000000..73df7dd --- /dev/null +++ b/src/samples/drumsynth/misc_fx/electric_intro_to_a.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=21 +FilterEnv=0,100 72971,47 115009,80 155460,35 192739,67 222086,27 251433,41 267297,18 295058,24 302989,8 315680,9 322025,3 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=60210 +F2=440 +Droop=30 +Phase=0 +Envelope=0,100 219707,38 425930,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/electric_waves_out_my_window.ds b/src/samples/drumsynth/misc_fx/electric_waves_out_my_window.ds new file mode 100644 index 0000000..397dadd --- /dev/null +++ b/src/samples/drumsynth/misc_fx/electric_waves_out_my_window.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,8 104698,11 170531,29 245088,9 321232,17 365649,16 398962,5 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=600 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=83 +Slope=54 +Envelope=0,0 4500,30 139597,13 218121,21 287126,5 341854,23 425137,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=101 +F1=600 +Wave1=0 +Track1=1 +F2=120 +Wave2=0 +Track2=1 +Method=2 +Param=50 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=83 +F=5000 +dF=79 +Envelope=0,9 83282,30 170531,14 258572,46 331543,36 374374,8 433068,0 + +[NoiseBand2] +On=1 +Level=74 +F=8000 +dF=90 +Envelope=0,5 1500,20 67102,42 94228,11 143563,15 188773,53 239536,14 268883,5 324405,29 341854,13 363270,20 435448,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/elekperc1.ds b/src/samples/drumsynth/misc_fx/elekperc1.ds new file mode 100644 index 0000000..15b6f3c --- /dev/null +++ b/src/samples/drumsynth/misc_fx/elekperc1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=200 +Level=1 +Filter=1 +HighPass=1 +Resonance=54 +FilterEnv=0,40 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 635,11 10500,0 + +[Noise] +On=1 +Level=85 +Slope=23 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=26 +F1=4364 +Wave1=3 +Track1=0 +F2=7642 +Wave2=3 +Track2=0 +Method=0 +Param=0 +Envelope1=0,83 888,19 6218,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=156 +F=9500 +dF=29 +Envelope=0,100 0,72 819,8 4470,0 + +[NoiseBand2] +On=1 +Level=128 +F=3150 +dF=50 +Envelope=0,100 714,4 3000,0 + +[Distortion] +On=0 +Clipping=32 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/elekperc2.ds b/src/samples/drumsynth/misc_fx/elekperc2.ds new file mode 100644 index 0000000..ce487af --- /dev/null +++ b/src/samples/drumsynth/misc_fx/elekperc2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=24 +Stretch=25 +Level=0 +Filter=1 +HighPass=1 +Resonance=90 +FilterEnv=0,35 714,100 5473,38 5473,100 11422,0 24271,8 44259,29 63326,72 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=440 +F2=0 +Droop=14 +Phase=0 +Envelope=0,100 3093,50 13801,14 31885,5 85900,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Method=1 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=220 +dF=48 +Envelope=0,100 6345,67 13198,41 20940,26 27793,15 35153,10 57996,0 + +[NoiseBand2] +On=0 +Level=181 +F=14000 +dF=31 +Envelope=0,100 1043,1 10504,0 + +[Distortion] +On=1 +Clipping=0 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/end_of_broadcast_day.ds b/src/samples/drumsynth/misc_fx/end_of_broadcast_day.ds new file mode 100644 index 0000000..3cb72cc --- /dev/null +++ b/src/samples/drumsynth/misc_fx/end_of_broadcast_day.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,7 5473,18 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=65.406 +F2=5632 +Droop=65 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=1 +Level=128 +Slope=-10 +Envelope=0,100 218121,100 218121,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=137 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 4124,41 11422,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=2332 +dF=7 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=155 +F=3100 +dF=10 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/entre.ds b/src/samples/drumsynth/misc_fx/entre.ds new file mode 100644 index 0000000..6fa9e73 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/entre.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=100 +Wave1=0 +Track1=1 +F2=4562 +Wave2=1 +Track2=1 +Method=1 +Param=70 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 15241,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=6 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/experiment_1.ds b/src/samples/drumsynth/misc_fx/experiment_1.ds new file mode 100644 index 0000000..57f92a4 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/experiment_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=72 +FilterEnv=0,100 10311,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=10000 +F2=50 +Droop=70 +Phase=0 +Envelope=0,100 5250,30 225259,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/experiment_2_-_turn_off_the_tv.ds b/src/samples/drumsynth/misc_fx/experiment_2_-_turn_off_the_tv.ds new file mode 100644 index 0000000..3832ccf --- /dev/null +++ b/src/samples/drumsynth/misc_fx/experiment_2_-_turn_off_the_tv.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=72 +FilterEnv=0,100 10311,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=10000 +F2=50 +Droop=70 +Phase=0 +Envelope=0,100 5250,30 225259,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=1 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/experiment_3_-_the_transform.ds b/src/samples/drumsynth/misc_fx/experiment_3_-_the_transform.ds new file mode 100644 index 0000000..72cfeb1 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/experiment_3_-_the_transform.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=72 +FilterEnv=0,100 10311,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=48 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=65 +F1=50 +Wave1=4 +Track1=1 +F2=100 +Wave2=1 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/experiment_4_-_clean.ds b/src/samples/drumsynth/misc_fx/experiment_4_-_clean.ds new file mode 100644 index 0000000..b8c9a1a --- /dev/null +++ b/src/samples/drumsynth/misc_fx/experiment_4_-_clean.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=72 +FilterEnv=0,100 10311,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=48 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=65 +F1=50 +Wave1=4 +Track1=0 +F2=100 +Wave2=1 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 51556,41 204637,0 +Envelope2=0,100 51556,41 204637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/f#m7_space_signal.ds b/src/samples/drumsynth/misc_fx/f#m7_space_signal.ds new file mode 100644 index 0000000..d9c3a7c --- /dev/null +++ b/src/samples/drumsynth/misc_fx/f#m7_space_signal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=200 +Level=-2 +Filter=1 +HighPass=1 +Resonance=15 +FilterEnv=0,32 17132,50 26174,24 39262,40 56870,15 77096,39 90421,24 121830,56 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=739.99 +F2=739.99 +Droop=15 +Phase=180 +Envelope=0,100 25461,100 25461,13 44021,13 44021,100 64722,100 64722,14 84234,14 84472,100 120878,0 + +[Noise] +On=1 +Level=16 +Slope=-59 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=1 +Track1=1 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,0 25937,100 44259,13 64722,100 84234,14 110171,98 124924,0 +Envelope2=0,100 17846,17 39738,61 57108,28 75430,39 123496,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=554.37 +dF=10 +Envelope=0,100 17846,25 36168,75 55442,29 74240,66 114930,0 + +[NoiseBand2] +On=1 +Level=94 +F=55 +dF=7 +Envelope=0,0 26888,45 41879,22 64008,24 79951,8 129445,0 + +[Distortion] +On=1 +Clipping=0 +Bits=5 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/feedback.ds b/src/samples/drumsynth/misc_fx/feedback.ds new file mode 100644 index 0000000..1855b18 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/feedback.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=63 +FilterEnv=0,1 6504,17 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=10 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=4336 +Wave1=0 +Track1=0 +F2=142 +Wave2=0 +Track2=1 +Method=1 +Param=100 +Envelope1=0,85 1904,53 10708,29 18639,0 +Envelope2=0,100 1031,49 3966,30 9359,22 19036,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=30 +Bits=2 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/flashy_wind.ds b/src/samples/drumsynth/misc_fx/flashy_wind.ds new file mode 100644 index 0000000..ec4f7c6 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/flashy_wind.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=47 +FilterEnv=0,5 2935,56 4838,23 7138,53 10390,10 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=50 +Droop=58 +Phase=60 +Envelope=0,100 397,52 1428,29 3490,15 6980,10 16339,0 + +[Noise] +On=1 +Level=128 +Slope=92 +Envelope=0,16 1500,53 14991,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=315 +Wave1=4 +Track1=0 +F2=630 +Wave2=4 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/flipper.ds b/src/samples/drumsynth/misc_fx/flipper.ds new file mode 100644 index 0000000..5a54dfd --- /dev/null +++ b/src/samples/drumsynth/misc_fx/flipper.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,55 14691,50 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=50 +Droop=39 +Phase=110 +Envelope=0,0 89,95 899,38 4247,15 21737,0 + +[Noise] +On=0 +Level=146 +Slope=-75 +Envelope=0,0 0,100 4797,3 6296,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=115 +F1=437 +Wave1=0 +Track1=0 +F2=611 +Wave2=0 +Track2=0 +Method=3 +Param=38 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/formant_techno.ds b/src/samples/drumsynth/misc_fx/formant_techno.ds new file mode 100644 index 0000000..33d3da4 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/formant_techno.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=15 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,95 1399,50 4197,23 7246,11 12492,6 442000,100 442000,0 + +[Tone] +On=1 +Level=99 +F1=110 +F2=50 +Droop=66 +Phase=65 +Envelope=0,100 5996,25 14741,0 22886,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=83 +F1=110 +Wave1=0 +Track1=1 +F2=110 +Wave2=0 +Track2=1 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=20 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/frequency_revolution.ds b/src/samples/drumsynth/misc_fx/frequency_revolution.ds new file mode 100644 index 0000000..74fc903 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/frequency_revolution.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-10 +Filter=1 +HighPass=1 +Resonance=30 +FilterEnv=0,0 125399,47 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=5000 +F2=120 +Droop=20 +Phase=0 +Envelope=0,100 4283,0 11422,100 11422,0 19988,100 19988,0 30933,102 30933,0 46876,100 46876,0 62581,96 65436,0 75430,97 75430,0 86852,95 86852,1 98273,100 98273,0 105888,100 106126,0 112788,100 113026,0 120165,98 124924,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=3 +Track1=1 +F2=630 +Wave2=4 +Track2=0 +Method=1 +Param=50 +Envelope1=0,100 34741,54 127065,0 +Envelope2=0,100 1000,20 4045,0 9280,94 11660,0 19988,98 20226,5 31885,99 32599,5 46400,95 47590,2 60915,95 66388,5 73288,93 75430,5 86376,95 86852,5 98273,95 98749,10 105412,98 106363,11 113026,89 114454,1 120640,96 126351,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/fried_food_for_dinner.ds b/src/samples/drumsynth/misc_fx/fried_food_for_dinner.ds new file mode 100644 index 0000000..1ca7a1e --- /dev/null +++ b/src/samples/drumsynth/misc_fx/fried_food_for_dinner.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-17 +Stretch=100 +Level=-3 +Filter=1 +HighPass=1 +Resonance=53 +FilterEnv=0,20 27412,2 58250,16 442000,100 442000,0 + +[Tone] +On=1 +Level=92 +F1=880 +F2=220 +Droop=29 +Phase=12 +Envelope=0,85 3046,85 3934,48 10279,8 17132,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,54 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=1 +Level=181 +F=220 +dF=0 +Envelope=0,0 4315,11 4442,35 5330,14 20051,5 54189,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[Distortion] +On=1 +Clipping=32 +Bits=3 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/funky_stab.ds b/src/samples/drumsynth/misc_fx/funky_stab.ds new file mode 100644 index 0000000..b228015 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/funky_stab.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0.00 +Stretch=30 +Level=9 +Filter=0 +HighPass=0 +Resonance=5 +FilterEnv=0,3 1799,8 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 949,69 2898,44 4897,29 6796,17 8745,10 11393,4 17689,0 +Envelope2=0,96 4297,11 5497,41 16240,81 17489,0 +Filter=0 + +[NoiseBand] +On=0 +Level=123 +F=200 +dF=8 +Envelope=0,100 5250,30 10500,0 + +[NoiseBand2] +On=0 +Level=166 +F=3100 +dF=40 +Envelope=0,100 300,65 800,39 1500,20 2349,8 3748,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/future.ds b/src/samples/drumsynth/misc_fx/future.ds new file mode 100644 index 0000000..4cd8e2c --- /dev/null +++ b/src/samples/drumsynth/misc_fx/future.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=5 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,8 2300,80 15149,61 17767,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=700 +F2=20 +Droop=18 +Phase=7643 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=3 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=92 +F=45 +dF=8 +Envelope=0,100 2250,30 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=26 +Bits=0 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord.ds b/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord.ds new file mode 100644 index 0000000..71bce8e --- /dev/null +++ b/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=500 +Level=1 +Filter=0 +HighPass=0 +Resonance=85 +FilterEnv=0,0 4061,99 442000,100 442000,0 + +[Tone] +On=1 +Level=74 +F1=587.33 +F2=587.33 +Droop=0 +Phase=0 +Envelope=0,100 3750,100 3750,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=34 +F1=392 +Wave1=4 +Track1=0 +F2=587.33 +Wave2=0 +Track2=0 +Method=2 +Param=44 +Envelope1=0,100 3750,100 3750,0 +Envelope2=0,100 865,36 1666,92 2403,14 3085,59 3750,0 +Filter=1 + +[NoiseBand] +On=1 +Level=128 +F=1568 +dF=5 +Envelope=0,100 3750,100 3750,0 + +[NoiseBand2] +On=1 +Level=80 +F=987.77 +dF=7 +Envelope=0,100 3750,100 3750,0 + +[Distortion] +On=1 +Clipping=0 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord_2.ds b/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord_2.ds new file mode 100644 index 0000000..5dab077 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/gmaj_lo-fi_chord_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=500 +Level=1 +Filter=1 +HighPass=1 +Resonance=52 +FilterEnv=0,0 4061,99 442000,100 442000,0 + +[Tone] +On=1 +Level=74 +F1=587.33 +F2=587.33 +Droop=0 +Phase=0 +Envelope=0,100 3750,100 3750,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=34 +F1=392 +Wave1=4 +Track1=0 +F2=587.33 +Wave2=0 +Track2=0 +Method=2 +Param=44 +Envelope1=0,100 3750,100 3750,0 +Envelope2=0,100 865,36 1666,92 2403,14 3085,59 3750,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1568 +dF=5 +Envelope=0,100 3750,100 3750,0 + +[NoiseBand2] +On=1 +Level=80 +F=987.77 +dF=7 +Envelope=0,100 3750,100 3750,0 + +[Distortion] +On=1 +Clipping=0 +Bits=5 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/halt_variety.ds b/src/samples/drumsynth/misc_fx/halt_variety.ds new file mode 100644 index 0000000..51203af --- /dev/null +++ b/src/samples/drumsynth/misc_fx/halt_variety.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,11 6092,5 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=5633 +F2=100 +Droop=12 +Phase=0 +Envelope=0,100 5250,30 53935,20 104698,86 191946,32 264917,23 303782,44 333923,41 398962,5 398962,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 2887,24 5425,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=0 +Track1=0 +F2=440 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 319646,95 391031,0 +Envelope2=0,100 337095,94 391031,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=122 +dF=17 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=101 +F=3100 +dF=60 +Envelope=0,100 1079,11 4500,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/hip-hop_stop.ds b/src/samples/drumsynth/misc_fx/hip-hop_stop.ds new file mode 100644 index 0000000..6a9df19 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/hip-hop_stop.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,0 2062,24 8646,43 442000,100 442000,0 + +[Tone] +On=1 +Level=28 +F1=8000 +F2=20 +Droop=28 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=8472 +Wave1=3 +Track1=1 +F2=4726 +Wave2=3 +Track2=1 +Method=3 +Param=60 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=50 +dF=20 +Envelope=0,100 2250,30 12373,0 + +[NoiseBand2] +On=1 +Level=74 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=14 +Bits=5 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/hip-hop_stop_2.ds b/src/samples/drumsynth/misc_fx/hip-hop_stop_2.ds new file mode 100644 index 0000000..b55ce3a --- /dev/null +++ b/src/samples/drumsynth/misc_fx/hip-hop_stop_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=0 +HighPass=0 +Resonance=9 +FilterEnv=0,0 2062,24 8487,26 442000,100 442000,0 + +[Tone] +On=0 +Level=28 +F1=8000 +F2=20 +Droop=58 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=8472 +Wave1=3 +Track1=1 +F2=4726 +Wave2=3 +Track2=1 +Method=3 +Param=60 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=92 +F=50 +dF=20 +Envelope=0,100 2250,30 12373,0 + +[NoiseBand2] +On=0 +Level=74 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=14 +Bits=1 +Rate=7 diff --git a/src/samples/drumsynth/misc_fx/hollow.ds b/src/samples/drumsynth/misc_fx/hollow.ds new file mode 100644 index 0000000..b4334e5 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/hollow.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=0 +Level=1 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=5462 +Wave1=0 +Track1=1 +F2=1 +Wave2=4 +Track2=1 +Method=3 +Param=100 +Envelope1=0,85 1904,53 2221,0 4521,0 +Envelope2=0,100 2935,74 7456,64 11184,56 11660,1 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=2 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/howdy_oil_barrel.ds b/src/samples/drumsynth/misc_fx/howdy_oil_barrel.ds new file mode 100644 index 0000000..1958fb5 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/howdy_oil_barrel.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=-12 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6223,17 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=1500 +F2=120 +Droop=50 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 4442,0 + +[Noise] +On=0 +Level=101 +Slope=-10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=55 +Wave1=0 +Track1=0 +F2=4353 +Wave2=0 +Track2=1 +Method=1 +Param=90 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=220 +dF=20 +Envelope=0,100 750,20 2221,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=27 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/jaggies.ds b/src/samples/drumsynth/misc_fx/jaggies.ds new file mode 100644 index 0000000..ce1e3d6 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/jaggies.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=200 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=50 +F2=50 +Droop=0 +Phase=0 +Envelope=0,100 5433,69 6092,26 12564,49 14975,12 17386,28 25127,17 28681,56 32996,0 42641,41 45306,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=50 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 13579,68 23732,13 46067,67 59138,0 +Envelope2=0,100 1000,20 3807,77 9645,44 11295,84 21447,28 23858,77 31473,35 40483,77 48732,0 +Filter=0 + +[NoiseBand] +On=1 +Level=45 +F=300 +dF=12 +Envelope=0,100 6218,17 10153,57 14340,22 17259,53 21701,66 33123,28 40610,62 48605,14 56473,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=1 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/laser_gun_&_ricochet.ds b/src/samples/drumsynth/misc_fx/laser_gun_&_ricochet.ds new file mode 100644 index 0000000..0a78236 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/laser_gun_&_ricochet.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,11 442000,100 442000,0 + +[Tone] +On=1 +Level=154 +F1=800 +F2=55 +Droop=14 +Phase=65 +Envelope=0,100 5250,30 9597,0 14753,0 + +[Noise] +On=1 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=1760 +Wave1=4 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/machine_drone.ds b/src/samples/drumsynth/misc_fx/machine_drone.ds new file mode 100644 index 0000000..c0a3d8d --- /dev/null +++ b/src/samples/drumsynth/misc_fx/machine_drone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=35 +FilterEnv=0,0 6901,8 14277,2 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=5632 +F2=57 +Droop=100 +Phase=65 +Envelope=0,100 58504,95 62057,0 + +[Noise] +On=0 +Level=146 +Slope=-94 +Envelope=0,71 635,11 1110,0 2459,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=110 +F1=110 +Wave1=1 +Track1=0 +F2=6842 +Wave2=2 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 58250,96 64215,0 +Envelope2=0,100 10153,80 17370,86 27681,75 36486,78 39738,89 55839,78 61677,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/metal_twist.ds b/src/samples/drumsynth/misc_fx/metal_twist.ds new file mode 100644 index 0000000..29fb152 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/metal_twist.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=-7 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6271,48 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=200 +F2=120 +Droop=80 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=20 +Envelope=0,100 1140,69 1457,41 4671,11 8187,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=220 +Wave1=3 +Track1=0 +F2=1720 +Wave2=0 +Track2=1 +Method=1 +Param=80 +Envelope1=0,100 8266,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/modular.ds b/src/samples/drumsynth/misc_fx/modular.ds new file mode 100644 index 0000000..d8db27d --- /dev/null +++ b/src/samples/drumsynth/misc_fx/modular.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-12 +Filter=1 +HighPass=0 +Resonance=85 +FilterEnv=0,100 46004,38 99939,11 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=55 +F2=110 +Droop=0 +Phase=00 +Envelope=0,100 40451,27 138011,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=0 +Track1=1 +F2=220 +Wave2=3 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 36486,29 137218,0 +Envelope2=0,100 31727,23 93514,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/modular_fm_counterpoint.ds b/src/samples/drumsynth/misc_fx/modular_fm_counterpoint.ds new file mode 100644 index 0000000..37d9af1 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/modular_fm_counterpoint.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-12 +Filter=1 +HighPass=0 +Resonance=85 +FilterEnv=0,100 46004,38 99939,11 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=200 +F2=100 +Droop=0 +Phase=00 +Envelope=0,100 40451,27 138011,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=400 +Wave1=0 +Track1=1 +F2=300 +Wave2=3 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 36486,29 137218,0 +Envelope2=0,0 26968,53 112629,100 118975,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/multi-ping.ds b/src/samples/drumsynth/misc_fx/multi-ping.ds new file mode 100644 index 0000000..3aae3d0 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/multi-ping.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=5000 +F2=120 +Droop=20 +Phase=0 +Envelope=0,100 4283,0 11422,100 11422,0 19988,100 19988,0 30933,102 30933,0 46876,100 46876,0 62581,96 65436,0 75430,97 75430,0 86852,95 86852,1 98273,100 98273,0 105888,100 106126,0 112788,100 113026,0 120165,98 124924,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/my_atari_memory.ds b/src/samples/drumsynth/misc_fx/my_atari_memory.ds new file mode 100644 index 0000000..067f2d7 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/my_atari_memory.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=-7 +Stretch=100 +Level=-6 +Filter=1 +HighPass=0 +Resonance=61 +FilterEnv=0,100 32520,0 32520,100 62660,2 62660,100 77730,0 77730,100 103112,0 103112,99 140390,0 140390,100 154667,0 154667,100 180049,0 180049,98 199878,0 199878,100 226052,0 226052,100 263331,0 263331,100 306162,0 323612,18 419585,0 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=60210 +F2=440 +Droop=30 +Phase=0 +Envelope=0,100 219707,38 425930,0 + +[Noise] +On=1 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=2000 +Wave1=4 +Track1=1 +F2=1020 +Wave2=4 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 2502,97 39658,33 109457,0 425930,0 +Envelope2=0,100 42831,0 80903,101 126113,-1 172117,99 227638,2 294264,98 348200,6 397376,80 423550,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/new_sweep.ds b/src/samples/drumsynth/misc_fx/new_sweep.ds new file mode 100644 index 0000000..cc872f3 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/new_sweep.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-12 +Filter=1 +HighPass=1 +Resonance=64 +FilterEnv=0,98 110885,37 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=110 +F2=200 +Droop=50 +Phase=00 +Envelope=0,0 5250,30 80427,95 114216,0 + +[Noise] +On=1 +Level=145 +Slope=80 +Envelope=0,100 35930,41 109695,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=1 +F2=880 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 96370,100 98749,0 +Envelope2=0,100 7138,39 13801,100 15467,1 22367,31 29982,4 30220,101 36644,41 43307,98 43783,0 49969,22 55680,0 55918,100 60915,35 67578,100 69005,0 75192,25 82331,4 84710,100 92087,38 96132,101 104698,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=8 +Bits=3 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/noise_filtering.ds b/src/samples/drumsynth/misc_fx/noise_filtering.ds new file mode 100644 index 0000000..0e88d65 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/noise_filtering.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,21 14277,30 33313,65 46797,27 75351,50 80903,26 97559,29 107871,12 115802,20 123734,5 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=40392 +F2=880 +Droop=50 +Phase=0 +Envelope=0,100 16656,47 30140,29 51556,14 140390,0 + +[Noise] +On=1 +Level=94 +Slope=100 +Envelope=0,100 8090,64 27364,38 120403,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=114 +F1=5200 +Wave1=4 +Track1=0 +F2=195.998 +Wave2=2 +Track2=1 +Method=2 +Param=89 +Envelope1=0,100 48383,35 72178,12 125320,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=5732 +dF=99 +Envelope=0,100 1758,38 327577,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/not_trying_too_hard.ds b/src/samples/drumsynth/misc_fx/not_trying_too_hard.ds new file mode 100644 index 0000000..a60e1d4 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/not_trying_too_hard.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=-8 +Filter=1 +HighPass=0 +Resonance=52 +FilterEnv=0,100 523,56 998,29 2565,13 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=130.813 +F2=261.626 +Droop=39 +Phase=0 +Envelope=0,100 2391,47 21337,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=112 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=1 +Method=2 +Param=19 +Envelope1=0,100 2391,48 18589,0 +Envelope2=0,100 2423,56 22736,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/numb.ds b/src/samples/drumsynth/misc_fx/numb.ds new file mode 100644 index 0000000..6a26414 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/numb.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=0 +HighPass=0 +Resonance=35 +FilterEnv=0,0 6901,8 14277,2 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=5632 +F2=57 +Droop=40 +Phase=65 +Envelope=0,100 11342,20 31727,0 + +[Noise] +On=0 +Level=146 +Slope=-94 +Envelope=0,71 635,11 1110,0 2459,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=110 +F1=110 +Wave1=1 +Track1=0 +F2=330 +Wave2=2 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 11342,20 31727,0 +Envelope2=0,100 11342,20 31727,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff.ds b/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff.ds new file mode 100644 index 0000000..f675737 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=52 +FilterEnv=0,100 523,56 998,29 2565,13 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=40 +F2=880 +Droop=0 +Phase=0 +Envelope=0,100 46797,49 287919,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=112 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=1 +Param=89 +Envelope1=0,100 48383,50 310128,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff_2.ds b/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff_2.ds new file mode 100644 index 0000000..c81c6e0 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/obligatory_ufo_liftoff_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=52 +FilterEnv=0,100 523,56 998,29 2565,13 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=40 +F2=880 +Droop=0 +Phase=0 +Envelope=0,100 46797,49 287919,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=112 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=1 +Param=89 +Envelope1=0,100 48383,50 310128,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/oom_paa.ds b/src/samples/drumsynth/misc_fx/oom_paa.ds new file mode 100644 index 0000000..8506643 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/oom_paa.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=40 +FilterEnv=0,5 2935,5 6583,0 9835,0 10390,10 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=200 +F2=50 +Droop=58 +Phase=60 +Envelope=0,100 397,52 1428,29 3490,15 6980,10 16339,0 + +[Noise] +On=1 +Level=53 +Slope=-83 +Envelope=0,16 1500,53 14991,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=315 +Wave1=4 +Track1=0 +F2=630 +Wave2=4 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=5 diff --git a/src/samples/drumsynth/misc_fx/oom_pulse.ds b/src/samples/drumsynth/misc_fx/oom_pulse.ds new file mode 100644 index 0000000..667f507 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/oom_pulse.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=84 +FilterEnv=0,5 2935,5 6583,0 9835,0 10390,10 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=500 +F2=100 +Droop=49 +Phase=60 +Envelope=0,100 397,52 1428,29 3490,15 6980,10 16339,0 + +[Noise] +On=0 +Level=53 +Slope=-83 +Envelope=0,16 1500,53 14991,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=119 +F1=315 +Wave1=4 +Track1=0 +F2=630 +Wave2=4 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=5 diff --git a/src/samples/drumsynth/misc_fx/owwww.ds b/src/samples/drumsynth/misc_fx/owwww.ds new file mode 100644 index 0000000..cc89cad --- /dev/null +++ b/src/samples/drumsynth/misc_fx/owwww.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=6 +Filter=1 +HighPass=0 +Resonance=79 +FilterEnv=0,98 6425,53 9042,86 11580,50 15149,61 20860,18 37913,0 442000,100 442000,0 + +[Tone] +On=0 +Level=73 +F1=700 +F2=20 +Droop=18 +Phase=7643 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=55 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=3 +Track2=0 +Method=0 +Param=20 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 22367,57 27523,98 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=55 +dF=8 +Envelope=0,100 9042,35 36882,0 + +[NoiseBand2] +On=0 +Level=20 +F=3100 +dF=40 +Envelope=0,100 4918,27 35851,0 + +[Distortion] +On=1 +Clipping=32 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/playing_in_water.ds b/src/samples/drumsynth/misc_fx/playing_in_water.ds new file mode 100644 index 0000000..1fa737f --- /dev/null +++ b/src/samples/drumsynth/misc_fx/playing_in_water.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=52 +FilterEnv=0,100 523,56 998,29 4124,11 7535,3 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=40 +F2=880 +Droop=0 +Phase=0 +Envelope=0,100 46797,49 287919,0 + +[Noise] +On=1 +Level=157 +Slope=0 +Envelope=0,100 500,20 33630,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=112 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=1 +Param=89 +Envelope1=0,100 48383,50 310128,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/plot_thickens_2.ds b/src/samples/drumsynth/misc_fx/plot_thickens_2.ds new file mode 100644 index 0000000..ae5cb72 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/plot_thickens_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-7 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,11 6092,5 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=5633 +F2=100 +Droop=12 +Phase=0 +Envelope=0,100 5250,30 53935,20 104698,86 191946,32 264917,23 303782,44 333923,41 398962,5 398962,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 2887,24 5425,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=137 +F1=65.406 +Wave1=1 +Track1=0 +F2=220 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 319646,95 391031,0 +Envelope2=0,100 129286,20 248261,93 391031,0 +Filter=0 + +[NoiseBand] +On=1 +Level=146 +F=122 +dF=17 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=0 +Level=101 +F=3100 +dF=60 +Envelope=0,100 1079,11 4500,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/punch_flange.ds b/src/samples/drumsynth/misc_fx/punch_flange.ds new file mode 100644 index 0000000..a73e292 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/punch_flange.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 120640,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=20 +Droop=70 +Phase=00 +Envelope=0,100 23785,90 120165,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=49 +Bits=7 +Rate=7 diff --git a/src/samples/drumsynth/misc_fx/punch_flange_2.ds b/src/samples/drumsynth/misc_fx/punch_flange_2.ds new file mode 100644 index 0000000..dbb2cfa --- /dev/null +++ b/src/samples/drumsynth/misc_fx/punch_flange_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 351372,1 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=50 +Droop=97 +Phase=00 +Envelope=0,100 64246,29 325991,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=49 +Bits=7 +Rate=7 diff --git a/src/samples/drumsynth/misc_fx/q_zone_drone.ds b/src/samples/drumsynth/misc_fx/q_zone_drone.ds new file mode 100644 index 0000000..1ccd3ff --- /dev/null +++ b/src/samples/drumsynth/misc_fx/q_zone_drone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=3 +Filter=1 +HighPass=1 +Resonance=66 +FilterEnv=0,77 5203,82 12437,56 17513,56 19797,48 24874,48 28681,34 38199,56 44925,13 58377,54 68530,5 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=150 +F2=300 +Droop=78 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=16 +Slope=-59 +Envelope=0,100 5584,34 12056,81 22209,68 27031,8 40229,39 46194,84 61169,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=1 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 57996,89 67260,0 +Envelope2=0,46 7234,79 8883,32 21447,58 30204,19 40356,68 45813,60 52793,81 68656,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=880 +dF=10 +Envelope=0,100 9645,62 16879,80 26270,10 42260,83 50509,52 58631,90 67260,0 + +[NoiseBand2] +On=1 +Level=94 +F=55 +dF=7 +Envelope=0,6 1500,30 19924,53 28935,36 34645,73 43021,46 51905,73 62184,55 68022,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/recption.ds b/src/samples/drumsynth/misc_fx/recption.ds new file mode 100644 index 0000000..087cad2 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/recption.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=500 +Level=-7 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=82 +F1=20 +F2=9000 +Droop=0 +Phase=0 +Envelope=0,100 5846,38 18439,0 25384,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=4 +Track1=1 +F2=630 +Wave2=1 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 11593,67 22486,0 +Envelope2=0,100 24435,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/sci-fi.ds b/src/samples/drumsynth/misc_fx/sci-fi.ds new file mode 100644 index 0000000..51392c6 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/sci-fi.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=-3 +Filter=0 +HighPass=0 +Resonance=63 +FilterEnv=0,1 6504,17 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=90 +Envelope=0,71 635,11 2459,50 2459,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=4336 +Wave1=4 +Track1=1 +F2=142 +Wave2=0 +Track2=0 +Method=1 +Param=100 +Envelope1=0,85 1904,53 10708,29 18639,0 +Envelope2=0,100 19036,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/sci-fi_door_open.ds b/src/samples/drumsynth/misc_fx/sci-fi_door_open.ds new file mode 100644 index 0000000..9c9edc0 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/sci-fi_door_open.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=200 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=133 +F1=120 +F2=50 +Droop=73 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=144 +Slope=100 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=110 +Wave2=1 +Track2=1 +Method=1 +Param=86 +Envelope1=0,62 11343,86 19288,0 +Envelope2=0,4 3398,40 13492,23 19388,0 +Filter=0 + +[NoiseBand] +On=0 +Level=36 +F=130 +dF=15 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/sickly_wineglass.ds b/src/samples/drumsynth/misc_fx/sickly_wineglass.ds new file mode 100644 index 0000000..5692717 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/sickly_wineglass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,74 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=181 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=134 +F1=1900 +Wave1=0 +Track1=0 +F2=3420 +Wave2=0 +Track2=0 +Method=1 +Param=61 +Envelope1=0,100 1250,20 62311,0 +Envelope2=0,100 1000,20 9772,47 15736,29 30204,56 43402,23 52666,62 64976,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/sign_off.ds b/src/samples/drumsynth/misc_fx/sign_off.ds new file mode 100644 index 0000000..3167222 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/sign_off.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=1000 +Level=0 +Filter=1 +HighPass=1 +Resonance=13 +FilterEnv=0,89 1449,100 3048,11 5347,84 7196,18 9894,59 11693,17 14391,45 17389,22 442000,100 442000,0 + +[Tone] +On=1 +Level=172 +F1=5633 +F2=55 +Droop=2 +Phase=0 +Envelope=0,100 1586,0 4184,56 5830,10 6702,61 7932,10 8546,38 11293,33 13941,77 16240,15 17889,29 20388,0 + +[Noise] +On=1 +Level=108 +Slope=90 +Envelope=0,100 555,21 6696,20 18789,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=163 +F1=4872 +Wave1=1 +Track1=0 +F2=3283 +Wave2=3 +Track2=1 +Method=3 +Param=10 +Envelope1=0,15 3750,30 13192,49 19338,0 +Envelope2=0,100 1399,8 3098,89 4048,8 8095,76 9444,13 12043,62 14641,6 16990,57 20787,0 +Filter=0 + +[NoiseBand] +On=1 +Level=146 +F=220 +dF=10 +Envelope=0,14 3728,64 6821,20 11104,53 12056,14 14991,32 16022,8 17767,38 18560,0 22367,0 + +[NoiseBand2] +On=1 +Level=101 +F=330 +dF=8 +Envelope=0,100 2617,8 4997,34 6980,11 12135,62 14674,11 17688,32 23240,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/slow_moving_traffic.ds b/src/samples/drumsynth/misc_fx/slow_moving_traffic.ds new file mode 100644 index 0000000..6491ba5 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/slow_moving_traffic.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=-4 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6223,17 444000,100 444000,0 + +[Tone] +On=1 +Level=9 +F1=8000 +F2=30 +Droop=20 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 4442,0 + +[Noise] +On=0 +Level=101 +Slope=-10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=0 +Track1=1 +F2=4353 +Wave2=4 +Track2=0 +Method=1 +Param=90 +Envelope1=0,7 444,67 1174,24 2570,75 4632,93 6885,10 8820,35 10406,0 +Envelope2=0,15 2379,35 3458,92 5616,24 7234,24 8566,69 11580,0 +Filter=0 + +[NoiseBand] +On=0 +Level=74 +F=220 +dF=20 +Envelope=0,100 750,20 2221,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=27 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/synthetic_dive.ds b/src/samples/drumsynth/misc_fx/synthetic_dive.ds new file mode 100644 index 0000000..9167296 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/synthetic_dive.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=18 +FilterEnv=0,0 23858,3 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=80 +F2=20 +Droop=15 +Phase=180 +Envelope=0,100 22336,74 37691,0 + +[Noise] +On=0 +Level=16 +Slope=-59 +Envelope=0,100 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=0 +Track1=1 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=92 +F=880 +dF=10 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=94 +F=55 +dF=7 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=41 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/synthetic_dive_crust.ds b/src/samples/drumsynth/misc_fx/synthetic_dive_crust.ds new file mode 100644 index 0000000..4355210 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/synthetic_dive_crust.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=18 +FilterEnv=0,0 23858,3 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=80 +F2=20 +Droop=15 +Phase=180 +Envelope=0,100 22336,74 37691,0 + +[Noise] +On=0 +Level=16 +Slope=-59 +Envelope=0,100 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=0 +Track1=1 +F2=220 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=92 +F=880 +dF=10 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=94 +F=55 +dF=7 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=41 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/teeth.ds b/src/samples/drumsynth/misc_fx/teeth.ds new file mode 100644 index 0000000..0fe3f41 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/teeth.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=-3 +Filter=1 +HighPass=1 +Resonance=73 +FilterEnv=0,98 4838,23 19036,14 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=880 +F2=55 +Droop=0 +Phase=65 +Envelope=0,100 2379,46 7932,20 17926,6 42514,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=100 +Wave1=0 +Track1=0 +F2=20 +Wave2=4 +Track2=1 +Method=1 +Param=30 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=8865 +dF=90 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=15 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/the_plot_thickens.ds b/src/samples/drumsynth/misc_fx/the_plot_thickens.ds new file mode 100644 index 0000000..e43d55e --- /dev/null +++ b/src/samples/drumsynth/misc_fx/the_plot_thickens.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,21 14277,30 33313,65 46797,27 75351,50 80903,26 97559,29 107871,12 115802,20 123734,5 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=40392 +F2=880 +Droop=50 +Phase=0 +Envelope=0,100 16656,47 30140,29 51556,14 140390,0 + +[Noise] +On=1 +Level=94 +Slope=96 +Envelope=0,2 198,91 397,25 523,83 841,11 1340,93 1658,14 2284,30 3974,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=114 +F1=5200 +Wave1=4 +Track1=0 +F2=195.998 +Wave2=2 +Track2=1 +Method=2 +Param=89 +Envelope1=0,100 48383,35 88041,20 189567,7 208603,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=5732 +dF=99 +Envelope=0,100 1758,38 327577,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/the_tweek.ds b/src/samples/drumsynth/misc_fx/the_tweek.ds new file mode 100644 index 0000000..96ac9c4 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/the_tweek.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=-6 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=118 +F1=6995 +F2=50 +Droop=7 +Phase=00 +Envelope=0,100 6028,25 10628,0 22764,0 + +[Noise] +On=1 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=90 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=1 +Clipping=41 +Bits=0 +Rate=4 diff --git a/src/samples/drumsynth/misc_fx/transportive.ds b/src/samples/drumsynth/misc_fx/transportive.ds new file mode 100644 index 0000000..749bfb5 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/transportive.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=1 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,21 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=40 +F2=880 +Droop=0 +Phase=0 +Envelope=0,100 46797,49 287919,0 + +[Noise] +On=0 +Level=112 +Slope=100 +Envelope=0,100 1904,46 8487,20 42355,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=76 +F1=311.127 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=3 +Param=89 +Envelope1=0,100 48383,50 310128,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/ufo_buzz.ds b/src/samples/drumsynth/misc_fx/ufo_buzz.ds new file mode 100644 index 0000000..16e6d9b --- /dev/null +++ b/src/samples/drumsynth/misc_fx/ufo_buzz.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=500 +Level=-9 +Filter=1 +HighPass=1 +Resonance=45 +FilterEnv=0,0 19829,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=1200 +F2=200 +Droop=0 +Phase=0 +Envelope=0,100 19294,67 19666,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=4 +Track1=0 +F2=5 +Wave2=2 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 19294,67 19666,0 +Envelope2=0,100 10311,89 19070,100 19070,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=15 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/ufo_buzz_2.ds b/src/samples/drumsynth/misc_fx/ufo_buzz_2.ds new file mode 100644 index 0000000..c351eba --- /dev/null +++ b/src/samples/drumsynth/misc_fx/ufo_buzz_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=500 +Level=-6 +Filter=1 +HighPass=1 +Resonance=57 +FilterEnv=0,0 19829,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1200 +F2=200 +Droop=0 +Phase=0 +Envelope=0,100 19294,67 19666,0 + +[Noise] +On=0 +Level=130 +Slope=-100 +Envelope=0,100 596,8 1490,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=220 +Wave1=4 +Track1=1 +F2=5 +Wave2=2 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 19294,67 19666,0 +Envelope2=0,100 10311,89 19070,100 19070,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=15 +Bits=3 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/what_time_is_it.ds b/src/samples/drumsynth/misc_fx/what_time_is_it.ds new file mode 100644 index 0000000..25ea004 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/what_time_is_it.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,21 14277,30 33313,65 46797,27 75351,50 80903,26 97559,29 107871,12 115802,20 123734,5 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=40392 +F2=880 +Droop=50 +Phase=0 +Envelope=0,100 16656,47 30140,29 51556,14 140390,0 + +[Noise] +On=1 +Level=94 +Slope=96 +Envelope=0,2 198,91 397,25 523,83 841,11 1340,93 1658,14 2284,30 3974,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=114 +F1=5200 +Wave1=1 +Track1=1 +F2=195.998 +Wave2=3 +Track2=0 +Method=1 +Param=89 +Envelope1=0,100 48383,35 88041,20 189567,7 208603,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=5732 +dF=99 +Envelope=0,100 1758,38 327577,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=5 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc_fx/wipeout.ds b/src/samples/drumsynth/misc_fx/wipeout.ds new file mode 100644 index 0000000..28611e4 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/wipeout.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=23 +FilterEnv=0,1 11104,78 19036,14 444000,100 444000,0 + +[Tone] +On=0 +Level=1 +F1=880 +F2=55 +Droop=70 +Phase=65 +Envelope=0,100 2379,46 7932,20 13008,8 15784,0 22526,0 + +[Noise] +On=0 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=110 +F1=100 +Wave1=0 +Track1=1 +F2=77 +Wave2=4 +Track2=1 +Method=3 +Param=70 +Envelope1=0,100 1904,53 7059,17 12611,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=30 +Bits=1 +Rate=6 diff --git a/src/samples/drumsynth/misc_fx/wooo.ds b/src/samples/drumsynth/misc_fx/wooo.ds new file mode 100644 index 0000000..faa5d39 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/wooo.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=9 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,0 5996,62 14816,73 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=20 +F2=600 +Droop=32 +Phase=0 +Envelope=0,25 7995,72 14182,0 + +[Noise] +On=1 +Level=34 +Slope=-70 +Envelope=0,100 635,66 2518,50 5108,79 6599,31 10375,81 13262,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=500 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,9 3585,53 16117,0 +Envelope2=0,100 2233,74 4782,95 6856,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=26 +Envelope=0,61 1678,71 5558,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_fx/yeah_hit.ds b/src/samples/drumsynth/misc_fx/yeah_hit.ds new file mode 100644 index 0000000..26afda2 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/yeah_hit.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 2062,28 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=2000 +F2=50 +Droop=50 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=136 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=2 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 5790,92 10153,65 19671,49 28554,20 42990,0 +Filter=0 + +[NoiseBand] +On=1 +Level=137 +F=210 +dF=70 +Envelope=0,44 2250,30 39738,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/yeah_hit_dry.ds b/src/samples/drumsynth/misc_fx/yeah_hit_dry.ds new file mode 100644 index 0000000..8d34e71 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/yeah_hit_dry.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 2062,28 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=2000 +F2=50 +Droop=50 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=136 +F1=880 +Wave1=0 +Track1=0 +F2=110 +Wave2=2 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 5790,92 10153,65 19671,49 28554,20 42990,0 +Filter=0 + +[NoiseBand] +On=0 +Level=137 +F=210 +dF=70 +Envelope=0,44 2250,30 39738,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_fx/zipper.ds b/src/samples/drumsynth/misc_fx/zipper.ds new file mode 100644 index 0000000..5c41154 --- /dev/null +++ b/src/samples/drumsynth/misc_fx/zipper.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-4 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,89 5949,32 16419,6 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=8000 +F2=34 +Droop=20 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=50 +dF=20 +Envelope=0,44 2250,30 8883,8 18957,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/amen_ride.ds b/src/samples/drumsynth/misc_hats/amen_ride.ds new file mode 100644 index 0000000..7cd88ca --- /dev/null +++ b/src/samples/drumsynth/misc_hats/amen_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=1 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,74 7710,51 13769,50 444000,100 444000,0 + +[Tone] +On=1 +Level=24 +F1=800 +F2=500 +Droop=86 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=62 +Envelope=0,91 1110,62 2411,41 4822,21 7900,8 11073,3 14436,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=139 +F1=1020 +Wave1=0 +Track1=0 +F2=150 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,91 1110,62 2919,37 5647,20 8376,14 14436,0 +Envelope2=0,100 4025,50 10232,0 +Filter=0 + +[NoiseBand] +On=1 +Level=32 +F=305 +dF=12 +Envelope=0,100 1473,58 4164,29 7456,14 10490,0 + +[NoiseBand2] +On=1 +Level=74 +F=5000 +dF=78 +Envelope=0,100 1618,46 3141,33 4473,17 6789,8 15419,0 + +[Distortion] +On=1 +Clipping=10 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/band_pass_cymbal.ds b/src/samples/drumsynth/misc_hats/band_pass_cymbal.ds new file mode 100644 index 0000000..ae9186d --- /dev/null +++ b/src/samples/drumsynth/misc_hats/band_pass_cymbal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-3 +Stretch=100 +Level=4 +Filter=1 +HighPass=1 +Resonance=13 +FilterEnv=0,51 8646,37 18084,38 31251,68 40927,40 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=76 +Slope=100 +Envelope=0,92 793,34 3490,5 6028,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=94 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,74 1586,29 5235,18 11580,11 22843,6 39500,0 +Envelope2=0,79 16736,85 39182,88 42514,0 +Filter=0 + +[NoiseBand] +On=1 +Level=59 +F=8000 +dF=70 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[NoiseBand2] +On=1 +Level=37 +F=15000 +dF=40 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/basic_hh.ds b/src/samples/drumsynth/misc_hats/basic_hh.ds new file mode 100644 index 0000000..fa560a4 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/basic_hh.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,47 206,71 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=180 +F2=50 +Droop=31 +Phase=10 +Envelope=0,0 0,96 715,39 2458,16 6481,0 + +[Noise] +On=1 +Level=100 +Slope=100 +Envelope=0,0 0,93 380,39 1140,9 2407,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=106 +F1=1000 +Wave1=0 +Track1=0 +F2=500 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 554,38 1488,8 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=400 +dF=34 +Envelope=0,99 670,21 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=158 +F=3000 +dF=89 +Envelope=0,100 100,30 3547,0 + +[Distortion] +On=0 +Clipping=7 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc_hats/bright_808_hat.ds b/src/samples/drumsynth/misc_hats/bright_808_hat.ds new file mode 100644 index 0000000..4fabe85 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/bright_808_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=20 +FilterEnv=0,65 1071,91 2161,93 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=102 +Slope=100 +Envelope=0,100 1190,21 2657,7 4382,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=160 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=28 +F=1800 +dF=14 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=65 +F=3000 +dF=8 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=22 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/bright_808_hat_2.ds b/src/samples/drumsynth/misc_hats/bright_808_hat_2.ds new file mode 100644 index 0000000..f983f30 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/bright_808_hat_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=20 +FilterEnv=0,65 1071,91 2161,93 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=102 +Slope=100 +Envelope=0,100 1190,21 2657,7 7813,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=160 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=28 +F=1800 +dF=14 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=65 +F=3000 +dF=8 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=22 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/bright_808_hat_3.ds b/src/samples/drumsynth/misc_hats/bright_808_hat_3.ds new file mode 100644 index 0000000..f390995 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/bright_808_hat_3.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0.00 +Stretch=150 +Level=0 +Filter=0 +HighPass=0 +Resonance=20 +FilterEnv=0,65 1071,91 2161,93 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=92 +Slope=100 +Envelope=0,100 7170,88 10026,7 13357,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=12 +F1=4302 +Wave1=0 +Track1=0 +F2=8201 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,20 8217,74 12659,0 +Envelope2=0,100 3000,74 9455,74 13389,0 +Filter=0 + +[NoiseBand] +On=0 +Level=28 +F=1800 +dF=14 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=65 +F=3000 +dF=8 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=22 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/bring_me_out.ds b/src/samples/drumsynth/misc_hats/bring_me_out.ds new file mode 100644 index 0000000..e696c85 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/bring_me_out.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,100 633,14 3658,47 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=1 +Level=129 +Slope=83 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=3 +Param=2 +Envelope1=0,100 1156,57 3816,29 6698,0 +Envelope2=0,100 3009,48 6191,0 +Filter=0 + +[NoiseBand] +On=1 +Level=84 +F=6000 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=89 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_hats/clicky_hat.ds b/src/samples/drumsynth/misc_hats/clicky_hat.ds new file mode 100644 index 0000000..aae7147 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/clicky_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,63 635,94 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=30 +Slope=100 +Envelope=0,92 270,35 809,8 1919,2 3569,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=94 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 381,20 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=59 +F=20000 +dF=50 +Envelope=0,100 238,30 838,8 1891,0 + +[NoiseBand2] +On=1 +Level=24 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/close_ride.ds b/src/samples/drumsynth/misc_hats/close_ride.ds new file mode 100644 index 0000000..2e10d54 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/close_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-2 +Stretch=110 +Level=6 +Filter=1 +HighPass=1 +Resonance=13 +FilterEnv=0,51 8646,37 18084,38 32123,35 68054,25 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=76 +Slope=100 +Envelope=0,92 793,34 3490,5 6028,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=94 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 872,92 3093,28 6425,17 13563,10 24271,6 93276,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=59 +F=20000 +dF=50 +Envelope=0,100 872,92 1428,36 2855,17 7138,6 14277,4 26412,2 39976,1 87090,0 + +[NoiseBand2] +On=1 +Level=24 +F=12000 +dF=44 +Envelope=0,100 872,92 1904,29 5711,14 13087,7 24747,5 87565,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/default_hi-hat.ds b/src/samples/drumsynth/misc_hats/default_hi-hat.ds new file mode 100644 index 0000000..adcaf4d --- /dev/null +++ b/src/samples/drumsynth/misc_hats/default_hi-hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=-5 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=181 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/drama_hat.ds b/src/samples/drumsynth/misc_hats/drama_hat.ds new file mode 100644 index 0000000..3222054 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/drama_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-4 +Stretch=50 +Level=-2 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,17 800,71 41721,59 442000,100 443000,0 + +[Tone] +On=1 +Level=12 +F1=851 +F2=500 +Droop=74 +Phase=0 +Envelope=0,58 571,14 952,0 + +[Noise] +On=1 +Level=181 +Slope=87 +Envelope=0,51 555,21 1428,5 2379,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=125 +F1=400 +Wave1=3 +Track1=1 +F2=765 +Wave2=3 +Track2=0 +Method=3 +Param=32 +Envelope1=0,100 1699,10 3490,0 +Envelope2=0,89 39896,89 40531,0 +Filter=0 + +[NoiseBand] +On=0 +Level=102 +F=6800 +dF=40 +Envelope=0,100 750,16 1983,2 3490,0 + +[NoiseBand2] +On=0 +Level=82 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/drama_hat_2.ds b/src/samples/drumsynth/misc_hats/drama_hat_2.ds new file mode 100644 index 0000000..97086f5 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/drama_hat_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-6 +Stretch=50 +Level=-2 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,17 800,71 41721,59 442000,100 443000,0 + +[Tone] +On=1 +Level=12 +F1=851 +F2=500 +Droop=74 +Phase=0 +Envelope=0,58 571,14 952,0 + +[Noise] +On=1 +Level=181 +Slope=87 +Envelope=0,51 555,21 1428,5 2379,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=125 +F1=400 +Wave1=3 +Track1=1 +F2=765 +Wave2=3 +Track2=0 +Method=3 +Param=32 +Envelope1=0,100 1699,10 3490,0 +Envelope2=0,89 39896,89 40531,0 +Filter=0 + +[NoiseBand] +On=0 +Level=102 +F=6800 +dF=40 +Envelope=0,100 750,16 1983,2 3490,0 + +[NoiseBand2] +On=0 +Level=82 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/dusty_simple_hh.ds b/src/samples/drumsynth/misc_hats/dusty_simple_hh.ds new file mode 100644 index 0000000..49d4434 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/dusty_simple_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=-7 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 871,33 3214,17 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=60210 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=20 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/dusty_simple_oh.ds b/src/samples/drumsynth/misc_hats/dusty_simple_oh.ds new file mode 100644 index 0000000..607e3c1 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/dusty_simple_oh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=-7 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=1 +FilterEnv=0,32 2074,30 3214,17 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=60210 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=20 +Envelope=0,100 2945,82 4972,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=137 +F1=2000 +Wave1=0 +Track1=0 +F2=1020 +Wave2=0 +Track2=0 +Method=3 +Param=1 +Envelope1=0,100 2502,97 5210,0 +Envelope2=0,100 2074,89 6239,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/electro_hh.ds b/src/samples/drumsynth/misc_hats/electro_hh.ds new file mode 100644 index 0000000..2a054a6 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/electro_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,11 269,53 444000,100 444000,0 + +[Tone] +On=0 +Level=137 +F1=565 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 1750,20 3579,0 + +[Noise] +On=1 +Level=128 +Slope=70 +Envelope=0,71 586,27 1758,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=8865 +dF=90 +Envelope=0,68 618,66 1124,62 1504,47 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/electrometallic_hat.ds b/src/samples/drumsynth/misc_hats/electrometallic_hat.ds new file mode 100644 index 0000000..d0b305e --- /dev/null +++ b/src/samples/drumsynth/misc_hats/electrometallic_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,77 849,95 7645,100 442000,100 442000,0 + +[Tone] +On=0 +Level=123 +F1=880 +F2=112 +Droop=50 +Phase=15 +Envelope=0,100 1799,51 2998,27 5347,1 8095,0 + +[Noise] +On=1 +Level=132 +Slope=54 +Envelope=0,100 1849,57 4500,30 6496,11 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=80 +F1=5200 +Wave1=0 +Track1=0 +F2=1050 +Wave2=0 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 2439,95 7895,0 19888,0 +Envelope2=0,100 1099,71 3348,44 22336,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=6000 +dF=65 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/errie_ride.ds b/src/samples/drumsynth/misc_hats/errie_ride.ds new file mode 100644 index 0000000..e6b7bfa --- /dev/null +++ b/src/samples/drumsynth/misc_hats/errie_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-3 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,50 442000,100 442000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=94 +Slope=100 +Envelope=0,100 1666,30 4500,17 12849,5 26888,2 65436,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=96 +F1=127 +Wave1=0 +Track1=0 +F2=810 +Wave2=0 +Track2=0 +Method=3 +Param=5 +Envelope1=0,69 714,46 2617,26 8328,14 14515,7 22605,5 32599,4 44497,2 64246,0 +Envelope2=0,100 83758,100 83758,0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=15000 +dF=37 +Envelope=0,74 714,55 1190,29 4997,19 9280,14 16894,9 26888,5 38072,3 69243,0 + +[NoiseBand2] +On=1 +Level=108 +F=11542 +dF=32 +Envelope=0,73 1428,44 3807,29 7138,13 15943,5 31171,2 50683,1 63295,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/fedora_hat.ds b/src/samples/drumsynth/misc_hats/fedora_hat.ds new file mode 100644 index 0000000..433883b --- /dev/null +++ b/src/samples/drumsynth/misc_hats/fedora_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=12 +Stretch=5 +Level=3 +Filter=1 +HighPass=1 +Resonance=92 +FilterEnv=0,47 115,74 442000,100 443000,0 + +[Tone] +On=0 +Level=128 +F1=180 +F2=40 +Droop=43 +Phase=10 +Envelope=0,0 0,41 715,39 4228,21 22526,0 + +[Noise] +On=1 +Level=72 +Slope=18 +Envelope=0,0 30,93 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=11 +F1=360 +Wave1=1 +Track1=0 +F2=60 +Wave2=2 +Track2=0 +Method=1 +Param=46 +Envelope1=0,100 1490,17 22367,0 +Envelope2=0,100 3252,66 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=61 +F=385 +dF=31 +Envelope=0,63 670,21 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=82 +Envelope=0,0 115,14 1039,11 1504,0 + +[Distortion] +On=1 +Clipping=24 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/feelin'_high_hat_1.ds b/src/samples/drumsynth/misc_hats/feelin'_high_hat_1.ds new file mode 100644 index 0000000..70e5003 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/feelin'_high_hat_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,25 855,88 14691,50 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=47 +Droop=50 +Phase=110 +Envelope=0,0 0,100 899,38 4247,15 21737,0 + +[Noise] +On=1 +Level=146 +Slope=100 +Envelope=0,0 20,80 813,38 2637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=98 +F1=500 +Wave1=4 +Track1=1 +F2=800 +Wave2=1 +Track2=0 +Method=3 +Param=3 +Envelope1=0,0 20,80 1091,24 2637,0 +Envelope2=0,0 20,80 813,38 2637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=5 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/feelin'_high_hat_2.ds b/src/samples/drumsynth/misc_hats/feelin'_high_hat_2.ds new file mode 100644 index 0000000..76d1327 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/feelin'_high_hat_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,25 855,88 14691,50 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=47 +Droop=50 +Phase=110 +Envelope=0,0 0,100 899,38 4247,15 21737,0 + +[Noise] +On=1 +Level=123 +Slope=100 +Envelope=0,0 20,80 813,38 2637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=16 +F1=500 +Wave1=4 +Track1=1 +F2=800 +Wave2=1 +Track2=0 +Method=3 +Param=3 +Envelope1=0,0 20,80 1091,24 2637,0 +Envelope2=0,0 20,80 813,38 2637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=5 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/feelin'_high_hat_3.ds b/src/samples/drumsynth/misc_hats/feelin'_high_hat_3.ds new file mode 100644 index 0000000..5746f2c --- /dev/null +++ b/src/samples/drumsynth/misc_hats/feelin'_high_hat_3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=1 +Resonance=8 +FilterEnv=0,25 99,65 14691,50 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=47 +Droop=50 +Phase=110 +Envelope=0,0 0,100 899,38 4247,15 21737,0 + +[Noise] +On=1 +Level=146 +Slope=100 +Envelope=0,0 20,80 813,38 2637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=98 +F1=500 +Wave1=4 +Track1=1 +F2=800 +Wave2=1 +Track2=0 +Method=3 +Param=3 +Envelope1=0,0 20,80 1091,24 2637,0 +Envelope2=0,0 20,80 813,38 2637,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=5 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/feelin'_open_high_hat.ds b/src/samples/drumsynth/misc_hats/feelin'_open_high_hat.ds new file mode 100644 index 0000000..d36403b --- /dev/null +++ b/src/samples/drumsynth/misc_hats/feelin'_open_high_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=130 +Level=-1 +Filter=0 +HighPass=0 +Resonance=34 +FilterEnv=0,25 855,88 14691,50 442000,100 443000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=47 +Droop=50 +Phase=110 +Envelope=0,0 0,100 899,38 4247,15 21737,0 + +[Noise] +On=1 +Level=123 +Slope=100 +Envelope=0,0 20,80 2340,49 5076,38 7099,7 9320,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=60 +F1=500 +Wave1=4 +Track1=1 +F2=790 +Wave2=1 +Track2=0 +Method=3 +Param=3 +Envelope1=0,0 20,80 2161,37 8883,0 +Envelope2=0,0 0,80 1567,74 5255,53 9478,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=5 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/flat_cymbal.ds b/src/samples/drumsynth/misc_hats/flat_cymbal.ds new file mode 100644 index 0000000..82021e1 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/flat_cymbal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=200 +Level=-11 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=50 +F2=50 +Droop=0 +Phase=0 +Envelope=0,100 1777,58 5250,30 15990,8 42006,0 + +[Noise] +On=1 +Level=181 +Slope=100 +Envelope=0,100 1777,58 5250,30 9772,20 16117,10 23478,5 31854,2 45559,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=50 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=45 +F=300 +dF=12 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=1 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/get_out.ds b/src/samples/drumsynth/misc_hats/get_out.ds new file mode 100644 index 0000000..11cc97d --- /dev/null +++ b/src/samples/drumsynth/misc_hats/get_out.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=300 +Level=-3 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,84 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=108 +Slope=100 +Envelope=0,100 350,63 800,39 1799,23 3498,10 7495,3 11243,0 17282,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=150 +F1=5182 +Wave1=3 +Track1=0 +F2=4399 +Wave2=3 +Track2=0 +Method=1 +Param=61 +Envelope1=0,100 968,60 10355,16 19964,0 +Envelope2=0,100 968,60 10429,17 19890,0 +Filter=1 + +[NoiseBand] +On=1 +Level=55 +F=9200 +dF=49 +Envelope=0,100 819,78 9088,28 17282,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/hardhat.ds b/src/samples/drumsynth/misc_hats/hardhat.ds new file mode 100644 index 0000000..7a7fccb --- /dev/null +++ b/src/samples/drumsynth/misc_hats/hardhat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,18 444000,100 444000,0 + +[Tone] +On=0 +Level=133 +F1=160 +F2=140 +Droop=55 +Phase=30 +Envelope=0,100 3448,27 10500,0 + +[Noise] +On=1 +Level=166 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=200 +Wave1=0 +Track1=0 +F2=11 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 2498,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=84 +Envelope=0,100 2099,58 5447,36 11343,0 + +[NoiseBand2] +On=0 +Level=158 +F=3100 +dF=94 +Envelope=0,100 750,47 2199,20 5047,5 10993,0 + +[Distortion] +On=1 +Clipping=6 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/hardhat_2.ds b/src/samples/drumsynth/misc_hats/hardhat_2.ds new file mode 100644 index 0000000..1e59ad0 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/hardhat_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,18 444000,100 444000,0 + +[Tone] +On=0 +Level=133 +F1=160 +F2=140 +Droop=55 +Phase=30 +Envelope=0,100 3448,27 10500,0 + +[Noise] +On=1 +Level=166 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=200 +Wave1=0 +Track1=0 +F2=11 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 2498,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=1 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=0 +Level=158 +F=3100 +dF=94 +Envelope=0,100 750,47 2199,20 5047,5 10993,0 + +[Distortion] +On=1 +Clipping=6 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/hardly_hh.ds b/src/samples/drumsynth/misc_hats/hardly_hh.ds new file mode 100644 index 0000000..7197df9 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/hardly_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,9 3268,21 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=181 +Slope=81 +Envelope=0,100 222,21 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=79 +F1=300 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=3 +Param=50 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 2189,100 3775,86 6250,0 +Filter=0 + +[NoiseBand] +On=1 +Level=89 +F=8000 +dF=84 +Envelope=0,100 444,22 1586,2 3712,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/heavy_electrihat.ds b/src/samples/drumsynth/misc_hats/heavy_electrihat.ds new file mode 100644 index 0000000..6b09fff --- /dev/null +++ b/src/samples/drumsynth/misc_hats/heavy_electrihat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=80 +Level=-9 +Filter=1 +HighPass=1 +Resonance=15 +FilterEnv=0,70 5996,64 442000,100 442000,0 + +[Tone] +On=0 +Level=172 +F1=5633 +F2=55 +Droop=32 +Phase=0 +Envelope=0,100 1586,0 4184,56 5830,10 6702,61 7932,10 8546,38 22886,0 + +[Noise] +On=0 +Level=128 +Slope=-85 +Envelope=0,100 555,21 1448,4 2439,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=4872 +Wave1=1 +Track1=1 +F2=3283 +Wave2=3 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=122 +dF=67 +Envelope=0,100 11104,53 31727,26 81696,9 161013,0 + +[NoiseBand2] +On=0 +Level=101 +F=5555 +dF=60 +Envelope=0,100 932,0 2578,0 + +[Distortion] +On=1 +Clipping=26 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/hh.ds b/src/samples/drumsynth/misc_hats/hh.ds new file mode 100644 index 0000000..7d83237 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=50 +Level=1 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,40 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 635,11 10500,0 + +[Noise] +On=1 +Level=85 +Slope=100 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=4364 +Wave1=3 +Track1=0 +F2=7642 +Wave2=3 +Track2=0 +Method=0 +Param=0 +Envelope1=0,83 888,19 6218,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=9500 +dF=49 +Envelope=0,100 819,78 1639,24 4470,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=32 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/hip_overtone_hat.ds b/src/samples/drumsynth/misc_hats/hip_overtone_hat.ds new file mode 100644 index 0000000..826a7a2 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/hip_overtone_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=180 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,62 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=123 +Slope=57 +Envelope=0,100 2031,5 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=88 +F1=6543 +Wave1=3 +Track1=0 +F2=2000 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 3300,15 7500,0 +Envelope2=0,100 10866,63 31251,44 68910,0 +Filter=0 + +[NoiseBand] +On=1 +Level=45 +F=7600 +dF=81 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=68 +F=9000 +dF=40 +Envelope=0,80 1523,94 7535,26 13087,10 32996,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/large_open_hh.ds b/src/samples/drumsynth/misc_hats/large_open_hh.ds new file mode 100644 index 0000000..1b4ed75 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/large_open_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,49 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=96 +Slope=100 +Envelope=0,100 2439,95 19888,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=74 +F1=5200 +Wave1=0 +Track1=0 +F2=1025 +Wave2=0 +Track2=0 +Method=3 +Param=9 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 19888,0 +Filter=0 + +[NoiseBand] +On=1 +Level=65 +F=6000 +dF=75 +Envelope=0,100 2439,95 19888,0 + +[NoiseBand2] +On=1 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/lighthat.ds b/src/samples/drumsynth/misc_hats/lighthat.ds new file mode 100644 index 0000000..db1f860 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/lighthat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,80 444000,100 444000,0 + +[Tone] +On=0 +Level=133 +F1=160 +F2=140 +Droop=55 +Phase=30 +Envelope=0,100 3448,27 10500,0 + +[Noise] +On=1 +Level=92 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=200 +Wave1=0 +Track1=0 +F2=11 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 2498,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=1 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=1 +Level=96 +F=3100 +dF=100 +Envelope=0,100 200,35 450,15 1849,5 4997,0 + +[Distortion] +On=0 +Clipping=6 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/little_hat.ds b/src/samples/drumsynth/misc_hats/little_hat.ds new file mode 100644 index 0000000..2e88298 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/little_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,62 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=96 +Slope=100 +Envelope=0,100 2648,50 6296,20 12243,9 25584,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=80 +F1=1500 +Wave1=3 +Track1=0 +F2=650 +Wave2=3 +Track2=0 +Method=3 +Param=29 +Envelope1=0,100 3750,30 11843,8 24535,0 +Envelope2=0,100 61629,86 92087,0 +Filter=0 + +[NoiseBand] +On=1 +Level=55 +F=5000 +dF=81 +Envelope=0,100 2250,30 16690,0 + +[NoiseBand2] +On=0 +Level=68 +F=9000 +dF=40 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/live_hat.ds b/src/samples/drumsynth/misc_hats/live_hat.ds new file mode 100644 index 0000000..7113190 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/live_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=180 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,62 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=123 +Slope=57 +Envelope=0,100 2031,5 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=88 +F1=2000 +Wave1=3 +Track1=0 +F2=1200 +Wave2=3 +Track2=0 +Method=3 +Param=29 +Envelope1=0,100 3300,15 7500,0 +Envelope2=0,100 10866,63 24033,82 31251,44 68910,0 +Filter=0 + +[NoiseBand] +On=1 +Level=90 +F=7600 +dF=81 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=68 +F=9000 +dF=40 +Envelope=0,80 1523,94 7535,26 13087,10 32996,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/live_sound_hh.ds b/src/samples/drumsynth/misc_hats/live_sound_hh.ds new file mode 100644 index 0000000..d887a08 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/live_sound_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100 +Level=1 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,40 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 635,11 10500,0 + +[Noise] +On=1 +Level=85 +Slope=86 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=4364 +Wave1=3 +Track1=1 +F2=7642 +Wave2=3 +Track2=0 +Method=2 +Param=90 +Envelope1=0,83 888,19 6218,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=9500 +dF=79 +Envelope=0,100 819,78 1639,24 4470,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=32 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/live_sound_oh.ds b/src/samples/drumsynth/misc_hats/live_sound_oh.ds new file mode 100644 index 0000000..80e33ed --- /dev/null +++ b/src/samples/drumsynth/misc_hats/live_sound_oh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=300 +Level=1 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,40 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 635,11 10500,0 + +[Noise] +On=1 +Level=85 +Slope=86 +Envelope=0,100 1564,28 5996,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=4364 +Wave1=3 +Track1=1 +F2=7642 +Wave2=3 +Track2=0 +Method=2 +Param=90 +Envelope1=0,83 888,19 5330,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=1 +Level=115 +F=9500 +dF=79 +Envelope=0,100 1639,24 5108,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=32 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/loaded_hat.ds b/src/samples/drumsynth/misc_hats/loaded_hat.ds new file mode 100644 index 0000000..f4c8e5d --- /dev/null +++ b/src/samples/drumsynth/misc_hats/loaded_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=34 +FilterEnv=0,81 14691,87 442000,100 443000,0 + +[Tone] +On=0 +Level=87 +F1=50 +F2=70 +Droop=57 +Phase=10 +Envelope=0,0 89,95 899,78 899,20 1549,60 2249,19 2748,10 10144,0 + +[Noise] +On=1 +Level=72 +Slope=100 +Envelope=0,0 0,100 4797,3 6296,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=111 +F1=600 +Wave1=0 +Track1=0 +F2=859 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=15 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/loaded_open_hat.ds b/src/samples/drumsynth/misc_hats/loaded_open_hat.ds new file mode 100644 index 0000000..5a4785b --- /dev/null +++ b/src/samples/drumsynth/misc_hats/loaded_open_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=400 +Level=0 +Filter=1 +HighPass=1 +Resonance=34 +FilterEnv=0,81 14691,87 442000,100 443000,0 + +[Tone] +On=0 +Level=87 +F1=50 +F2=70 +Droop=57 +Phase=10 +Envelope=0,0 89,95 899,78 899,20 1549,60 2249,19 2748,10 10144,0 + +[Noise] +On=1 +Level=72 +Slope=100 +Envelope=0,0 0,100 4797,3 6296,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=111 +F1=600 +Wave1=0 +Track1=0 +F2=859 +Wave2=0 +Track2=0 +Method=3 +Param=8 +Envelope1=0,100 1149,49 2648,2 8545,0 +Envelope2=0,100 2755,17 5400,96 5400,11 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=119 +F=100 +dF=18 +Envelope=0,99 1788,24 4321,7 7449,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=15 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/oh_so_high_hat.ds b/src/samples/drumsynth/misc_hats/oh_so_high_hat.ds new file mode 100644 index 0000000..419a944 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/oh_so_high_hat.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100 +Level=-6 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,63 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=1000 +F2=509 +Droop=60 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=3525 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 7246,4 10693,0 + +[Distortion] +On=1 +Clipping=4 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/oil_hat.ds b/src/samples/drumsynth/misc_hats/oil_hat.ds new file mode 100644 index 0000000..47c6be1 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/oil_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,100 633,14 3658,47 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=100 +Droop=27 +Phase=0 +Envelope=0,100 1678,76 2724,4 5250,0 + +[Noise] +On=0 +Level=128 +Slope=-18 +Envelope=0,100 1235,45 2961,17 4671,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=160 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=160 +F=6000 +dF=82 +Envelope=0,100 1742,44 5083,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=31 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_hats/pedal_hh.ds b/src/samples/drumsynth/misc_hats/pedal_hh.ds new file mode 100644 index 0000000..694b0ab --- /dev/null +++ b/src/samples/drumsynth/misc_hats/pedal_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=-7 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=10 +FilterEnv=0,65 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=113 +Slope=71 +Envelope=0,100 894,45 2756,18 6901,6 10044,1 16590,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=67 +F1=4200 +Wave1=3 +Track1=0 +F2=321 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +Envelope2=0,100 1713,62 5661,35 20560,0 +Filter=0 + +[NoiseBand] +On=1 +Level=45 +F=6238 +dF=30 +Envelope=0,100 894,45 2756,18 6901,6 13563,2 16290,0 + +[NoiseBand2] +On=1 +Level=36 +F=1000 +dF=24 +Envelope=0,100 714,13 8595,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/q_ride.ds b/src/samples/drumsynth/misc_hats/q_ride.ds new file mode 100644 index 0000000..0e83114 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/q_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=180 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,41 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=62 +Slope=64 +Envelope=0,100 4500,30 24493,5 53555,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=58 +F1=6543 +Wave1=3 +Track1=0 +F2=2000 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 3300,95 8376,57 18528,26 47082,0 +Envelope2=0,100 10866,63 31251,44 68910,0 +Filter=0 + +[NoiseBand] +On=0 +Level=45 +F=7600 +dF=81 +Envelope=0,100 4997,50 14515,20 23240,6 34820,0 + +[NoiseBand2] +On=1 +Level=68 +F=9000 +dF=40 +Envelope=0,80 1523,94 7535,26 13087,10 32996,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/q_ride_2.ds b/src/samples/drumsynth/misc_hats/q_ride_2.ds new file mode 100644 index 0000000..58485da --- /dev/null +++ b/src/samples/drumsynth/misc_hats/q_ride_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=180 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,41 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=53 +Slope=81 +Envelope=0,100 1650,59 6345,24 20305,10 65357,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=106 +F1=6543 +Wave1=3 +Track1=0 +F2=2000 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 1269,60 3426,31 10279,11 65357,0 +Envelope2=0,100 10866,63 31251,44 68910,0 +Filter=0 + +[NoiseBand] +On=0 +Level=45 +F=7600 +dF=81 +Envelope=0,100 4997,50 14515,20 23240,6 34820,0 + +[NoiseBand2] +On=1 +Level=68 +F=9000 +dF=83 +Envelope=0,100 3750,30 20940,9 56600,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/sandy_ride.ds b/src/samples/drumsynth/misc_hats/sandy_ride.ds new file mode 100644 index 0000000..70a781e --- /dev/null +++ b/src/samples/drumsynth/misc_hats/sandy_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,21 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=40 +F2=880 +Droop=0 +Phase=0 +Envelope=0,100 46797,49 287919,0 + +[Noise] +On=1 +Level=94 +Slope=100 +Envelope=0,100 8090,64 27364,38 120403,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=51 +F1=5200 +Wave1=2 +Track1=1 +F2=195.998 +Wave2=2 +Track2=0 +Method=3 +Param=59 +Envelope1=0,100 48383,35 72178,12 125320,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=65.406 +dF=9 +Envelope=0,100 1758,38 23835,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=6 diff --git a/src/samples/drumsynth/misc_hats/scratchy_hh.ds b/src/samples/drumsynth/misc_hats/scratchy_hh.ds new file mode 100644 index 0000000..c116ba9 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/scratchy_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=13 +FilterEnv=0,6 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=170 +Slope=96 +Envelope=0,100 500,20 1301,2 4854,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=85 +F1=542 +Wave1=0 +Track1=0 +F2=821 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=10000 +dF=80 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=87 +F=17000 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/shaker_ride.ds b/src/samples/drumsynth/misc_hats/shaker_ride.ds new file mode 100644 index 0000000..8b818e1 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/shaker_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=-7 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,65 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=113 +Slope=81 +Envelope=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=67 +F1=4600 +Wave1=3 +Track1=0 +F2=321 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +Envelope2=0,100 1713,62 5661,35 20560,0 +Filter=0 + +[NoiseBand] +On=1 +Level=45 +F=6500 +dF=30 +Envelope=0,100 894,45 2756,18 6901,6 13563,2 26174,0 + +[NoiseBand2] +On=1 +Level=36 +F=1000 +dF=24 +Envelope=0,100 714,13 2855,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/shaker_ride_long.ds b/src/samples/drumsynth/misc_hats/shaker_ride_long.ds new file mode 100644 index 0000000..d7468e0 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/shaker_ride_long.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=-7 +Stretch=180 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,65 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=113 +Slope=81 +Envelope=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=67 +F1=4600 +Wave1=3 +Track1=0 +F2=321 +Wave2=3 +Track2=0 +Method=3 +Param=10 +Envelope1=0,100 894,45 2756,18 6901,6 13563,2 26174,0 +Envelope2=0,100 1713,62 5661,35 20560,0 +Filter=0 + +[NoiseBand] +On=1 +Level=45 +F=6500 +dF=30 +Envelope=0,100 894,45 2756,18 6901,6 13563,2 26174,0 + +[NoiseBand2] +On=1 +Level=36 +F=1000 +dF=24 +Envelope=0,100 714,13 2855,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/simple_ride.ds b/src/samples/drumsynth/misc_hats/simple_ride.ds new file mode 100644 index 0000000..4c392c8 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/simple_ride.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=80 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=74 +Slope=100 +Envelope=0,100 1650,30 6853,14 14467,6 26904,5 32107,3 37945,2 54697,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=72 +F1=338 +Wave1=0 +Track1=0 +F2=9865 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 1396,56 3934,20 7487,12 55839,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=0 +Level=76 +F=9000 +dF=71 +Envelope=0,100 1199,100 4397,67 6346,60 9644,62 11543,50 12792,35 15540,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/sleepy_1.ds b/src/samples/drumsynth/misc_hats/sleepy_1.ds new file mode 100644 index 0000000..db2a2b5 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/sleepy_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,62 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=109 +Slope=100 +Envelope=0,100 2648,34 4997,11 18789,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=88 +F1=1500 +Wave1=3 +Track1=0 +F2=650 +Wave2=3 +Track2=0 +Method=3 +Param=29 +Envelope1=0,100 3750,30 11843,8 24535,0 +Envelope2=0,100 61629,86 92087,0 +Filter=0 + +[NoiseBand] +On=1 +Level=76 +F=5000 +dF=81 +Envelope=0,100 2250,30 16690,0 + +[NoiseBand2] +On=0 +Level=68 +F=9000 +dF=40 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/sleepy_2.ds b/src/samples/drumsynth/misc_hats/sleepy_2.ds new file mode 100644 index 0000000..898a73b --- /dev/null +++ b/src/samples/drumsynth/misc_hats/sleepy_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett - http://www.abel.co.uk/~maxim/ +Tuning=0 +Stretch=10 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,62 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=74 +Slope=57 +Envelope=0,100 2031,5 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=88 +F1=1000 +Wave1=3 +Track1=0 +F2=650 +Wave2=3 +Track2=0 +Method=3 +Param=29 +Envelope1=0,100 3750,30 11843,8 24535,0 +Envelope2=0,100 61629,86 92087,0 +Filter=0 + +[NoiseBand] +On=1 +Level=90 +F=7600 +dF=97 +Envelope=0,100 2250,30 16690,0 + +[NoiseBand2] +On=0 +Level=68 +F=9000 +dF=40 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/sleepy_ride.ds b/src/samples/drumsynth/misc_hats/sleepy_ride.ds new file mode 100644 index 0000000..ff75d09 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/sleepy_ride.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=120 +Level=-2 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=2000 +F2=50 +Droop=57 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=128 +Slope=100 +Envelope=0,92 714,56 2776,31 5631,14 14912,2 30854,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=59 +F1=2000 +Wave1=3 +Track1=1 +F2=3000 +Wave2=4 +Track2=0 +Method=3 +Param=6 +Envelope1=0,100 1666,44 2617,27 4045,16 7694,3 29982,0 +Envelope2=0,82 2459,47 9201,25 20464,9 32678,0 +Filter=0 + +[NoiseBand] +On=1 +Level=13 +F=1732 +dF=4 +Envelope=0,100 1824,50 2776,26 4521,14 8487,7 31092,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_hats/sleepy_ride_2.ds b/src/samples/drumsynth/misc_hats/sleepy_ride_2.ds new file mode 100644 index 0000000..f174fc0 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/sleepy_ride_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=130 +Level=-3 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,48 21193,37 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=2000 +F2=50 +Droop=57 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=111 +Slope=93 +Envelope=0,100 635,63 1015,49 2792,35 5584,23 9899,14 14594,9 20178,5 26523,2 37057,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=59 +F1=2000 +Wave1=3 +Track1=1 +F2=3000 +Wave2=4 +Track2=0 +Method=3 +Param=6 +Envelope1=0,100 1015,49 3300,25 7741,11 13706,5 23858,2 36803,0 +Envelope2=0,66 9518,51 25127,25 49113,0 +Filter=0 + +[NoiseBand] +On=1 +Level=13 +F=1732 +dF=4 +Envelope=0,100 1015,49 3500,20 12818,3 36803,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_hats/slick_hat.ds b/src/samples/drumsynth/misc_hats/slick_hat.ds new file mode 100644 index 0000000..297c498 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/slick_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=70 +Level=0 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,63 635,94 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=104 +Slope=100 +Envelope=0,92 200,84 787,79 1919,2 3569,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 381,20 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=0 +Level=16 +F=20000 +dF=50 +Envelope=0,100 238,30 838,8 1891,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/slick_hat_compressd_open.ds b/src/samples/drumsynth/misc_hats/slick_hat_compressd_open.ds new file mode 100644 index 0000000..0e5f1f6 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/slick_hat_compressd_open.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,63 635,94 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=125 +Slope=100 +Envelope=0,64 6663,64 6853,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=16 +F=20000 +dF=50 +Envelope=0,100 238,30 838,8 1891,0 + +[NoiseBand2] +On=1 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/slick_hat_half_open.ds b/src/samples/drumsynth/misc_hats/slick_hat_half_open.ds new file mode 100644 index 0000000..1c628a8 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/slick_hat_half_open.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,63 635,94 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=125 +Slope=100 +Envelope=0,64 1919,59 1919,2 3569,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=16 +F=20000 +dF=50 +Envelope=0,100 238,30 838,8 1891,0 + +[NoiseBand2] +On=1 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/slick_hat_open.ds b/src/samples/drumsynth/misc_hats/slick_hat_open.ds new file mode 100644 index 0000000..4655339 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/slick_hat_open.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=4 +FilterEnv=0,63 635,94 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=16 +F=20000 +dF=50 +Envelope=0,100 238,30 838,8 1891,0 + +[NoiseBand2] +On=1 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/slide_hat.ds b/src/samples/drumsynth/misc_hats/slide_hat.ds new file mode 100644 index 0000000..cccc5ad --- /dev/null +++ b/src/samples/drumsynth/misc_hats/slide_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=-1 +Stretch=80 +Level=6 +Filter=1 +HighPass=1 +Resonance=7 +FilterEnv=0,51 8646,37 18084,38 32123,35 68054,25 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=76 +Slope=94 +Envelope=0,92 476,45 2379,30 5235,21 8328,13 14753,5 22843,1 31885,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=84 +F1=200 +Wave1=0 +Track1=0 +F2=800 +Wave2=0 +Track2=0 +Method=3 +Param=5 +Envelope1=0,100 872,92 3093,28 6425,17 10708,5 15943,0 22843,0 +Envelope2=0,79 16736,85 78285,75 80903,0 +Filter=0 + +[NoiseBand] +On=0 +Level=59 +F=20000 +dF=50 +Envelope=0,100 872,92 1428,36 2855,17 7138,6 14277,4 26412,2 39976,1 64008,0 + +[NoiseBand2] +On=0 +Level=24 +F=12000 +dF=44 +Envelope=0,100 872,92 1904,29 5711,14 13087,7 24747,5 75192,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/softie_lo-fi_hat.ds b/src/samples/drumsynth/misc_hats/softie_lo-fi_hat.ds new file mode 100644 index 0000000..1f7985f --- /dev/null +++ b/src/samples/drumsynth/misc_hats/softie_lo-fi_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=5000 +dF=57 +Envelope=0,40 723,38 1449,10 2249,3 8645,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat.ds b/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat.ds new file mode 100644 index 0000000..a7fedaf --- /dev/null +++ b/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat_2.ds b/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat_2.ds new file mode 100644 index 0000000..e017bc7 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/softie_lo-fi_open_hat_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=170 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 920,100 920,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/squeeze_me_hat.ds b/src/samples/drumsynth/misc_hats/squeeze_me_hat.ds new file mode 100644 index 0000000..d376f34 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/squeeze_me_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=59 +F1=6000 +Wave1=0 +Track1=0 +F2=8000 +Wave2=0 +Track2=0 +Method=3 +Param=91 +Envelope1=0,100 750,100 1149,29 2698,6 6746,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/squeeze_me_open_hat.ds b/src/samples/drumsynth/misc_hats/squeeze_me_open_hat.ds new file mode 100644 index 0000000..697f4f3 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/squeeze_me_open_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=59 +F1=6000 +Wave1=0 +Track1=0 +F2=8000 +Wave2=0 +Track2=0 +Method=3 +Param=91 +Envelope1=0,100 6896,80 10843,33 19688,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/stack_hhh.ds b/src/samples/drumsynth/misc_hats/stack_hhh.ds new file mode 100644 index 0000000..e0d816b --- /dev/null +++ b/src/samples/drumsynth/misc_hats/stack_hhh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=1 +Level=11 +F1=8000 +F2=3000 +Droop=6 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=43 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 1396,24 3680,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=12000 +dF=73 +Envelope=0,100 666,11 4500,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/starry_hh.ds b/src/samples/drumsynth/misc_hats/starry_hh.ds new file mode 100644 index 0000000..873b624 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/starry_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,53 871,50 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=3400 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=1 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/starry_short_oh.ds b/src/samples/drumsynth/misc_hats/starry_short_oh.ds new file mode 100644 index 0000000..6b00826 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/starry_short_oh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,53 871,50 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=128 +Slope=20 +Envelope=0,100 1140,69 1457,41 4671,11 8187,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=3400 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=1 +Method=3 +Param=0 +Envelope1=0,100 8266,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/static_tone_hat.ds b/src/samples/drumsynth/misc_hats/static_tone_hat.ds new file mode 100644 index 0000000..b98208f --- /dev/null +++ b/src/samples/drumsynth/misc_hats/static_tone_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-5 +Filter=0 +HighPass=1 +Resonance=9 +FilterEnv=0,0 1507,43 8646,43 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=8000 +F2=20 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=0 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=82 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=3 +Param=59 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=0 +Level=29 +F=50 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=24 +Bits=6 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/tarp_hh.ds b/src/samples/drumsynth/misc_hats/tarp_hh.ds new file mode 100644 index 0000000..52aaa22 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/tarp_hh.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=3 +Filter=1 +HighPass=1 +Resonance=45 +FilterEnv=0,77 3173,0 9994,0 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=5632 +F2=55 +Droop=50 +Phase=65 +Envelope=0,100 1586,0 10500,0 + +[Noise] +On=1 +Level=146 +Slope=-94 +Envelope=0,71 635,11 1110,0 2459,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=110 +F1=550 +Wave1=0 +Track1=0 +F2=241 +Wave2=1 +Track2=1 +Method=1 +Param=100 +Envelope1=0,100 1904,53 5235,26 11580,0 +Envelope2=0,100 317,49 1110,29 2221,10 4283,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=110 +dF=10 +Envelope=0,68 618,66 1124,62 1269,40 3252,15 8487,2 18877,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=8 +Bits=2 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/the_sting_hat.ds b/src/samples/drumsynth/misc_hats/the_sting_hat.ds new file mode 100644 index 0000000..3f72378 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/the_sting_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=50 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=96 +Slope=100 +Envelope=0,100 1199,100 2449,59 4397,23 6346,8 9644,2 15540,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=123 +F1=338 +Wave1=0 +Track1=0 +F2=9865 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 400,65 1799,12 5647,2 12792,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=78 +F=9000 +dF=71 +Envelope=0,100 1199,100 2449,59 4397,23 6346,8 9644,2 15540,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/the_sting_hat_2.ds b/src/samples/drumsynth/misc_hats/the_sting_hat_2.ds new file mode 100644 index 0000000..8e97bd6 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/the_sting_hat_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=80 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=96 +Slope=100 +Envelope=0,35 949,80 2449,59 4397,23 6346,8 9644,2 15540,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=123 +F1=338 +Wave1=0 +Track1=0 +F2=9865 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 600,68 949,39 1949,17 3798,1 9594,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=78 +F=9000 +dF=71 +Envelope=0,100 1199,100 2449,59 4397,23 6346,8 9644,2 15540,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/the_sting_open_hat.ds b/src/samples/drumsynth/misc_hats/the_sting_open_hat.ds new file mode 100644 index 0000000..e0c9dc9 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/the_sting_open_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=80 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,20 150,56 19274,84 68054,34 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=74 +Slope=100 +Envelope=0,35 949,80 6096,86 9044,29 10993,25 13142,26 15540,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=72 +F1=338 +Wave1=0 +Track1=0 +F2=9865 +Wave2=0 +Track2=0 +Method=3 +Param=34 +Envelope1=0,100 14291,78 16740,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=0 + +[NoiseBand] +On=1 +Level=76 +F=9000 +dF=71 +Envelope=0,100 1199,100 4397,67 6346,60 9644,62 11543,50 12792,35 15540,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_hats/threshold_noise.ds b/src/samples/drumsynth/misc_hats/threshold_noise.ds new file mode 100644 index 0000000..d925376 --- /dev/null +++ b/src/samples/drumsynth/misc_hats/threshold_noise.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,88 442000,100 442000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=521 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Method=3 +Param=91 +Envelope1=0,100 2349,9 26634,-1 26634,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=1 + +[NoiseBand] +On=0 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/threshold_noise_open.ds b/src/samples/drumsynth/misc_hats/threshold_noise_open.ds new file mode 100644 index 0000000..888627e --- /dev/null +++ b/src/samples/drumsynth/misc_hats/threshold_noise_open.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=9 +Filter=0 +HighPass=1 +Resonance=0 +FilterEnv=0,88 442000,100 442000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=125 +Slope=100 +Envelope=0,59 5806,57 8947,32 16690,4 21637,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=521 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Method=3 +Param=91 +Envelope1=0,100 8804,95 15940,42 18639,0 26634,-1 26634,0 +Envelope2=0,79 16736,85 89707,83 97797,0 +Filter=1 + +[NoiseBand] +On=0 +Level=129 +F=5000 +dF=57 +Envelope=0,40 8895,25 13392,6 18888,0 + +[NoiseBand2] +On=0 +Level=6 +F=12000 +dF=44 +Envelope=0,57 95,21 714,9 1666,2 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_hats/touch_me_hat.ds b/src/samples/drumsynth/misc_hats/touch_me_hat.ds new file mode 100644 index 0000000..e26699c --- /dev/null +++ b/src/samples/drumsynth/misc_hats/touch_me_hat.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,74 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=181 +Slope=100 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=134 +F1=1900 +Wave1=0 +Track1=0 +F2=3420 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=5 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/ambient_tom.ds b/src/samples/drumsynth/misc_perc/ambient_tom.ds new file mode 100644 index 0000000..bf2beaf --- /dev/null +++ b/src/samples/drumsynth/misc_perc/ambient_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=156 +F1=600 +F2=100 +Droop=50 +Phase=0 +Envelope=0,100 1750,20 6983,0 + +[Noise] +On=0 +Level=146 +Slope=10 +Envelope=0,100 500,20 1694,2 2597,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=155 +F=50 +dF=10 +Envelope=0,100 750,20 5986,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/bell.ds b/src/samples/drumsynth/misc_perc/bell.ds new file mode 100644 index 0000000..c44a9bd --- /dev/null +++ b/src/samples/drumsynth/misc_perc/bell.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=59 +FilterEnv=0,41 1849,20 5447,40 442000,100 442000,0 + +[Tone] +On=1 +Level=43 +F1=7000 +F2=6300 +Droop=78 +Phase=0 +Envelope=0,100 1749,22 4997,0 + +[Noise] +On=0 +Level=85 +Slope=92 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=131 +F1=7182 +Wave1=3 +Track1=1 +F2=6399 +Wave2=3 +Track2=1 +Method=0 +Param=50 +Envelope1=0,100 1639,21 5215,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=0 +Level=115 +F=9500 +dF=49 +Envelope=0,100 819,78 1639,24 4470,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/bell_rim.ds b/src/samples/drumsynth/misc_perc/bell_rim.ds new file mode 100644 index 0000000..adcf8c9 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/bell_rim.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=4 +Filter=1 +HighPass=1 +Resonance=6 +FilterEnv=0,57 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=500 +Droop=22 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=1 +Level=119 +Slope=-72 +Envelope=0,0 0,98 42,93 69,43 226,12 396,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=109 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 1190,10 2855,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=161 +F=98 +dF=12 +Envelope=0,0 7,100 1788,56 4470,32 12887,17 15793,0 + +[NoiseBand2] +On=1 +Level=181 +F=1000 +dF=19 +Envelope=0,100 100,30 952,8 1904,1 4759,0 7852,0 + +[Distortion] +On=1 +Clipping=0 +Bits=3 +Rate=3 diff --git a/src/samples/drumsynth/misc_perc/clav.ds b/src/samples/drumsynth/misc_perc/clav.ds new file mode 100644 index 0000000..2e383e8 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/clav.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/clav_2.ds b/src/samples/drumsynth/misc_perc/clav_2.ds new file mode 100644 index 0000000..e5efc57 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/clav_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,20 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=330 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1200 +dF=80 +Envelope=0,100 618,7 1473,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/deep_cowbell.ds b/src/samples/drumsynth/misc_perc/deep_cowbell.ds new file mode 100644 index 0000000..4d7a966 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/deep_cowbell.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,8 6107,53 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=-70 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=160 +F1=330 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=60 +Envelope1=0,100 949,69 3569,28 7059,8 9915,0 +Envelope2=0,100 3000,30 16339,0 +Filter=0 + +[NoiseBand] +On=1 +Level=28 +F=1800 +dF=14 +Envelope=0,100 1904,70 2157,10 9010,5 13325,1 14848,0 + +[NoiseBand2] +On=1 +Level=72 +F=2000 +dF=3 +Envelope=0,100 349,56 888,32 2031,11 10184,0 + +[Distortion] +On=1 +Clipping=5 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/dist_tom.ds b/src/samples/drumsynth/misc_perc/dist_tom.ds new file mode 100644 index 0000000..76cef9b --- /dev/null +++ b/src/samples/drumsynth/misc_perc/dist_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=300 +F2=120 +Droop=32 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=4 +Rate=4 diff --git a/src/samples/drumsynth/misc_perc/dist_tom_2.ds b/src/samples/drumsynth/misc_perc/dist_tom_2.ds new file mode 100644 index 0000000..bc9e1d1 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/dist_tom_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=1 +HighPass=1 +Resonance=38 +FilterEnv=0,7 3880,23 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=120 +Droop=32 +Phase=0 +Envelope=0,100 1750,20 6112,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=31 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/door_knock.ds b/src/samples/drumsynth/misc_perc/door_knock.ds new file mode 100644 index 0000000..9e86365 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/door_knock.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=-7 +Stretch=100 +Level=4 +Filter=1 +HighPass=1 +Resonance=9 +FilterEnv=0,0 1507,43 8646,43 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=8000 +F2=55 +Droop=68 +Phase=65 +Envelope=0,100 13087,28 35217,0 + +[Noise] +On=1 +Level=47 +Slope=55 +Envelope=0,100 1428,0 9000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=82 +F1=1760 +Wave1=3 +Track1=1 +F2=440 +Wave2=3 +Track2=1 +Method=3 +Param=59 +Envelope1=0,100 4600,34 36882,0 +Envelope2=0,100 16339,28 32599,0 +Filter=0 + +[NoiseBand] +On=1 +Level=29 +F=50 +dF=20 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/electric_clav.ds b/src/samples/drumsynth/misc_perc/electric_clav.ds new file mode 100644 index 0000000..2b21b8a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/electric_clav.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-4 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=40 +Droop=60 +Phase=12 +Envelope=0,100 1699,46 5697,13 8445,5 11693,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=890 +dF=0 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=32 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/feel_me_clinky.ds b/src/samples/drumsynth/misc_perc/feel_me_clinky.ds new file mode 100644 index 0000000..12d5596 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/feel_me_clinky.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=12 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,53 6446,9 14391,0 444000,100 444000,0 + +[Tone] +On=0 +Level=148 +F1=220 +F2=220 +Droop=71 +Phase=12 +Envelope=0,85 3046,85 3934,48 5838,17 8630,0 + +[Noise] +On=0 +Level=61 +Slope=-14 +Envelope=0,100 400,17 1249,5 12542,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=158 +F1=220 +Wave1=0 +Track1=1 +F2=340 +Wave2=2 +Track2=0 +Method=1 +Param=47 +Envelope1=0,82 1904,42 4061,17 8376,7 21066,0 +Envelope2=0,82 3000,82 4822,62 6853,44 8757,31 11295,18 14975,9 23985,0 +Filter=0 + +[NoiseBand] +On=0 +Level=74 +F=50 +dF=13 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[NoiseBand2] +On=0 +Level=12 +F=80 +dF=23 +Envelope=0,100 1269,65 2665,50 4442,36 6345,26 9137,17 13579,10 20432,5 58377,0 + +[Distortion] +On=1 +Clipping=0 +Bits=6 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/fidelity_faction_tom.ds b/src/samples/drumsynth/misc_perc/fidelity_faction_tom.ds new file mode 100644 index 0000000..58c2256 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/fidelity_faction_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0.00 +Stretch=500 +Level=0 +Filter=1 +HighPass=1 +Resonance=50 +FilterEnv=0,11 6223,17 444000,100 444000,0 + +[Tone] +On=1 +Level=145 +F1=1500 +F2=120 +Droop=40 +Phase=0 +Envelope=0,100 412,32 1047,10 1682,2 4442,0 + +[Noise] +On=0 +Level=101 +Slope=-10 +Envelope=0,100 857,34 2602,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=101 +F1=220 +Wave1=3 +Track1=1 +F2=1720 +Wave2=0 +Track2=1 +Method=1 +Param=80 +Envelope1=0,100 1174,24 2189,0 +Envelope2=0,100 1000,20 6872,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=70 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=70 +Envelope=0,100 744,45 2803,0 + +[Distortion] +On=1 +Clipping=24 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/funk_box_perc_1.ds b/src/samples/drumsynth/misc_perc/funk_box_perc_1.ds new file mode 100644 index 0000000..d0d95ae --- /dev/null +++ b/src/samples/drumsynth/misc_perc/funk_box_perc_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5473,26 17608,0 + +[Noise] +On=1 +Level=51 +Slope=-42 +Envelope=0,100 278,14 595,4 793,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=290 +Wave1=0 +Track1=0 +F2=254 +Wave2=1 +Track2=1 +Method=2 +Param=75 +Envelope1=0,100 714,20 4997,6 10232,3 17132,1 22367,0 +Envelope2=0,48 6425,17 15943,0 +Filter=0 + +[NoiseBand] +On=1 +Level=36 +F=130 +dF=15 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=1 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/funk_box_perc_2.ds b/src/samples/drumsynth/misc_perc/funk_box_perc_2.ds new file mode 100644 index 0000000..e9ccab9 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/funk_box_perc_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5473,26 17608,0 + +[Noise] +On=1 +Level=51 +Slope=-42 +Envelope=0,100 278,14 595,4 793,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=350 +Wave1=0 +Track1=0 +F2=312.3 +Wave2=1 +Track2=1 +Method=2 +Param=86 +Envelope1=0,100 714,20 4997,6 10232,3 17132,1 22367,0 +Envelope2=0,48 6425,17 15943,0 +Filter=0 + +[NoiseBand] +On=1 +Level=36 +F=130 +dF=15 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=1 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/funkay_timbale.ds b/src/samples/drumsynth/misc_perc/funkay_timbale.ds new file mode 100644 index 0000000..4750b3a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/funkay_timbale.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,14 4981,42 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=150 +F2=300 +Droop=78 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=41 +Slope=-59 +Envelope=0,100 222,14 508,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=500 +Wave1=0 +Track1=1 +F2=200 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3750,30 7500,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=6000 +dF=8 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=2370 +dF=7 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=2 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_perc/give_it_to_me.ds b/src/samples/drumsynth/misc_perc/give_it_to_me.ds new file mode 100644 index 0000000..3103724 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/give_it_to_me.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=-9 +Filter=1 +HighPass=1 +Resonance=32 +FilterEnv=0,10 9844,77 22986,39 442000,100 443000,0 + +[Tone] +On=0 +Level=132 +F1=2000 +F2=1600 +Droop=22 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=0 +Level=119 +Slope=100 +Envelope=0,0 0,98 635,53 2459,25 6028,10 10311,5 16498,1 26095,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=166 +F1=200 +Wave1=0 +Track1=0 +F2=745 +Wave2=2 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 2199,80 5047,56 9144,39 19788,19 23036,0 +Envelope2=0,100 2349,59 7395,20 22236,0 +Filter=0 + +[NoiseBand] +On=0 +Level=67 +F=20000 +dF=52 +Envelope=0,0 7,100 1788,56 3331,30 6742,13 10628,5 16181,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=26 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/hammond_cowbell.ds b/src/samples/drumsynth/misc_perc/hammond_cowbell.ds new file mode 100644 index 0000000..772e6f5 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/hammond_cowbell.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,61 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=1000 +F2=509 +Droop=60 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=90 +F=7122 +dF=37 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/hollow_wood.ds b/src/samples/drumsynth/misc_perc/hollow_wood.ds new file mode 100644 index 0000000..35a7a31 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/hollow_wood.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,20 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=330 +Wave2=0 +Track2=0 +Method=2 +Param=97 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1200 +dF=80 +Envelope=0,100 618,7 1473,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/hollow_wood_2.ds b/src/samples/drumsynth/misc_perc/hollow_wood_2.ds new file mode 100644 index 0000000..1ef45f7 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/hollow_wood_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=12 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,20 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=573 +Wave1=0 +Track1=0 +F2=330 +Wave2=0 +Track2=0 +Method=2 +Param=97 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=92 +F=1200 +dF=80 +Envelope=0,100 618,7 1473,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=7 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/it's_the_simple_things.ds b/src/samples/drumsynth/misc_perc/it's_the_simple_things.ds new file mode 100644 index 0000000..b8e3f5a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/it's_the_simple_things.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=40 +FilterEnv=0,14 4981,42 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=150 +F2=300 +Droop=78 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=34 +Slope=-70 +Envelope=0,100 4500,30 9000,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=500 +Wave1=2 +Track1=1 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=61 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3750,30 7500,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=26 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=4 diff --git a/src/samples/drumsynth/misc_perc/layered_sleigh_bell.ds b/src/samples/drumsynth/misc_perc/layered_sleigh_bell.ds new file mode 100644 index 0000000..7c6aad7 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/layered_sleigh_bell.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=0 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,0 351372,1 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=500 +F2=50 +Droop=97 +Phase=00 +Envelope=0,100 64246,29 325991,0 + +[Noise] +On=1 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=342 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=49 +Bits=7 +Rate=7 diff --git a/src/samples/drumsynth/misc_perc/light_tamb_1.ds b/src/samples/drumsynth/misc_perc/light_tamb_1.ds new file mode 100644 index 0000000..96f371e --- /dev/null +++ b/src/samples/drumsynth/misc_perc/light_tamb_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,83 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=137 +Slope=93 +Envelope=0,74 364,50 477,11 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=34 +F=7000 +dF=54 +Envelope=0,100 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 4244,3 5321,0 + +[NoiseBand2] +On=1 +Level=106 +F=8300 +dF=22 +Envelope=0,100 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3911,31 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/light_tamb_2.ds b/src/samples/drumsynth/misc_perc/light_tamb_2.ds new file mode 100644 index 0000000..1b21487 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/light_tamb_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,83 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=137 +Slope=93 +Envelope=0,74 364,50 477,11 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=34 +F=7000 +dF=54 +Envelope=0,100 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=97 +F=8300 +dF=22 +Envelope=0,100 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/light_tamb_3.ds b/src/samples/drumsynth/misc_perc/light_tamb_3.ds new file mode 100644 index 0000000..a0d81f9 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/light_tamb_3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,83 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=137 +Slope=93 +Envelope=0,74 364,50 477,11 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=34 +F=7000 +dF=54 +Envelope=0,100 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=76 +F=8300 +dF=22 +Envelope=0,100 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/like_a_tabla_1.ds b/src/samples/drumsynth/misc_perc/like_a_tabla_1.ds new file mode 100644 index 0000000..f64a59e --- /dev/null +++ b/src/samples/drumsynth/misc_perc/like_a_tabla_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,0 550,21 849,31 1549,37 2399,40 4247,40 444000,100 444000,0 + +[Tone] +On=1 +Level=101 +F1=2300 +F2=230 +Droop=82 +Phase=0 +Envelope=0,100 800,41 1499,0 10500,0 + +[Noise] +On=0 +Level=104 +Slope=100 +Envelope=0,68 1699,59 1899,30 3448,13 5147,4 8495,1 14841,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=802 +Wave1=0 +Track1=0 +F2=290 +Wave2=2 +Track2=0 +Method=1 +Param=90 +Envelope1=0,100 250,50 450,19 1549,8 3648,0 +Envelope2=0,100 1000,20 13941,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=400 +dF=0 +Envelope=0,100 100,44 1249,51 2898,32 7046,8 9044,2 11443,0 + +[NoiseBand2] +On=0 +Level=65 +F=3100 +dF=40 +Envelope=0,100 1500,20 10743,0 + +[Distortion] +On=0 +Clipping=3 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/like_a_tabla_2.ds b/src/samples/drumsynth/misc_perc/like_a_tabla_2.ds new file mode 100644 index 0000000..f9d1410 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/like_a_tabla_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=200 +Level=3 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,0 550,21 849,31 1549,37 2399,40 4247,40 444000,100 444000,0 + +[Tone] +On=1 +Level=101 +F1=2300 +F2=230 +Droop=82 +Phase=0 +Envelope=0,100 800,41 1249,0 10500,0 + +[Noise] +On=0 +Level=104 +Slope=100 +Envelope=0,68 1699,59 1899,30 3448,13 5147,4 8495,1 14841,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=802 +Wave1=0 +Track1=0 +F2=290 +Wave2=2 +Track2=0 +Method=1 +Param=90 +Envelope1=0,100 250,50 450,19 1549,8 3648,0 +Envelope2=0,100 1000,20 13941,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=400 +dF=0 +Envelope=0,100 100,44 1249,51 2898,32 7046,8 9044,2 11443,0 + +[NoiseBand2] +On=0 +Level=65 +F=3100 +dF=40 +Envelope=0,100 1500,20 10743,0 + +[Distortion] +On=0 +Clipping=3 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/like_a_tabla_3.ds b/src/samples/drumsynth/misc_perc/like_a_tabla_3.ds new file mode 100644 index 0000000..72a94fd --- /dev/null +++ b/src/samples/drumsynth/misc_perc/like_a_tabla_3.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=200 +Level=3 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,0 550,21 849,31 1549,37 2399,40 4247,40 444000,100 444000,0 + +[Tone] +On=1 +Level=101 +F1=2300 +F2=230 +Droop=82 +Phase=0 +Envelope=0,100 800,41 1249,0 10500,0 + +[Noise] +On=0 +Level=104 +Slope=100 +Envelope=0,68 1699,59 1899,30 3448,13 5147,4 8495,1 14841,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=802 +Wave1=0 +Track1=1 +F2=290 +Wave2=1 +Track2=0 +Method=1 +Param=90 +Envelope1=0,100 250,50 450,19 1549,8 3648,0 +Envelope2=0,100 1000,20 13941,0 +Filter=0 + +[NoiseBand] +On=1 +Level=38 +F=400 +dF=0 +Envelope=0,100 100,44 1249,51 2898,32 7046,8 9044,2 11443,0 + +[NoiseBand2] +On=0 +Level=65 +F=3100 +dF=40 +Envelope=0,100 1500,20 10743,0 + +[Distortion] +On=0 +Clipping=3 +Bits=2 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/limited_shaker.ds b/src/samples/drumsynth/misc_perc/limited_shaker.ds new file mode 100644 index 0000000..20a77b9 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/limited_shaker.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=20 +FilterEnv=0,65 1071,91 2161,93 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=128 +Slope=-31 +Envelope=0,24 654,80 972,35 1388,74 1705,20 2320,66 2756,26 3688,12 4600,7 5572,1 7317,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=160 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=28 +F=1800 +dF=14 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=65 +F=3000 +dF=8 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=22 +Bits=4 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/lo-fi_tamb.ds b/src/samples/drumsynth/misc_perc/lo-fi_tamb.ds new file mode 100644 index 0000000..9087261 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/lo-fi_tamb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,30 7198,66 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=129 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=90 +F=7122 +dF=37 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/low_key_tom.ds b/src/samples/drumsynth/misc_perc/low_key_tom.ds new file mode 100644 index 0000000..92ed003 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/low_key_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,3 1799,8 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=123 +F=200 +dF=8 +Envelope=0,100 5250,30 10500,0 + +[NoiseBand2] +On=0 +Level=166 +F=3100 +dF=40 +Envelope=0,100 300,65 800,39 1500,20 2349,8 3748,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/low_ping.ds b/src/samples/drumsynth/misc_perc/low_ping.ds new file mode 100644 index 0000000..960554b --- /dev/null +++ b/src/samples/drumsynth/misc_perc/low_ping.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=47 +FilterEnv=0,0 12442,62 442000,100 442000,0 + +[Tone] +On=1 +Level=54 +F1=550 +F2=220 +Droop=85 +Phase=65 +Envelope=0,100 5996,25 14241,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=83 +F1=220 +Wave1=0 +Track1=1 +F2=110 +Wave2=0 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=4 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/mellow_shake.ds b/src/samples/drumsynth/misc_perc/mellow_shake.ds new file mode 100644 index 0000000..e38f412 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/mellow_shake.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=75 +Level=3 +Filter=1 +HighPass=1 +Resonance=11 +FilterEnv=0,17 1309,80 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=88 +Slope=84 +Envelope=0,24 377,82 793,42 991,83 1487,32 1844,74 2439,35 2994,72 4124,17 5988,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=36 +F1=5200 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 899,53 1699,17 2399,45 3748,12 4497,25 7500,0 +Envelope2=0,49 899,78 1499,49 2748,77 3048,47 3698,79 4147,50 5147,19 5147,37 5447,59 5846,81 7595,35 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=69 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1099,25 1549,35 1774,50 2898,17 2914,46 3498,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=90 +F=5000 +dF=25 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/metallic_node.ds b/src/samples/drumsynth/misc_perc/metallic_node.ds new file mode 100644 index 0000000..6956f53 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/metallic_node.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=75 +Level=-7 +Filter=0 +HighPass=1 +Resonance=58 +FilterEnv=0,59 14277,16 442000,100 443000,0 + +[Tone] +On=1 +Level=22 +F1=851 +F2=500 +Droop=27 +Phase=-45 +Envelope=0,58 3398,69 3398,0 + +[Noise] +On=0 +Level=142 +Slope=90 +Envelope=0,51 555,21 2538,9 7932,3 36168,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=107 +F1=400 +Wave1=3 +Track1=1 +F2=589 +Wave2=3 +Track2=0 +Method=3 +Param=88 +Envelope1=0,100 1699,10 3490,0 +Envelope2=0,89 6345,20 10311,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=6800 +dF=40 +Envelope=0,100 750,16 1983,2 3490,0 + +[NoiseBand2] +On=1 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=3 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/mild_tamb.ds b/src/samples/drumsynth/misc_perc/mild_tamb.ds new file mode 100644 index 0000000..b699535 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/mild_tamb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=40 +FilterEnv=0,83 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=61 +Slope=93 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=144 +F1=6300 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=69 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=90 +F=7122 +dF=37 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/ol'_skool_shake.ds b/src/samples/drumsynth/misc_perc/ol'_skool_shake.ds new file mode 100644 index 0000000..873e63f --- /dev/null +++ b/src/samples/drumsynth/misc_perc/ol'_skool_shake.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-3 +Stretch=130 +Level=12 +Filter=1 +HighPass=0 +Resonance=10 +FilterEnv=0,86 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,0 2607,88 3500,20 8750,0 + +[Noise] +On=1 +Level=74 +Slope=100 +Envelope=0,0 999,84 1449,95 2049,35 3098,17 4797,7 6196,2 8994,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=4 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc_perc/poppy.ds b/src/samples/drumsynth/misc_perc/poppy.ds new file mode 100644 index 0000000..7f655a5 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/poppy.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=32 +FilterEnv=0,10 9844,77 22986,39 442000,100 443000,0 + +[Tone] +On=1 +Level=156 +F1=2000 +F2=1600 +Droop=84 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=0 +Level=119 +Slope=100 +Envelope=0,0 0,98 635,53 2459,25 6028,10 10311,5 16498,1 26095,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=166 +F1=200 +Wave1=0 +Track1=0 +F2=745 +Wave2=2 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 2199,80 5047,56 9144,39 19788,19 23036,0 +Envelope2=0,100 2349,59 7395,20 22236,0 +Filter=0 + +[NoiseBand] +On=0 +Level=67 +F=20000 +dF=52 +Envelope=0,0 7,100 1788,56 3331,30 6742,13 10628,5 16181,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=26 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/q_tom.ds b/src/samples/drumsynth/misc_perc/q_tom.ds new file mode 100644 index 0000000..f48ae3a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/q_tom.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=24 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=128 +F1=2000 +F2=50 +Droop=57 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=59 +F1=2000 +Wave1=3 +Track1=1 +F2=3000 +Wave2=4 +Track2=0 +Method=2 +Param=50 +Envelope1=0,100 1149,39 1949,16 3148,5 4597,2 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=4 +Rate=7 diff --git a/src/samples/drumsynth/misc_perc/resonant_knock.ds b/src/samples/drumsynth/misc_perc/resonant_knock.ds new file mode 100644 index 0000000..13ceb74 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/resonant_knock.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=300 +F2=120 +Droop=32 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=440 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 3563,100 6730,0 +Envelope2=0,100 2233,74 4782,95 6856,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=1200 +dF=26 +Envelope=0,61 1678,71 5558,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/ringmod_rim.ds b/src/samples/drumsynth/misc_perc/ringmod_rim.ds new file mode 100644 index 0000000..16c8c24 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/ringmod_rim.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=4 +Filter=0 +HighPass=1 +Resonance=6 +FilterEnv=0,57 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=500 +Droop=22 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=1 +Level=119 +Slope=-72 +Envelope=0,0 0,98 42,93 69,43 226,12 396,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=109 +F1=6000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=3 +Param=36 +Envelope1=0,100 1190,10 2855,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=161 +F=98 +dF=12 +Envelope=0,0 7,100 1788,56 4470,32 12887,17 15793,0 + +[NoiseBand2] +On=1 +Level=181 +F=1000 +dF=19 +Envelope=0,100 100,30 952,8 1904,1 4759,0 7852,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=6 diff --git a/src/samples/drumsynth/misc_perc/ringmod_rim_2.ds b/src/samples/drumsynth/misc_perc/ringmod_rim_2.ds new file mode 100644 index 0000000..a82ee3a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/ringmod_rim_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=500 +Level=4 +Filter=0 +HighPass=1 +Resonance=6 +FilterEnv=0,57 442000,100 443000,0 + +[Tone] +On=1 +Level=181 +F1=2000 +F2=500 +Droop=22 +Phase=130 +Envelope=0,99 104,85 137,30 313,23 633,0 + +[Noise] +On=1 +Level=119 +Slope=-72 +Envelope=0,0 0,98 42,93 69,43 226,12 396,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=109 +F1=6000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=3 +Param=36 +Envelope1=0,100 1190,10 2855,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=161 +F=98 +dF=12 +Envelope=0,0 7,100 1788,56 4470,32 12887,17 15793,0 + +[NoiseBand2] +On=1 +Level=181 +F=1000 +dF=19 +Envelope=0,100 100,30 952,8 1904,1 4759,0 7852,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=6 diff --git a/src/samples/drumsynth/misc_perc/shaaka.ds b/src/samples/drumsynth/misc_perc/shaaka.ds new file mode 100644 index 0000000..0f32c85 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/shaaka.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=133 +F1=120 +F2=50 +Droop=73 +Phase=0 +Envelope=0,100 2049,51 5647,21 11743,9 22386,0 + +[Noise] +On=1 +Level=144 +Slope=100 +Envelope=0,6 397,84 714,12 991,20 1210,30 1527,12 1824,24 2023,9 5195,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=350 +Wave1=0 +Track1=0 +F2=312.3 +Wave2=1 +Track2=1 +Method=2 +Param=86 +Envelope1=0,100 714,20 4997,6 10232,3 17132,1 22367,0 +Envelope2=0,48 6425,17 15943,0 +Filter=0 + +[NoiseBand] +On=0 +Level=36 +F=130 +dF=15 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/shaaka_2.ds b/src/samples/drumsynth/misc_perc/shaaka_2.ds new file mode 100644 index 0000000..671b636 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/shaaka_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Adjust the overtones 'drive' to hit harder! +Tuning=0.00 +Stretch=200 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=133 +F1=120 +F2=50 +Droop=73 +Phase=0 +Envelope=0,100 2049,51 5647,21 11743,9 22386,0 + +[Noise] +On=1 +Level=144 +Slope=100 +Envelope=0,6 337,56 714,12 912,26 1249,17 1527,19 1824,24 2023,9 2498,2 4025,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=350 +Wave1=0 +Track1=0 +F2=312.3 +Wave2=1 +Track2=1 +Method=2 +Param=86 +Envelope1=0,100 714,20 4997,6 10232,3 17132,1 22367,0 +Envelope2=0,48 6425,17 15943,0 +Filter=0 + +[NoiseBand] +On=0 +Level=36 +F=130 +dF=15 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=16 +F=10000 +dF=15 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=13 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/short_tom.ds b/src/samples/drumsynth/misc_perc/short_tom.ds new file mode 100644 index 0000000..050d72b --- /dev/null +++ b/src/samples/drumsynth/misc_perc/short_tom.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=147 +F1=225 +F2=225 +Droop=44 +Phase=8 +Envelope=0,100 476,53 1904,20 4045,10 6028,1 10232,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=1 +Level=69 +F=212 +dF=21 +Envelope=0,56 714,31 2062,13 4362,3 8646,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/short_tom_1.ds b/src/samples/drumsynth/misc_perc/short_tom_1.ds new file mode 100644 index 0000000..84561dd --- /dev/null +++ b/src/samples/drumsynth/misc_perc/short_tom_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=147 +F1=150 +F2=150 +Droop=44 +Phase=8 +Envelope=0,100 476,53 1904,20 4045,10 6028,1 10232,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=1 +Level=69 +F=212 +dF=21 +Envelope=0,56 714,31 2062,13 4362,3 8646,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/short_tom_2.ds b/src/samples/drumsynth/misc_perc/short_tom_2.ds new file mode 100644 index 0000000..30a6ce2 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/short_tom_2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=147 +F1=100 +F2=100 +Droop=44 +Phase=8 +Envelope=0,100 476,53 1904,20 4045,10 6028,1 10232,0 + +[Noise] +On=0 +Level=138 +Slope=12 +Envelope=0,100 1311,65 2205,38 2563,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 6000,50 20000,0 + +[NoiseBand2] +On=1 +Level=69 +F=212 +dF=21 +Envelope=0,56 714,31 2062,13 4362,3 8646,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/sickly_cowbell.ds b/src/samples/drumsynth/misc_perc/sickly_cowbell.ds new file mode 100644 index 0000000..ef9d446 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/sickly_cowbell.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=6 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 521,76 1639,63 4246,45 7151,34 16463,13 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=0 +Level=142 +Slope=-53 +Envelope=0,100 521,24 2384,15 7971,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=145 +F1=651 +Wave1=3 +Track1=0 +F2=461 +Wave2=3 +Track2=0 +Method=3 +Param=0 +Envelope1=0,0 30,98 819,47 2831,24 6630,9 14899,0 +Envelope2=0,0 37,99 745,50 2756,26 6257,11 13409,0 +Filter=1 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/slinky_tamb.ds b/src/samples/drumsynth/misc_perc/slinky_tamb.ds new file mode 100644 index 0000000..7e6629f --- /dev/null +++ b/src/samples/drumsynth/misc_perc/slinky_tamb.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=31 +FilterEnv=0,88 1399,89 442000,100 442000,0 + +[Tone] +On=0 +Level=170 +F1=509 +F2=509 +Droop=65 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=1 +Level=61 +Slope=91 +Envelope=0,62 1099,28 2498,51 4697,13 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=36 +F1=5200 +Wave1=0 +Track1=0 +F2=18500 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 899,53 1699,17 2399,45 3748,12 4497,25 7500,0 +Envelope2=0,49 899,78 1499,49 2748,77 3048,47 3698,79 4147,50 5147,19 5147,37 5447,59 5846,81 7595,35 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=1 +Level=69 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1099,25 1549,35 1774,50 2898,17 2914,46 3498,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=1 +Level=90 +F=5000 +dF=25 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/super_tom.ds b/src/samples/drumsynth/misc_perc/super_tom.ds new file mode 100644 index 0000000..daf8a14 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/super_tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=600 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=47 +Slope=44 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=101 +F1=600 +Wave1=0 +Track1=1 +F2=120 +Wave2=0 +Track2=1 +Method=2 +Param=50 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=83 +F=120 +dF=9 +Envelope=0,100 79,9 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/sweetness_shaker.ds b/src/samples/drumsynth/misc_perc/sweetness_shaker.ds new file mode 100644 index 0000000..994524b --- /dev/null +++ b/src/samples/drumsynth/misc_perc/sweetness_shaker.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0.00 +Stretch=100.0 +Level=-3 +Filter=0 +HighPass=1 +Resonance=60 +FilterEnv=0,21 14277,30 33313,65 46797,27 75351,50 80903,26 97559,29 107871,12 115802,20 123734,5 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=40392 +F2=880 +Droop=50 +Phase=0 +Envelope=0,100 16656,47 30140,29 51556,14 140390,0 + +[Noise] +On=1 +Level=94 +Slope=96 +Envelope=0,2 198,91 397,25 523,83 841,11 1340,93 1658,14 2284,30 3974,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=114 +F1=5200 +Wave1=4 +Track1=0 +F2=195.998 +Wave2=2 +Track2=1 +Method=2 +Param=89 +Envelope1=0,100 48383,35 72178,12 125320,0 +Envelope2=0,100 102318,60 318059,0 +Filter=0 + +[NoiseBand] +On=0 +Level=101 +F=5732 +dF=99 +Envelope=0,100 1758,38 327577,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/timbale_sound.ds b/src/samples/drumsynth/misc_perc/timbale_sound.ds new file mode 100644 index 0000000..2d09c47 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/timbale_sound.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=35 +FilterEnv=0,36 12929,59 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=78 +F1=900 +Wave1=0 +Track1=1 +F2=300 +Wave2=0 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=400 +dF=9 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/tom.ds b/src/samples/drumsynth/misc_perc/tom.ds new file mode 100644 index 0000000..daabb89 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tom.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=1 +Level=181 +F1=500 +F2=120 +Droop=46 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/tom_tone.ds b/src/samples/drumsynth/misc_perc/tom_tone.ds new file mode 100644 index 0000000..80c0f1a --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tom_tone.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=9 +Filter=0 +HighPass=1 +Resonance=6 +FilterEnv=0,23 442000,100 443000,0 + +[Tone] +On=1 +Level=84 +F1=180 +F2=163 +Droop=18 +Phase=10 +Envelope=0,0 0,96 715,39 2458,16 6481,0 + +[Noise] +On=0 +Level=100 +Slope=70 +Envelope=0,0 268,100 723,26 2086,10 5438,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=100 +F1=345 +Wave1=0 +Track1=0 +F2=200 +Wave2=0 +Track2=0 +Method=0 +Param=47 +Envelope1=0,100 1490,17 4991,0 +Envelope2=0,100 894,12 7077,0 +Filter=0 + +[NoiseBand] +On=0 +Level=146 +F=400 +dF=34 +Envelope=0,99 670,21 1788,4 5810,0 + +[NoiseBand2] +On=0 +Level=158 +F=3000 +dF=89 +Envelope=0,100 100,30 3547,0 + +[Distortion] +On=0 +Clipping=7 +Bits=4 +Rate=2 diff --git a/src/samples/drumsynth/misc_perc/tommy.ds b/src/samples/drumsynth/misc_perc/tommy.ds new file mode 100644 index 0000000..2159869 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tommy.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=69 +F1=500 +F2=120 +Droop=65 +Phase=0 +Envelope=0,0 2607,88 3500,20 8750,0 + +[Noise] +On=0 +Level=81 +Slope=57 +Envelope=0,0 670,83 1341,95 2011,42 2682,13 3799,5 5810,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=4000 +dF=35 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=1 +Level=128 +F=350 +dF=23 +Envelope=0,100 834,15 2548,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/tone_tom.ds b/src/samples/drumsynth/misc_perc/tone_tom.ds new file mode 100644 index 0000000..d0d2184 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tone_tom.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-12 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=80 +FilterEnv=0,71 7714,92 442000,100 442000,0 + +[Tone] +On=1 +Level=170 +F1=1000 +F2=509 +Droop=60 +Phase=00 +Envelope=0,100 954,36 1937,12 4350,0 + +[Noise] +On=0 +Level=61 +Slope=53 +Envelope=0,24 364,50 1329,13 5423,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=1000 +Wave1=0 +Track1=1 +F2=509 +Wave2=0 +Track2=0 +Method=2 +Param=80 +Envelope1=0,100 1071,17 2221,11 2974,8 3232,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=129 +F=6000 +dF=25 +Envelope=0,5 462,17 507,67 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=90 +F=7122 +dF=37 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 5425,33 6801,0 + +[Distortion] +On=1 +Clipping=30 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/torn_tweeter.ds b/src/samples/drumsynth/misc_perc/torn_tweeter.ds new file mode 100644 index 0000000..d403944 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/torn_tweeter.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=300 +F2=120 +Droop=32 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=440 +Wave1=0 +Track1=0 +F2=440 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 3563,100 6730,0 +Envelope2=0,100 2233,74 4782,95 6856,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=2 +Bits=1 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/tweety_cowbell.ds b/src/samples/drumsynth/misc_perc/tweety_cowbell.ds new file mode 100644 index 0000000..37e5a08 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tweety_cowbell.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0.00 +Stretch=30 +Level=-6 +Filter=1 +HighPass=1 +Resonance=5 +FilterEnv=0,50 2538,49 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=-70 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=160 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,100 949,69 2898,44 4897,29 6796,17 8745,10 11393,4 17689,0 +Envelope2=0,96 4297,11 5497,41 16240,81 17489,0 +Filter=0 + +[NoiseBand] +On=1 +Level=28 +F=1800 +dF=14 +Envelope=0,100 1904,70 2157,10 9010,5 13325,1 14848,0 + +[NoiseBand2] +On=1 +Level=65 +F=3000 +dF=8 +Envelope=0,100 349,56 888,32 2031,11 10184,0 + +[Distortion] +On=1 +Clipping=17 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/tweety_cowbell_2.ds b/src/samples/drumsynth/misc_perc/tweety_cowbell_2.ds new file mode 100644 index 0000000..0ff6c66 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/tweety_cowbell_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=5 +FilterEnv=0,50 2538,49 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=160 +Droop=82 +Phase=25 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=-70 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=160 +F1=440 +Wave1=0 +Track1=0 +F2=739.99 +Wave2=0 +Track2=0 +Method=2 +Param=0 +Envelope1=0,100 949,69 2898,44 4897,29 6796,17 8745,10 11393,4 17689,0 +Envelope2=0,96 4297,11 5497,41 16240,81 17489,0 +Filter=0 + +[NoiseBand] +On=1 +Level=28 +F=1800 +dF=14 +Envelope=0,100 1904,70 2157,10 9010,5 13325,1 14848,0 + +[NoiseBand2] +On=1 +Level=72 +F=2000 +dF=3 +Envelope=0,100 349,56 888,32 2031,11 10184,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_perc/type_noise.ds b/src/samples/drumsynth/misc_perc/type_noise.ds new file mode 100644 index 0000000..60d6a61 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/type_noise.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=20 +FilterEnv=0,100 887,92 444000,100 444000,0 + +[Tone] +On=0 +Level=92 +F1=600 +F2=100 +Droop=30 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=1 +Level=92 +Slope=49 +Envelope=0,100 222,24 523,84 681,8 998,53 1219,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=181 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=3 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=18029 +dF=100 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=2 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/very_high_clav.ds b/src/samples/drumsynth/misc_perc/very_high_clav.ds new file mode 100644 index 0000000..3ae0d55 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/very_high_clav.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=10 +FilterEnv=0,100 1110,20 2221,6 4204,0 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=5632 +F2=65.406 +Droop=75 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=137 +F1=65.406 +Wave1=4 +Track1=1 +F2=130.813 +Wave2=3 +Track2=0 +Method=2 +Param=60 +Envelope1=0,100 3048,26 11643,0 +Envelope2=0,100 5235,80 11543,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=2332 +dF=7 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=155 +F=3100 +dF=10 +Envelope=0,100 3093,77 4500,0 + +[Distortion] +On=0 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/video_game_clip.ds b/src/samples/drumsynth/misc_perc/video_game_clip.ds new file mode 100644 index 0000000..bab072b --- /dev/null +++ b/src/samples/drumsynth/misc_perc/video_game_clip.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=50 +Droop=58 +Phase=60 +Envelope=0,100 397,52 1428,29 3490,15 6980,10 16339,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=128 +F1=315 +Wave1=4 +Track1=0 +F2=630 +Wave2=4 +Track2=0 +Method=0 +Param=54 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=10 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/weird_1.ds b/src/samples/drumsynth/misc_perc/weird_1.ds new file mode 100644 index 0000000..8b9eee8 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/weird_1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=59 +FilterEnv=0,34 206,68 570,68 1663,68 1916,84 2898,40 3769,86 3832,50 4054,26 6904,0 442000,100 442000,0 + +[Tone] +On=1 +Level=43 +F1=7000 +F2=8000 +Droop=7 +Phase=0 +Envelope=0,100 1749,22 4997,0 + +[Noise] +On=0 +Level=85 +Slope=92 +Envelope=0,100 1117,82 1564,28 5513,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=131 +F1=200 +Wave1=3 +Track1=1 +F2=6399 +Wave2=3 +Track2=1 +Method=2 +Param=66 +Envelope1=0,100 1639,21 5215,0 +Envelope2=0,100 1564,25 5066,0 +Filter=0 + +[NoiseBand] +On=0 +Level=115 +F=9500 +dF=49 +Envelope=0,100 819,78 1639,24 4470,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_perc/wood_and_metal.ds b/src/samples/drumsynth/misc_perc/wood_and_metal.ds new file mode 100644 index 0000000..c46a593 --- /dev/null +++ b/src/samples/drumsynth/misc_perc/wood_and_metal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-3 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 444000,100 444000,0 + +[Tone] +On=0 +Level=181 +F1=200 +F2=40 +Droop=60 +Phase=12 +Envelope=0,100 1699,46 5697,13 8445,5 11693,0 + +[Noise] +On=1 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=56 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=2 +Param=90 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=56 +F=890 +dF=0 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=1 +Level=128 +F=3100 +dF=20 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/average_rock.ds b/src/samples/drumsynth/misc_synth/average_rock.ds new file mode 100644 index 0000000..306be72 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/average_rock.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0.00 +Stretch=100.0 +Level=-6 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,0 412,9 3864,8 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=195.998 +Wave1=2 +Track1=0 +F2=261.626 +Wave2=4 +Track2=0 +Method=2 +Param=50 +Envelope1=0,100 2882,74 6413,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=195.998 +dF=0 +Envelope=0,100 2898,74 5716,0 + +[NoiseBand2] +On=1 +Level=128 +F=311.127 +dF=0 +Envelope=0,100 3404,92 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=3 diff --git a/src/samples/drumsynth/misc_synth/c_maj_chord.ds b/src/samples/drumsynth/misc_synth/c_maj_chord.ds new file mode 100644 index 0000000..b64f44c --- /dev/null +++ b/src/samples/drumsynth/misc_synth/c_maj_chord.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=53 +FilterEnv=0,11 5147,5 14091,2 442000,100 442000,0 + +[Tone] +On=1 +Level=163 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=-60 +Envelope=0,34 500,20 14741,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=100 +F1=164.814 +Wave1=4 +Track1=0 +F2=195.998 +Wave2=1 +Track2=1 +Method=2 +Param=70 +Envelope1=0,100 7096,31 21037,0 +Envelope2=0,100 15740,18 27133,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=195.988 +dF=3 +Envelope=0,100 4747,40 15091,0 + +[NoiseBand2] +On=1 +Level=128 +F=261.626 +dF=2 +Envelope=0,100 6046,35 16990,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/casio_piano_c.ds b/src/samples/drumsynth/misc_synth/casio_piano_c.ds new file mode 100644 index 0000000..76fcb42 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/casio_piano_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=89 +FilterEnv=0,100 1799,78 12193,77 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=91 +F1=523.251 +Wave1=1 +Track1=1 +F2=261.626 +Wave2=3 +Track2=0 +Method=1 +Param=60 +Envelope1=0,100 3048,26 18139,0 +Envelope2=0,100 12542,77 18639,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=3 diff --git a/src/samples/drumsynth/misc_synth/chorded_perc.ds b/src/samples/drumsynth/misc_synth/chorded_perc.ds new file mode 100644 index 0000000..d4e646f --- /dev/null +++ b/src/samples/drumsynth/misc_synth/chorded_perc.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=60 +FilterEnv=0,11 158,27 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=195.998 +Wave1=2 +Track1=0 +F2=261.626 +Wave2=4 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2882,74 6413,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=195.998 +dF=0 +Envelope=0,100 2898,74 5716,0 + +[NoiseBand2] +On=1 +Level=128 +F=311.127 +dF=0 +Envelope=0,100 3404,92 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/consumer_fm.ds b/src/samples/drumsynth/misc_synth/consumer_fm.ds new file mode 100644 index 0000000..1b20ac5 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/consumer_fm.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=200 +Level=-6 +Filter=1 +HighPass=1 +Resonance=70 +FilterEnv=0,21 133252,41 442000,100 442000,0 + +[Tone] +On=1 +Level=1 +F1=6995 +F2=50 +Droop=47 +Phase=00 +Envelope=0,100 6028,25 15241,85 22764,0 + +[Noise] +On=0 +Level=25 +Slope=80 +Envelope=0,100 406,3 914,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=144 +F1=440 +Wave1=0 +Track1=1 +F2=880 +Wave2=0 +Track2=0 +Method=1 +Param=90 +Envelope1=0,100 3750,30 12093,89 23686,0 +Envelope2=0,49 8725,49 9617,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=6000 +dF=15 +Envelope=0,33 596,66 1599,24 1774,50 2375,18 2914,46 3153,21 3712,56 4220,14 4854,38 5425,11 5965,21 6789,2 8185,0 + +[NoiseBand2] +On=0 +Level=72 +F=7000 +dF=20 +Envelope=0,27 317,10 507,67 1408,24 1583,44 1904,35 2138,56 2882,16 3173,48 3553,20 4156,50 4569,19 6496,0 + +[Distortion] +On=0 +Clipping=41 +Bits=0 +Rate=4 diff --git a/src/samples/drumsynth/misc_synth/dark_and_sweet_fm.ds b/src/samples/drumsynth/misc_synth/dark_and_sweet_fm.ds new file mode 100644 index 0000000..2d6f5fd --- /dev/null +++ b/src/samples/drumsynth/misc_synth/dark_and_sweet_fm.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=3 +FilterEnv=0,100 1699,59 4347,38 14241,27 444000,100 444000,0 + +[Tone] +On=1 +Level=28 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=65.406 +Wave1=0 +Track1=0 +F2=195.998 +Wave2=0 +Track2=1 +Method=2 +Param=70 +Envelope1=0,100 7096,31 26034,0 +Envelope2=0,100 15740,18 27133,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/dist_high_c.ds b/src/samples/drumsynth/misc_synth/dist_high_c.ds new file mode 100644 index 0000000..77b73cf --- /dev/null +++ b/src/samples/drumsynth/misc_synth/dist_high_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=89 +FilterEnv=0,100 949,27 9094,20 444000,100 444000,0 + +[Tone] +On=0 +Level=172 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=91 +F1=523.251 +Wave1=3 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 3048,26 18139,0 +Envelope2=0,100 12542,77 18639,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=31 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_synth/eno's_lift.ds b/src/samples/drumsynth/misc_synth/eno's_lift.ds new file mode 100644 index 0000000..b3e0a9b --- /dev/null +++ b/src/samples/drumsynth/misc_synth/eno's_lift.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-12 +Filter=1 +HighPass=0 +Resonance=85 +FilterEnv=0,100 46004,38 99939,11 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=200 +F2=100 +Droop=0 +Phase=00 +Envelope=0,100 40451,27 393410,0 + +[Noise] +On=1 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=440 +Wave1=0 +Track1=1 +F2=550 +Wave2=3 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 12691,55 36486,29 168944,5 407687,0 +Envelope2=0,0 26968,53 112629,100 118975,0 +Filter=0 + +[NoiseBand] +On=1 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=1 +Level=72 +F=330 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/eno's_pad.ds b/src/samples/drumsynth/misc_synth/eno's_pad.ds new file mode 100644 index 0000000..b5cf99e --- /dev/null +++ b/src/samples/drumsynth/misc_synth/eno's_pad.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=50 +Level=-12 +Filter=1 +HighPass=0 +Resonance=44 +FilterEnv=0,98 14277,49 31885,28 46876,19 75668,8 120561,0 233191,53 380719,79 416412,3 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=220 +F2=110 +Droop=0 +Phase=00 +Envelope=0,100 26174,15 129286,33 195119,8 287919,42 415619,0 + +[Noise] +On=1 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=1 +F2=800 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,62 38072,24 90421,56 122941,17 135631,53 172910,7 199085,34 227638,16 268883,65 302196,-1 341854,37 383099,0 +Envelope2=0,100 3000,30 93514,0 +Filter=0 + +[NoiseBand] +On=1 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=1 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/eno's_ride.ds b/src/samples/drumsynth/misc_synth/eno's_ride.ds new file mode 100644 index 0000000..5ab968a --- /dev/null +++ b/src/samples/drumsynth/misc_synth/eno's_ride.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=-12 +Filter=1 +HighPass=0 +Resonance=44 +FilterEnv=0,98 14277,49 31885,28 46876,19 75668,8 121354,17 233191,53 380719,79 413239,62 440207,11 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=220 +F2=110 +Droop=0 +Phase=00 +Envelope=0,100 26174,15 129286,33 195119,8 287919,42 415619,0 + +[Noise] +On=1 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=55 +Wave1=2 +Track1=1 +F2=330 +Wave2=4 +Track2=0 +Method=1 +Param=100 +Envelope1=0,62 38072,24 90421,56 122941,17 135631,53 172910,7 199085,34 227638,16 268883,65 302196,-1 341854,37 383099,0 +Envelope2=0,100 3000,30 93514,0 +Filter=0 + +[NoiseBand] +On=1 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=1 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/flat_square_c.ds b/src/samples/drumsynth/misc_synth/flat_square_c.ds new file mode 100644 index 0000000..b7740b2 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/flat_square_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=3 +FilterEnv=0,100 1699,59 4347,38 14241,27 444000,100 444000,0 + +[Tone] +On=0 +Level=1 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=154 +F1=65.406 +Wave1=4 +Track1=1 +F2=261.626 +Wave2=4 +Track2=0 +Method=1 +Param=40 +Envelope1=0,100 3048,26 18139,0 +Envelope2=0,100 12542,77 18639,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=3 diff --git a/src/samples/drumsynth/misc_synth/fm_c_bass_burst.ds b/src/samples/drumsynth/misc_synth/fm_c_bass_burst.ds new file mode 100644 index 0000000..c67bcf9 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/fm_c_bass_burst.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=89 +FilterEnv=0,100 949,27 9094,20 444000,100 444000,0 + +[Tone] +On=1 +Level=1 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=181 +F1=65.406 +Wave1=0 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 3048,26 26234,0 +Envelope2=0,100 6346,60 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_synth/fur_strings.ds b/src/samples/drumsynth/misc_synth/fur_strings.ds new file mode 100644 index 0000000..2895b57 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/fur_strings.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,15 444000,100 444000,0 + +[Tone] +On=1 +Level=43 +F1=261.63 +F2=261.63 +Droop=0 +Phase=0 +Envelope=0,100 58250,100 67641,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=261.63 +Wave1=3 +Track1=0 +F2=261.63 +Wave2=0 +Track2=0 +Method=2 +Param=49 +Envelope1=0,100 58250,100 67641,0 +Envelope2=0,86 70671,86 84948,0 +Filter=0 + +[NoiseBand] +On=1 +Level=166 +F=261.63 +dF=0 +Envelope=0,100 58250,100 67641,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=39 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/fur_strings_2.ds b/src/samples/drumsynth/misc_synth/fur_strings_2.ds new file mode 100644 index 0000000..8113cab --- /dev/null +++ b/src/samples/drumsynth/misc_synth/fur_strings_2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-9 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,15 444000,100 444000,0 + +[Tone] +On=0 +Level=43 +F1=261.63 +F2=261.63 +Droop=0 +Phase=0 +Envelope=0,100 58250,100 67641,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=261.63 +Wave1=3 +Track1=0 +F2=261.63 +Wave2=2 +Track2=0 +Method=2 +Param=97 +Envelope1=0,100 58250,100 67641,0 +Envelope2=0,86 32520,4 70671,86 84948,0 +Filter=0 + +[NoiseBand] +On=0 +Level=166 +F=261.63 +dF=0 +Envelope=0,100 58250,100 67641,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=39 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=60 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/it's_the_music_tom_c.ds b/src/samples/drumsynth/misc_synth/it's_the_music_tom_c.ds new file mode 100644 index 0000000..fb9198d --- /dev/null +++ b/src/samples/drumsynth/misc_synth/it's_the_music_tom_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-9 +Filter=0 +HighPass=0 +Resonance=89 +FilterEnv=0,100 949,27 9094,20 444000,100 444000,0 + +[Tone] +On=1 +Level=172 +F1=130.813 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=91 +F1=65.406 +Wave1=0 +Track1=0 +F2=130.813 +Wave2=0 +Track2=1 +Method=1 +Param=60 +Envelope1=0,100 3048,26 18139,0 +Envelope2=0,100 6346,60 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=49 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_synth/layered_bass_synth_c.ds b/src/samples/drumsynth/misc_synth/layered_bass_synth_c.ds new file mode 100644 index 0000000..342adec --- /dev/null +++ b/src/samples/drumsynth/misc_synth/layered_bass_synth_c.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100.0 +Level=-9 +Filter=1 +HighPass=0 +Resonance=43 +FilterEnv=0,100 2548,48 8595,24 19238,8 442000,100 442000,0 + +[Tone] +On=1 +Level=163 +F1=130.813 +F2=65.406 +Droop=40 +Phase=0 +Envelope=0,100 3898,36 22286,0 + +[Noise] +On=0 +Level=128 +Slope=-60 +Envelope=0,34 500,20 14741,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=55 +F1=164.814 +Wave1=4 +Track1=1 +F2=65.406 +Wave2=0 +Track2=0 +Method=2 +Param=40 +Envelope1=0,100 7096,31 21037,0 +Envelope2=0,100 15740,18 27133,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=65.406 +dF=3 +Envelope=0,100 4747,40 15091,0 + +[NoiseBand2] +On=1 +Level=155 +F=261.626 +dF=2 +Envelope=0,100 6046,35 16990,0 + +[Distortion] +On=0 +Clipping=3 +Bits=1 +Rate=3 diff --git a/src/samples/drumsynth/misc_synth/my_red_hot_guitar.ds b/src/samples/drumsynth/misc_synth/my_red_hot_guitar.ds new file mode 100644 index 0000000..2fc0b4c --- /dev/null +++ b/src/samples/drumsynth/misc_synth/my_red_hot_guitar.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Use FruityLoops to sequence your DrumSynth sounds! http://www.fruityloops.com +Tuning=0 +Stretch=400 +Level=0 +Filter=1 +HighPass=0 +Resonance=43 +FilterEnv=0,91 3248,24 9044,0 444000,100 444000,0 + +[Tone] +On=1 +Level=46 +F1=880 +F2=234 +Droop=91 +Phase=0 +Envelope=0,100 2379,46 9494,0 11593,0 + +[Noise] +On=0 +Level=56 +Slope=22 +Envelope=0,71 586,27 5996,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=56 +F1=5235 +Wave1=0 +Track1=1 +F2=582 +Wave2=1 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 1904,53 5097,14 9794,0 +Envelope2=0,100 21653,100 29585,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=173 +dF=80 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=41 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=45 +Bits=1 +Rate=1 diff --git a/src/samples/drumsynth/misc_synth/raver_organ.ds b/src/samples/drumsynth/misc_synth/raver_organ.ds new file mode 100644 index 0000000..c41d003 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/raver_organ.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=12 +Filter=0 +HighPass=0 +Resonance=47 +FilterEnv=0,0 12442,62 442000,100 442000,0 + +[Tone] +On=1 +Level=45 +F1=660 +F2=550 +Droop=66 +Phase=65 +Envelope=0,100 5996,25 14741,0 22886,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=83 +F1=220 +Wave1=0 +Track1=1 +F2=110 +Wave2=0 +Track2=1 +Method=2 +Param=100 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 700,56 2598,33 7445,14 22336,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=23 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/strong_c_dub_bass.ds b/src/samples/drumsynth/misc_synth/strong_c_dub_bass.ds new file mode 100644 index 0000000..28a25f9 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/strong_c_dub_bass.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=60 +FilterEnv=0,100 1699,80 9044,80 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=65.406 +F2=65.406 +Droop=60 +Phase=0 +Envelope=0,100 3898,36 14689,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=92 +F1=65.406 +Wave1=4 +Track1=0 +F2=130.813 +Wave2=4 +Track2=0 +Method=1 +Param=60 +Envelope1=0,100 3048,26 11643,0 +Envelope2=0,100 6346,60 11543,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=12 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/sync_drift.ds b/src/samples/drumsynth/misc_synth/sync_drift.ds new file mode 100644 index 0000000..8403049 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/sync_drift.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use this space to add a comment to each sound! +Tuning=0 +Stretch=100 +Level=-11 +Filter=0 +HighPass=1 +Resonance=70 +FilterEnv=0,0 2062,28 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=2000 +F2=50 +Droop=50 +Phase=0 +Envelope=0,100 5076,61 15705,20 37120,0 + +[Noise] +On=0 +Level=74 +Slope=79 +Envelope=0,100 2728,64 4949,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=136 +F1=440 +Wave1=0 +Track1=0 +F2=55 +Wave2=2 +Track2=0 +Method=1 +Param=100 +Envelope1=0,100 13167,28 40927,0 +Envelope2=0,100 5790,92 10153,65 19671,49 28554,20 42990,0 +Filter=0 + +[NoiseBand] +On=0 +Level=137 +F=210 +dF=70 +Envelope=0,44 2250,30 39738,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=35 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/sync_man.ds b/src/samples/drumsynth/misc_synth/sync_man.ds new file mode 100644 index 0000000..660de40 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/sync_man.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Remember to send any good .ds files to paul.kellett@maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=0 +Resonance=5 +FilterEnv=0,96 1299,30 1999,14 3198,8 23785,0 444000,100 444000,0 + +[Tone] +On=0 +Level=128 +F1=5000 +F2=50 +Droop=45 +Phase=65 +Envelope=0,100 1750,20 5250,0 + +[Noise] +On=0 +Level=96 +Slope=60 +Envelope=0,100 949,14 19888,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=74 +F1=55 +Wave1=4 +Track1=1 +F2=220 +Wave2=2 +Track2=0 +Method=1 +Param=70 +Envelope1=0,100 2439,95 19888,0 +Envelope2=0,100 2439,95 17489,89 19888,0 +Filter=0 + +[NoiseBand] +On=0 +Level=65 +F=6000 +dF=75 +Envelope=0,100 1949,19 7445,0 + +[NoiseBand2] +On=0 +Level=128 +F=8503 +dF=80 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=1 +Clipping=9 +Bits=2 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/that_house_chord_cm.ds b/src/samples/drumsynth/misc_synth/that_house_chord_cm.ds new file mode 100644 index 0000000..e6496a5 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/that_house_chord_cm.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=You can use [Ctrl] and [Enter] to trigger the Play button! +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=2 +FilterEnv=0,100 1425,34 4465,28 444000,100 444000,0 + +[Tone] +On=1 +Level=128 +F1=130.813 +F2=130.813 +Droop=0 +Phase=0 +Envelope=0,100 2391,47 7601,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=311.127 +Wave1=2 +Track1=0 +F2=195.998 +Wave2=2 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2391,48 6856,0 +Envelope2=0,100 2423,56 6936,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=15 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/vibrato_pad.ds b/src/samples/drumsynth/misc_synth/vibrato_pad.ds new file mode 100644 index 0000000..48c2912 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/vibrato_pad.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=69 +FilterEnv=0,100 5552,44 23002,17 66626,3 129286,0 442000,100 442000,0 + +[Tone] +On=1 +Level=73 +F1=880 +F2=55 +Droop=81 +Phase=00 +Envelope=0,100 65040,36 180842,0 + +[Noise] +On=0 +Level=145 +Slope=80 +Envelope=0,11 37279,12 364063,17 422757,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=181 +F1=220 +Wave1=1 +Track1=0 +F2=5.5 +Wave2=0 +Track2=0 +Method=1 +Param=80 +Envelope1=0,100 11897,56 43624,27 101525,11 186394,0 +Envelope2=0,32 70592,33 194326,0 +Filter=0 + +[NoiseBand] +On=0 +Level=75 +F=880 +dF=15 +Envelope=0,100 53142,40 153874,74 250640,17 325198,71 410860,0 + +[NoiseBand2] +On=0 +Level=72 +F=440 +dF=14 +Envelope=0,0 59487,82 135631,17 216534,77 306162,17 363270,73 427516,0 + +[Distortion] +On=0 +Clipping=37 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/who_loves_ya,_baby.ds b/src/samples/drumsynth/misc_synth/who_loves_ya,_baby.ds new file mode 100644 index 0000000..e4154e1 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/who_loves_ya,_baby.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=0 +Resonance=21 +FilterEnv=0,100 72971,47 115009,80 155460,35 192739,67 222086,27 251433,41 267297,18 295058,24 302989,8 315680,9 322025,3 442000,100 442000,0 + +[Tone] +On=0 +Level=1 +F1=60210 +F2=440 +Droop=30 +Phase=0 +Envelope=0,100 239536,93 425930,0 + +[Noise] +On=0 +Level=74 +Slope=-20 +Envelope=0,100 230018,9 322818,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=128 +F1=439 +Wave1=4 +Track1=0 +F2=441 +Wave2=4 +Track2=0 +Method=2 +Param=100 +Envelope1=0,100 49969,26 132459,0 +Envelope2=0,100 51556,41 149908,75 243502,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=18 +Bits=3 +Rate=0 diff --git a/src/samples/drumsynth/misc_synth/wowmelodictone.ds b/src/samples/drumsynth/misc_synth/wowmelodictone.ds new file mode 100644 index 0000000..8edfc94 --- /dev/null +++ b/src/samples/drumsynth/misc_synth/wowmelodictone.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=DrumSynth 2.0 by maxim digital audio, Copyright ©2000 Paul Kellett http://www.maxim.abel.co.uk +Tuning=0 +Stretch=100 +Level=-9 +Filter=0 +HighPass=1 +Resonance=11 +FilterEnv=0,80 444000,100 444000,0 + +[Tone] +On=1 +Level=133 +F1=440 +F2=440 +Droop=55 +Phase=30 +Envelope=0,100 4597,91 10500,0 + +[Noise] +On=0 +Level=92 +Slope=77 +Envelope=0,100 200,40 600,19 1449,6 3448,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=174 +F1=220 +Wave1=0 +Track1=0 +F2=110 +Wave2=0 +Track2=0 +Method=2 +Param=61 +Envelope1=0,100 1949,59 4497,24 8345,12 14941,0 +Envelope2=0,100 12592,100 17789,0 +Filter=0 + +[NoiseBand] +On=0 +Level=71 +F=5000 +dF=100 +Envelope=0,100 1099,29 2099,7 4500,0 + +[NoiseBand2] +On=0 +Level=96 +F=3100 +dF=100 +Envelope=0,100 200,35 450,15 1849,5 4997,0 + +[Distortion] +On=1 +Clipping=38 +Bits=5 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/Hat_O.ds b/src/samples/drumsynth/r_n_b/Hat_O.ds new file mode 100644 index 0000000..d3aa21b --- /dev/null +++ b/src/samples/drumsynth/r_n_b/Hat_O.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley open hat +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 447,16 1415,0 + +[Overtones] +On=1 +Level=134 +F1=13000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=100 +Envelope1=0,100 1043,31 2533,9 6250,0 +Envelope2=0,100 775,35 2354,9 5000,0 + +[NoiseBand] +On=1 +Level=153 +F=10000 +dF=57 +Envelope=0,0 39,100 104,38 417,10 1311,4 7062,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/S_hollow.ds b/src/samples/drumsynth/r_n_b/S_hollow.ds new file mode 100644 index 0000000..f684527 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/S_hollow.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley hollow snare +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=149 +F1=375 +F2=375 +Droop=11 +Phase=90 +Envelope=0,100 1341,0 + +[Noise] +On=1 +Level=123 +Slope=36 +Envelope=0,100 819,98 1862,34 3576,17 9163,7 11174,0 + +[Overtones] +On=0 +Level=134 +F1=13000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=100 +Envelope1=0,100 1043,31 2533,9 6250,0 +Envelope2=0,100 775,35 2354,9 5000,0 + +[NoiseBand] +On=1 +Level=104 +F=845 +dF=31 +Envelope=0,100 894,91 1937,30 2831,14 6034,5 8865,1 12440,0 + +[NoiseBand2] +On=1 +Level=28 +F=3700 +dF=30 +Envelope=0,37 6704,35 11025,8 14526,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/r_n_b/clapfilt.ds b/src/samples/drumsynth/r_n_b/clapfilt.ds new file mode 100644 index 0000000..4435f9d --- /dev/null +++ b/src/samples/drumsynth/r_n_b/clapfilt.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=4.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 3352,92 6704,74 9833,36 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=102 +Slope=-25 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 4529,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 + +[NoiseBand] +On=1 +Level=170 +F=650 +dF=30 +Envelope=0,99 104,38 432,18 440,100 521,30 879,14 894,100 1028,26 1333,9 1333,98 2309,27 5661,7 16389,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/hat.ds b/src/samples/drumsynth/r_n_b/hat.ds new file mode 100644 index 0000000..ba52a2f --- /dev/null +++ b/src/samples/drumsynth/r_n_b/hat.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley closed hat +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 447,16 1415,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=153 +F=10000 +dF=57 +Envelope=0,0 39,100 89,32 358,14 760,7 1192,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/hat_rattle.ds b/src/samples/drumsynth/r_n_b/hat_rattle.ds new file mode 100644 index 0000000..43a641a --- /dev/null +++ b/src/samples/drumsynth/r_n_b/hat_rattle.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=0 +Level=153 +F1=8600 +F2=8600 +Droop=0 +Phase=-180 +Envelope=0,99 1013,51 1013,0 + +[Noise] +On=1 +Level=40 +Slope=40 +Envelope=0,100 297,0 1605,1 1664,35 1961,5 2615,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=120 +Wave2=0 +Track2=0 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=87 +F=9790 +dF=39 +Envelope=0,100 773,10 1783,9 2912,9 2912,97 3328,9 5587,8 5646,90 5943,7 8737,6 8737,72 9212,5 12957,3 13075,11 13313,1 13729,0 + +[NoiseBand2] +On=1 +Level=59 +F=9000 +dF=100 +Envelope=0,100 107,18 333,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/k_hard.ds b/src/samples/drumsynth/r_n_b/k_hard.ds new file mode 100644 index 0000000..04cf572 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/k_hard.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley click kick +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,100 268,100 3710,18 442000,100 442000,0 + +[Tone] +On=0 +Level=161 +F1=85 +F2=50 +Droop=24 +Phase=0 +Envelope=0,100 372,89 1847,0 + +[Noise] +On=0 +Level=56 +Slope=-98 +Envelope=0,0 0,30 1073,25 1758,2 3903,0 + +[Overtones] +On=0 +Level=132 +F1=82 +Wave1=0 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 968,99 2309,46 3948,16 7524,0 +Envelope2=0,0 5000,0 + +[NoiseBand] +On=1 +Level=181 +F=76 +dF=5 +Envelope=0,0 0,100 358,99 574,57 2533,40 3516,37 3889,0 + +[NoiseBand2] +On=1 +Level=62 +F=3800 +dF=100 +Envelope=0,100 119,95 313,0 + +[Distortion] +On=1 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/k_muffle.ds b/src/samples/drumsynth/r_n_b/k_muffle.ds new file mode 100644 index 0000000..9f91d14 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/k_muffle.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley offbeat kick +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=161 +F1=75 +F2=57 +Droop=29 +Phase=0 +Envelope=0,0 596,88 2384,81 3725,70 5587,20 17208,20 19815,36 20933,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 447,16 1415,0 + +[Overtones] +On=1 +Level=115 +F1=82 +Wave1=0 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 745,87 2309,46 3799,78 5438,0 18400,0 18921,60 20188,77 20933,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=153 +F=10000 +dF=57 +Envelope=0,0 39,100 104,38 417,10 1177,7 7062,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/k_soft.ds b/src/samples/drumsynth/r_n_b/k_soft.ds new file mode 100644 index 0000000..7f25e55 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/k_soft.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley swing kick +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=161 +F1=100 +F2=152 +Droop=24 +Phase=0 +Envelope=0,0 238,95 2652,86 3963,18 6496,0 + +[Noise] +On=0 +Level=56 +Slope=-98 +Envelope=0,0 0,30 1073,25 1758,2 3903,0 + +[Overtones] +On=0 +Level=132 +F1=82 +Wave1=0 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=0 +Envelope1=0,0 968,99 2309,46 3948,16 7524,0 +Envelope2=0,0 5000,0 + +[NoiseBand] +On=1 +Level=151 +F=144 +dF=15 +Envelope=0,0 60,93 477,91 924,32 1758,13 6198,0 6496,0 + +[NoiseBand2] +On=1 +Level=164 +F=76 +dF=2 +Envelope=0,0 89,96 685,100 1162,51 2682,30 4917,14 6496,0 + +[Distortion] +On=0 +Clipping=5 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/old_kik.ds b/src/samples/drumsynth/r_n_b/old_kik.ds new file mode 100644 index 0000000..ef0d4b4 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/old_kik.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,26 442000,100 442000,0 + +[Tone] +On=1 +Level=155 +F1=200 +F2=49 +Droop=21 +Phase=0 +Envelope=0,0 328,68 775,100 2205,53 4529,49 6228,0 + +[Noise] +On=1 +Level=181 +Slope=55 +Envelope=0,100 328,20 1460,6 5691,6 6257,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/popclap.ds b/src/samples/drumsynth/r_n_b/popclap.ds new file mode 100644 index 0000000..abac189 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/popclap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=300 +F2=40 +Droop=24 +Phase=0 +Envelope=0,100 6657,100 8059,100 8499,98 8725,90 8725,71 9628,0 + +[Noise] +On=1 +Level=38 +Slope=10 +Envelope=0,100 834,27 2086,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=162 +F=2000 +dF=38 +Envelope=0,100 159,0 297,93 535,0 654,50 4291,14 7726,0 + +[NoiseBand2] +On=0 +Level=164 +F=3150 +dF=16 +Envelope=0,100 2258,36 5468,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/popsnare.ds b/src/samples/drumsynth/r_n_b/popsnare.ds new file mode 100644 index 0000000..e76e563 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/popsnare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1090 +F2=50 +Droop=43 +Phase=0 +Envelope=0,100 6657,100 8059,100 9535,100 10429,100 11383,85 11561,73 11800,0 + +[Noise] +On=0 +Level=110 +Slope=80 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=173 +F=1000 +dF=20 +Envelope=0,93 1073,13 1788,7 14391,0 + +[NoiseBand2] +On=1 +Level=164 +F=1010 +dF=37 +Envelope=0,92 1132,14 1788,8 14341,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/s_pitch.ds b/src/samples/drumsynth/r_n_b/s_pitch.ds new file mode 100644 index 0000000..1beb500 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/s_pitch.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley pitched snare +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=89 +F1=418 +F2=387 +Droop=11 +Phase=0 +Envelope=0,100 834,89 1877,11 3308,5 3903,0 + +[Noise] +On=1 +Level=123 +Slope=1 +Envelope=0,100 328,100 715,89 1341,37 2533,14 3397,9 3456,0 + +[Overtones] +On=0 +Level=134 +F1=13000 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=2 +Param=100 +Envelope1=0,100 1043,31 2533,9 6250,0 +Envelope2=0,100 775,35 2354,9 5000,0 + +[NoiseBand] +On=0 +Level=81 +F=3000 +dF=40 +Envelope=0,90 268,91 1251,16 5483,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=4 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/s_spit.ds b/src/samples/drumsynth/r_n_b/s_spit.ds new file mode 100644 index 0000000..645a706 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/s_spit.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=Teddy Riley 'spit' snare +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 3500,20 8750,0 + +[Noise] +On=1 +Level=151 +Slope=-77 +Envelope=0,100 298,100 670,2 10429,0 + +[Overtones] +On=1 +Level=117 +F1=48 +Wave1=2 +Track1=0 +F2=250 +Wave2=1 +Track2=0 +Filter=0 +Method=0 +Param=19 +Envelope1=0,100 1117,19 2533,0 +Envelope2=0,100 2000,20 7598,0 + +[NoiseBand] +On=1 +Level=153 +F=1900 +dF=37 +Envelope=0,100 968,20 2011,7 6034,9 7300,0 + +[NoiseBand2] +On=1 +Level=43 +F=11000 +dF=71 +Envelope=0,100 2235,43 2980,2 6853,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/snare&hat.ds b/src/samples/drumsynth/r_n_b/snare&hat.ds new file mode 100644 index 0000000..b22d704 --- /dev/null +++ b/src/samples/drumsynth/r_n_b/snare&hat.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=111 +F1=550 +F2=3 +Droop=30 +Phase=0 +Envelope=0,100 536,15 1070,3 6062,0 + +[Noise] +On=1 +Level=28 +Slope=-70 +Envelope=0,100 832,37 3269,5 10044,0 + +[Overtones] +On=0 +Level=83 +F1=600 +Wave1=0 +Track1=0 +F2=500 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 536,9 892,0 +Envelope2=0,40 654,0 + +[NoiseBand] +On=1 +Level=33 +F=412 +dF=81 +Envelope=0,100 894,17 2211,0 + +[NoiseBand2] +On=1 +Level=116 +F=6700 +dF=60 +Envelope=0,100 1132,39 2384,17 4887,7 6122,5 6122,63 6538,9 8796,8 8796,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/r_n_b/x_backwd.ds b/src/samples/drumsynth/r_n_b/x_backwd.ds new file mode 100644 index 0000000..5f24e6e --- /dev/null +++ b/src/samples/drumsynth/r_n_b/x_backwd.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=backwards flick loop +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=0 +FilterEnv=0,71 442000,100 442000,0 + +[Tone] +On=0 +Level=161 +F1=2000 +F2=40 +Droop=0 +Phase=0 +Envelope=0,64 521,58 521,0 + +[Noise] +On=1 +Level=181 +Slope=3 +Envelope=0,0 2384,2 4023,7 5364,22 5364,0 24136,0 29797,3 32181,16 34565,48 34714,0 + +[Overtones] +On=1 +Level=147 +F1=8000 +Wave1=0 +Track1=1 +F2=4000 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=100 +Envelope1=0,13 45,0 5215,0 5364,74 5364,0 10280,0 10429,66 10429,0 15346,0 15495,65 15495,0 20411,0 20560,78 20560,0 25477,0 25626,64 25626,0 +Envelope2=0,100 36204,100 37396,0 + +[NoiseBand] +On=1 +Level=140 +F=7000 +dF=90 +Envelope=0,75 89,0 5066,0 5364,74 5364,0 10131,0 10429,66 10429,0 15197,0 15495,65 15495,0 20262,0 20560,78 20560,0 25328,0 25626,64 25626,0 + +[NoiseBand2] +On=0 +Level=62 +F=3800 +dF=100 +Envelope=0,100 119,95 313,0 + +[Distortion] +On=0 +Clipping=14 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Cymbal.ds b/src/samples/drumsynth/tr606/TR606_Cymbal.ds new file mode 100644 index 0000000..091bf23 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Cymbal.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=0 +HighPass=1 +Resonance=29 +FilterEnv=0,59 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=88 +Slope=100 +Envelope=0,92 1031,11 3173,0 +FixedSeq=1 + +[Overtones] +On=1 +Level=106 +F1=338 +Wave1=0 +Track1=0 +F2=957 +Wave2=0 +Track2=0 +Method=3 +Param=15 +Envelope1=0,74 1586,29 5235,18 11580,11 22843,6 39500,0 +Envelope2=0,79 41483,78 42514,0 +Filter=1 + +[NoiseBand] +On=1 +Level=63 +F=7000 +dF=45 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[NoiseBand2] +On=1 +Level=63 +F=12000 +dF=40 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Hat_C.ds b/src/samples/drumsynth/tr606/TR606_Hat_C.ds new file mode 100644 index 0000000..818ee85 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Hat_C.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=1 +Resonance=49 +FilterEnv=0,59 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=1 +Level=99 +Slope=100 +Envelope=0,92 1190,27 3649,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=124 +F1=280 +Wave1=0 +Track1=0 +F2=540 +Wave2=0 +Track2=0 +Method=3 +Param=54 +Envelope1=0,74 1666,10 5869,0 +Envelope2=0,65 41324,66 42514,0 +Filter=0 + +[NoiseBand] +On=1 +Level=118 +F=6500 +dF=34 +Envelope=0,59 872,38 2697,0 + +[NoiseBand2] +On=0 +Level=63 +F=12000 +dF=40 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Hat_O.ds b/src/samples/drumsynth/tr606/TR606_Hat_O.ds new file mode 100644 index 0000000..b2a15c7 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Hat_O.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=-6 +Filter=0 +HighPass=1 +Resonance=49 +FilterEnv=0,59 444000,100 444000,0 + +[Tone] +On=0 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 4687,0 + +[Noise] +On=1 +Level=108 +Slope=100 +Envelope=0,92 1983,40 7694,17 15229,6 22447,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=124 +F1=280 +Wave1=0 +Track1=0 +F2=540 +Wave2=0 +Track2=0 +Method=3 +Param=54 +Envelope1=0,74 1586,29 5235,18 11580,11 23874,0 +Envelope2=0,65 41324,66 42514,0 +Filter=0 + +[NoiseBand] +On=1 +Level=117 +F=6500 +dF=34 +Envelope=0,59 872,38 2221,33 11897,12 22922,0 + +[NoiseBand2] +On=0 +Level=63 +F=12000 +dF=40 +Envelope=0,100 872,92 2221,21 5473,16 11897,7 20146,3 39500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Kick.ds b/src/samples/drumsynth/tr606/TR606_Kick.ds new file mode 100644 index 0000000..870739b --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Kick.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,40 444000,100 444000,0 + +[Tone] +On=1 +Level=164 +F1=170 +F2=58 +Droop=42 +Phase=90 +Envelope=0,100 839,48 2391,14 4750,5 8662,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 500,20 1500,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Snare.ds b/src/samples/drumsynth/tr606/TR606_Snare.ds new file mode 100644 index 0000000..d8138f1 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Snare.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=6 +FilterEnv=0,79 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=308 +F2=221 +Droop=33 +Phase=30 +Envelope=0,100 776,30 1663,7 4624,0 + +[Noise] +On=1 +Level=154 +Slope=24 +Envelope=0,100 823,26 2138,12 3563,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1200 +dF=40 +Envelope=0,100 750,20 2250,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Tom_H.ds b/src/samples/drumsynth/tr606/TR606_Tom_H.ds new file mode 100644 index 0000000..d330244 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Tom_H.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=6 +FilterEnv=0,79 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=217 +F2=206 +Droop=36 +Phase=20 +Envelope=0,100 1314,39 2803,11 8329,0 + +[Noise] +On=0 +Level=154 +Slope=24 +Envelope=0,100 1473,35 7997,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=101 +F=206 +dF=20 +Envelope=0,32 3404,16 8123,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr606/TR606_Tom_L.ds b/src/samples/drumsynth/tr606/TR606_Tom_L.ds new file mode 100644 index 0000000..c78f772 --- /dev/null +++ b/src/samples/drumsynth/tr606/TR606_Tom_L.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Right-click the file list and envelope display for menu options +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=6 +FilterEnv=0,50 952,100 444000,100 444000,0 + +[Tone] +On=1 +Level=163 +F1=200 +F2=137 +Droop=24 +Phase=90 +Envelope=0,100 603,99 2253,30 6789,0 + +[Noise] +On=0 +Level=154 +Slope=24 +Envelope=0,100 1967,48 7997,0 +FixedSeq=1 + +[Overtones] +On=0 +Level=128 +F1=315 +Wave1=0 +Track1=0 +F2=630 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 1250,20 3750,0 +Envelope2=0,100 1000,20 3000,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=200 +dF=27 +Envelope=0,0 2665,19 4029,22 5616,0 + +[NoiseBand2] +On=0 +Level=128 +F=3100 +dF=40 +Envelope=0,100 1500,20 4500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_cui1.ds b/src/samples/drumsynth/tr77/Tr77_cui1.ds new file mode 100644 index 0000000..817c028 --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_cui1.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Equalised Roland TR-77 kit +Tuning=0.00 +Stretch=90.0 +Filter=1 +HighPass=1 +FilterEnv=0,86 442000,100 442000,0 +Level=6 +Resonance=0 + +[Tone] +On=1 +Level=148 +F1=5555 +F2=5555 +Droop=0 +Phase=0 +Envelope=0,0 270,0 270,99 375,0 795,0 795,100 930,0 1275,0 1275,99 1425,0 1815,0 1815,99 1935,0 2355,0 2355,99 2505,0 10500,0 + +[Noise] +On=1 +Level=71 +Slope=44 +Envelope=0,0 90,24 285,8 585,24 870,7 1125,24 1350,7 1635,25 1875,7 2145,26 2430,6 2685,28 2895,8 3135,28 3420,8 3645,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=148 +F=5555 +dF=0 +Envelope=0,0 2820,0 2820,96 2955,0 3315,0 3315,100 3585,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_cui2.ds b/src/samples/drumsynth/tr77/Tr77_cui2.ds new file mode 100644 index 0000000..8da33c3 --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_cui2.ds @@ -0,0 +1,61 @@ +[General] +Version=DrumSynth v2.0 +Comment=Equalised Roland TR-77 kit +Tuning=0.00 +Stretch=200.0 +Filter=1 +HighPass=1 +FilterEnv=0,85 442000,100 442000,0 +Level=6 +Resonance=0 + +[Tone] +On=1 +Level=148 +F1=5490 +F2=5490 +Droop=0 +Phase=0 +Envelope=0,0 270,0 270,99 300,0 795,0 795,100 825,0 1275,0 1275,99 1305,0 1815,0 1815,99 1845,0 2355,0 2355,99 2385,0 10500,0 + +[Noise] +On=1 +Level=47 +Slope=100 +Envelope=0,0 120,23 330,6 600,22 840,6 1110,22 1260,9 1590,22 1800,8 2190,20 2370,10 2610,20 2850,12 3150,18 6120,16 6240,0 15450,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=148 +F=5490 +dF=10 +Envelope=0,0 2820,0 2820,96 2850,0 3315,0 3315,97 3345,0 3870,0 3870,97 3900,0 4410,0 4410,98 4440,0 4950,0 4950,97 4980,0 12150,0 + +[NoiseBand2] +On=1 +Level=148 +F=5490 +dF=10 +Envelope=0,0 5550,0 5550,90 5580,0 6150,0 6150,91 6270,0 18750,0 + +[Distortion] +On=0 +Clipping=11 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_cym.ds b/src/samples/drumsynth/tr77/Tr77_cym.ds new file mode 100644 index 0000000..63bf8fb --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_cym.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=1 +FilterEnv=0,84 442000,100 442000,0 +Level=-2 +Resonance=0 + +[Tone] +On=0 +Level=181 +F1=130 +F2=40 +Droop=29 +Phase=0 +Envelope=0,100 447,100 1639,43 3500,20 10653,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=139 +F=12600 +dF=31 +Envelope=0,0 38,99 540,100 2025,80 14700,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_hat.ds b/src/samples/drumsynth/tr77/Tr77_hat.ds new file mode 100644 index 0000000..a864583 --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_hat.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,91 442000,100 442000,0 + +[Tone] +On=0 +Level=181 +F1=130 +F2=40 +Droop=29 +Phase=0 +Envelope=0,100 447,100 1639,43 3500,20 10653,0 + +[Noise] +On=0 +Level=128 +Slope=100 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=111 +F=12600 +dF=36 +Envelope=0,0 38,99 540,100 645,18 1230,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_kick.ds b/src/samples/drumsynth/tr77/Tr77_kick.ds new file mode 100644 index 0000000..927d141 --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_kick.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Comment=Equalised Roland TR-77 kit + +[Tone] +On=1 +Level=181 +F1=130 +F2=40 +Droop=29 +Phase=0 +Envelope=0,100 447,100 1639,43 3500,20 10653,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr77/Tr77_snare.ds b/src/samples/drumsynth/tr77/Tr77_snare.ds new file mode 100644 index 0000000..282ecfe --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=-7.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=148 +F1=443 +F2=443 +Droop=29 +Phase=0 +Envelope=0,62 210,11 1530,0 + +[Noise] +On=1 +Level=113 +Slope=50 +Envelope=0,0 20,95 1408,17 3292,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=1 +Level=98 +F=8000 +dF=72 +Envelope=0,0 120,93 2220,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/tr77/Tr77_tom1.ds b/src/samples/drumsynth/tr77/Tr77_tom1.ds new file mode 100644 index 0000000..105e52c --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_tom1.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=144 +F1=220 +F2=175 +Droop=83 +Phase=0 +Envelope=0,98 1140,27 5790,0 + +[Noise] +On=0 +Level=113 +Slope=100 +Envelope=0,0 120,93 7230,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=98 +F=8000 +dF=72 +Envelope=0,0 120,93 2220,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/tr77/Tr77_tom2.ds b/src/samples/drumsynth/tr77/Tr77_tom2.ds new file mode 100644 index 0000000..875ea5a --- /dev/null +++ b/src/samples/drumsynth/tr77/Tr77_tom2.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=144 +F1=475 +F2=475 +Droop=83 +Phase=10 +Envelope=0,98 600,35 3990,0 + +[Noise] +On=0 +Level=113 +Slope=100 +Envelope=0,0 120,93 7230,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=98 +F=8000 +dF=72 +Envelope=0,0 120,93 2220,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=1 diff --git a/src/samples/drumsynth/tr808/Clave.ds b/src/samples/drumsynth/tr808/Clave.ds new file mode 100644 index 0000000..1914ba8 --- /dev/null +++ b/src/samples/drumsynth/tr808/Clave.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=157 +F1=480 +F2=480 +Droop=59 +Phase=90 +Envelope=0,0 10500,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=155 +F1=2558 +Wave1=2 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,100 555,31 1190,11 2300,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=6 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Cowbell.ds b/src/samples/drumsynth/tr808/Cowbell.ds new file mode 100644 index 0000000..3a3bf5a --- /dev/null +++ b/src/samples/drumsynth/tr808/Cowbell.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,73 1099,27 4197,19 442000,100 443000,0 +Level=0 +HighPass=0 +Resonance=10 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=0 +Level=142 +Slope=-53 +Envelope=0,100 521,24 2384,15 7971,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=145 +F1=851 +F2=561 +Method=0 +Param=31 +Envelope1=0,0 30,98 819,47 2831,24 6630,9 14899,0 +Envelope2=0,0 37,99 745,50 2756,26 6257,11 13409,0 +Wave1=3 +Track1=0 +Wave2=3 +Track2=0 +Filter=1 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Handclap.ds b/src/samples/drumsynth/tr808/Handclap.ds new file mode 100644 index 0000000..66f8903 --- /dev/null +++ b/src/samples/drumsynth/tr808/Handclap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=1 +Resonance=12 +FilterEnv=0,12 442000,100 443000,0 + +[Tone] +On=0 +Level=98 +F1=7600 +F2=7600 +Droop=0 +Phase=-45 +Envelope=0,100 1043,61 4991,47 11025,25 19741,6 19741,25 19964,0 + +[Noise] +On=1 +Level=132 +Slope=-56 +Envelope=0,100 119,34 447,17 447,100 536,32 886,15 886,100 1013,28 1326,12 1326,100 1631,33 4297,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=120 +Method=1 +Param=0 +Envelope1=0,100 4800,50 16000,0 +Envelope2=0,100 5400,50 18000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 + +[NoiseBand] +On=1 +Level=108 +F=1300 +dF=49 +Envelope=0,99 104,38 432,18 440,100 521,30 879,14 894,100 1028,26 1333,9 1333,98 2309,27 5661,7 20038,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Hat_c.ds b/src/samples/drumsynth/tr808/Hat_c.ds new file mode 100644 index 0000000..7700708 --- /dev/null +++ b/src/samples/drumsynth/tr808/Hat_c.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,59 41721,59 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=0 +Level=142 +Slope=90 +Envelope=0,51 555,21 2538,9 7932,3 36168,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=107 +F1=453 +Wave1=3 +Track1=0 +F2=589 +Wave2=3 +Track2=0 +Method=3 +Param=43 +Envelope1=0,100 1745,9 3490,0 +Envelope2=0,89 39896,89 40531,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=6800 +dF=40 +Envelope=0,100 1190,13 1983,2 3490,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Hat_o.ds b/src/samples/drumsynth/tr808/Hat_o.ds new file mode 100644 index 0000000..42ecdd3 --- /dev/null +++ b/src/samples/drumsynth/tr808/Hat_o.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=1 +Resonance=0 +FilterEnv=0,59 41721,59 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=0 +Level=142 +Slope=90 +Envelope=0,51 555,21 2538,9 7932,3 36168,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=107 +F1=453 +Wave1=3 +Track1=0 +F2=589 +Wave2=3 +Track2=0 +Method=3 +Param=43 +Envelope1=0,100 7456,38 9677,7 10946,0 +Envelope2=0,89 39896,89 40531,0 +Filter=0 + +[NoiseBand] +On=1 +Level=74 +F=6800 +dF=40 +Envelope=0,100 7138,64 9677,7 10946,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Kick.ds b/src/samples/drumsynth/tr808/Kick.ds new file mode 100644 index 0000000..22986ad --- /dev/null +++ b/src/samples/drumsynth/tr808/Kick.ds @@ -0,0 +1,34 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=1 +Level=157 +F1=480 +F2=48 +Droop=59 +Phase=15 +Envelope=0,100 968,87 2160,49 4097,21 6630,7 12813,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 diff --git a/src/samples/drumsynth/tr808/Kickhard.ds b/src/samples/drumsynth/tr808/Kickhard.ds new file mode 100644 index 0000000..676be73 --- /dev/null +++ b/src/samples/drumsynth/tr808/Kickhard.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=157 +F1=480 +F2=48 +Droop=59 +Phase=15 +Envelope=0,100 968,87 2160,49 4097,21 6630,7 12813,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 + +[Overtones] +On=0 +Level=128 +F1=200 +Wave1=0 +Track1=0 +F2=125 +Wave2=0 +Track2=0 +Filter=0 +Method=0 +Param=50 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=9 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Kicklong.ds b/src/samples/drumsynth/tr808/Kicklong.ds new file mode 100644 index 0000000..3f968cc --- /dev/null +++ b/src/samples/drumsynth/tr808/Kicklong.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=157 +F1=470 +F2=50 +Droop=73 +Phase=30 +Envelope=0,100 2086,71 9237,45 18027,23 36502,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=80 +F1=940 +F2=125 +Method=0 +Envelope1=0,29 1983,44 9359,16 36502,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=1 +Wave2=0 +Track2=0 +Param=0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Ride.ds b/src/samples/drumsynth/tr808/Ride.ds new file mode 100644 index 0000000..3a2d246 --- /dev/null +++ b/src/samples/drumsynth/tr808/Ride.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100 +Level=0 +Filter=1 +HighPass=0 +Resonance=1 +FilterEnv=0,97 41641,46 442000,100 443000,0 + +[Tone] +On=0 +Level=68 +F1=851 +F2=851 +Droop=54 +Phase=-45 +Envelope=0,58 10578,26 12217,0 + +[Noise] +On=1 +Level=142 +Slope=90 +Envelope=0,51 555,21 2538,9 7932,3 36168,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=172 +F1=291 +Wave1=3 +Track1=0 +F2=469 +Wave2=3 +Track2=0 +Method=3 +Param=9 +Envelope1=0,100 1269,32 3807,14 8646,7 39817,0 +Envelope2=0,96 39976,36 40531,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=1000 +dF=100 +Envelope=0,20 745,96 1490,36 3203,12 11025,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Rimshot.ds b/src/samples/drumsynth/tr808/Rimshot.ds new file mode 100644 index 0000000..d1a7713 --- /dev/null +++ b/src/samples/drumsynth/tr808/Rimshot.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=1800 +F2=1800 +Droop=0 +Phase=0 +Envelope=0,100 186,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=152 +F1=480 +F2=1800 +Method=0 +Envelope1=0,0 0,0 105,44 305,0 +Envelope2=0,100 165,6 444,4 749,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=62 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 1500,20 3750,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1000,20 2500,0 + +[Distortion] +On=1 +Clipping=16 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Snare.ds b/src/samples/drumsynth/tr808/Snare.ds new file mode 100644 index 0000000..da5f86a --- /dev/null +++ b/src/samples/drumsynth/tr808/Snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=5 +FilterEnv=0,98 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=350 +F2=174 +Droop=69 +Phase=45 +Envelope=0,100 715,46 1788,17 5453,0 + +[Noise] +On=1 +Level=64 +Slope=-86 +Envelope=0,0 22,98 521,52 1824,6 4521,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Snr_snap.ds b/src/samples/drumsynth/tr808/Snr_snap.ds new file mode 100644 index 0000000..988ae58 --- /dev/null +++ b/src/samples/drumsynth/tr808/Snr_snap.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=159 +F1=350 +F2=174 +Droop=69 +Phase=45 +Envelope=0,100 715,46 1847,18 3516,0 + +[Noise] +On=1 +Level=131 +Slope=-16 +Envelope=0,0 0,98 348,30 1190,8 3569,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=113 +F=3800 +dF=100 +Envelope=0,100 596,38 1824,8 4124,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Tom_hi.ds b/src/samples/drumsynth/tr808/Tom_hi.ds new file mode 100644 index 0000000..f389cad --- /dev/null +++ b/src/samples/drumsynth/tr808/Tom_hi.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=3 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,83 442000,100 443000,0 + +[Tone] +On=1 +Level=142 +F1=200 +F2=181 +Droop=12 +Phase=0 +Envelope=0,99 1490,60 3278,34 6704,0 + +[Noise] +On=0 +Level=149 +Slope=-16 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=161 +F=181 +dF=11 +Envelope=0,0 7,100 298,49 3799,21 8120,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Tom_lo.ds b/src/samples/drumsynth/tr808/Tom_lo.ds new file mode 100644 index 0000000..9a67faa --- /dev/null +++ b/src/samples/drumsynth/tr808/Tom_lo.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,76 442000,100 443000,0 + +[Tone] +On=1 +Level=132 +F1=120 +F2=98 +Droop=12 +Phase=130 +Envelope=0,99 1490,60 3278,34 15122,0 + +[Noise] +On=0 +Level=149 +Slope=-16 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=161 +F=98 +dF=12 +Envelope=0,0 7,100 1788,56 4470,32 12887,17 15793,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr808/Tom_mid.ds b/src/samples/drumsynth/tr808/Tom_mid.ds new file mode 100644 index 0000000..349c90e --- /dev/null +++ b/src/samples/drumsynth/tr808/Tom_mid.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=1 +HighPass=0 +Resonance=0 +FilterEnv=0,72 442000,100 443000,0 + +[Tone] +On=1 +Level=138 +F1=133 +F2=133 +Droop=0 +Phase=50 +Envelope=0,100 745,62 2443,35 4768,0 + +[Noise] +On=0 +Level=149 +Slope=-16 +Envelope=0,0 0,98 507,43 1788,19 3486,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=128 +F1=200 +F2=125 +Method=0 +Envelope1=0,100 3750,30 7500,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=128 +F=133 +dF=11 +Envelope=0,0 0,100 5587,25 12738,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Clap.ds b/src/samples/drumsynth/tr909/Clap.ds new file mode 100644 index 0000000..ffdbf53 --- /dev/null +++ b/src/samples/drumsynth/tr909/Clap.ds @@ -0,0 +1,34 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=138 +F1=67 +F2=60 +Droop=0 +Phase=30 +Envelope=0,100 2309,25 12515,0 + +[Noise] +On=1 +Level=123 +Slope=-32 +Envelope=0,85 146,20 521,0 521,100 670,21 864,0 864,91 991,13 2175,0 + +[Overtones] +On=0 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 + +[NoiseBand] +On=1 +Level=176 +F=2000 +dF=85 +Envelope=0,84 149,20 521,0 521,100 670,21 864,0 864,93 983,25 2101,5 7449,0 diff --git a/src/samples/drumsynth/tr909/Hat-c.ds b/src/samples/drumsynth/tr909/Hat-c.ds new file mode 100644 index 0000000..7b06885 --- /dev/null +++ b/src/samples/drumsynth/tr909/Hat-c.ds @@ -0,0 +1,34 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=138 +F1=67 +F2=60 +Droop=0 +Phase=30 +Envelope=0,100 2309,25 12515,0 + +[Noise] +On=1 +Level=138 +Slope=81 +Envelope=0,85 387,28 775,11 2175,0 + +[Overtones] +On=0 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 + +[NoiseBand] +On=1 +Level=66 +F=1000 +dF=81 +Envelope=0,96 149,15 685,5 2324,0 diff --git a/src/samples/drumsynth/tr909/Hat-c2.ds b/src/samples/drumsynth/tr909/Hat-c2.ds new file mode 100644 index 0000000..bd69412 --- /dev/null +++ b/src/samples/drumsynth/tr909/Hat-c2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=10.0 +Filter=1 +HighPass=1 +FilterEnv=0,78 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=147 +Slope=100 +Envelope=0,100 1490,76 2475,30 9375,24 11475,0 + +[Overtones] +On=1 +Level=136 +F1=7182 +Wave1=2 +Track1=0 +F2=517.3 +Wave2=2 +Track2=0 +Filter=0 +Method=2 +Param=54 +Envelope1=0,100 2325,27 8550,24 11400,0 +Envelope2=0,100 14303,53 15495,16 16984,0 + +[NoiseBand] +On=1 +Level=85 +F=8500 +dF=35 +Envelope=0,100 2400,30 8475,25 11775,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Hat-o.ds b/src/samples/drumsynth/tr909/Hat-o.ds new file mode 100644 index 0000000..6c195e4 --- /dev/null +++ b/src/samples/drumsynth/tr909/Hat-o.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Tuning=0.00 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=0 +Level=138 +F1=67 +F2=60 +Droop=0 +Phase=30 +Envelope=0,100 2309,25 12515,0 + +[Noise] +On=1 +Level=138 +Slope=88 +Envelope=0,85 660,21 1455,15 4800,17 7151,17 9684,3 12664,0 + +[Overtones] +On=0 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 +Param=50 + +[NoiseBand] +On=1 +Level=62 +F=1000 +dF=81 +Envelope=0,96 149,15 685,5 2324,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Hat-o2.ds b/src/samples/drumsynth/tr909/Hat-o2.ds new file mode 100644 index 0000000..bd0ed82 --- /dev/null +++ b/src/samples/drumsynth/tr909/Hat-o2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment=©1997 Paul Kellett http://www.abel.co.uk/~maxim/ +Tuning=0.00 +Stretch=100.0 +Filter=1 +HighPass=1 +FilterEnv=0,78 442000,100 442000,0 + +[Tone] +On=0 +Level=128 +F1=200 +F2=120 +Droop=0 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=1 +Level=113 +Slope=100 +Envelope=0,100 1490,76 4275,51 15495,16 16538,0 + +[Overtones] +On=1 +Level=136 +F1=7182 +Wave1=2 +Track1=0 +F2=517.3 +Wave2=2 +Track2=0 +Filter=0 +Method=2 +Param=54 +Envelope1=0,100 4425,40 15375,19 19070,0 +Envelope2=0,100 14303,53 15495,16 16984,0 + +[NoiseBand] +On=1 +Level=85 +F=8500 +dF=35 +Envelope=0,100 4350,42 15197,21 17133,0 + +[NoiseBand2] +On=0 +Level=128 +F=3150 +dF=50 +Envelope=0,100 1500,30 3000,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Kick.ds b/src/samples/drumsynth/tr909/Kick.ds new file mode 100644 index 0000000..5dd5984 --- /dev/null +++ b/src/samples/drumsynth/tr909/Kick.ds @@ -0,0 +1,57 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0.00 +Stretch=100.0 +Filter=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=161 +F1=300 +F2=53 +Droop=37 +Phase=30 +Envelope=0,100 819,81 4395,71 7077,29 10653,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4500,30 9000,0 + +[Overtones] +On=1 +Level=60 +F1=106 +F2=106 +Method=0 +Envelope1=0,100 3750,30 10429,0 +Envelope2=0,100 3000,30 6000,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Filter=0 +Param=50 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Kick_1.ds b/src/samples/drumsynth/tr909/Kick_1.ds new file mode 100644 index 0000000..ba64097 --- /dev/null +++ b/src/samples/drumsynth/tr909/Kick_1.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=161 +F1=300 +F2=53 +Droop=37 +Phase=30 +Envelope=0,100 819,81 4395,71 7077,29 10708,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 4500,30 9000,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=87 +F1=106 +Wave1=1 +Track1=0 +F2=53 +Wave2=0 +Track2=0 +Method=0 +Param=80 +Envelope1=0,100 3750,30 26254,0 +Envelope2=0,100 3000,30 22605,62 27364,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=1 +Clipping=7 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Kick_2.ds b/src/samples/drumsynth/tr909/Kick_2.ds new file mode 100644 index 0000000..5880927 --- /dev/null +++ b/src/samples/drumsynth/tr909/Kick_2.ds @@ -0,0 +1,58 @@ +[General] +Version=DrumSynth v1.0 +Comment= +Tuning=0 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 + +[Tone] +On=1 +Level=181 +F1=250 +F2=80 +Droop=28 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=181 +F=12000 +dF=4 +Envelope=0,100 596,9 10429,0 + +[NoiseBand2] +On=0 +Level=181 +F=14000 +dF=31 +Envelope=0,100 1043,1 10504,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Kick_3.ds b/src/samples/drumsynth/tr909/Kick_3.ds new file mode 100644 index 0000000..70df9c9 --- /dev/null +++ b/src/samples/drumsynth/tr909/Kick_3.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=157 +F1=400 +F2=50 +Droop=40 +Phase=30 +Envelope=0,100 2086,71 9237,45 18027,23 20305,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1937,80 3501,53 5066,32 6481,19 10131,4 19890,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=80 +F1=800 +Wave1=0 +Track1=1 +F2=125 +Wave2=0 +Track2=0 +Method=0 +Param=0 +Envelope1=0,29 1983,44 9359,16 19988,0 +Envelope2=0,100 3000,30 6000,0 +Filter=0 + +[NoiseBand] +On=0 +Level=128 +F=630 +dF=50 +Envelope=0,100 2250,30 4500,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Snare.ds b/src/samples/drumsynth/tr909/Snare.ds new file mode 100644 index 0000000..fac0107 --- /dev/null +++ b/src/samples/drumsynth/tr909/Snare.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=0 +FilterEnv=0,100 442000,100 443000,0 + +[Tone] +On=1 +Level=138 +F1=254 +F2=250 +Droop=0 +Phase=30 +Envelope=0,100 1117,20 3054,4 7822,0 + +[Noise] +On=1 +Level=108 +Slope=-18 +Envelope=0,100 819,39 1713,26 3874,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 +Wave1=0 +Track1=0 +Wave2=0 +Track2=0 +Param=50 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=5500 +dF=78 +Envelope=0,100 1536,15 3959,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/Snare2.ds b/src/samples/drumsynth/tr909/Snare2.ds new file mode 100644 index 0000000..3e4641f --- /dev/null +++ b/src/samples/drumsynth/tr909/Snare2.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0.00 +Stretch=100.0 +Level=0 +Filter=0 +HighPass=0 +Resonance=4 +FilterEnv=0,100 793,88 442000,100 443000,0 + +[Tone] +On=1 +Level=138 +F1=454 +F2=250 +Droop=50 +Phase=30 +Envelope=0,100 1117,20 3054,4 7822,0 + +[Noise] +On=1 +Level=108 +Slope=-18 +Envelope=0,100 1110,18 7614,0 +FixedSeq=0 + +[Overtones] +On=1 +Level=62 +F1=500 +Wave1=0 +Track1=0 +F2=328 +Wave2=0 +Track2=0 +Method=0 +Param=50 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 +Filter=0 + +[NoiseBand] +On=1 +Level=119 +F=5500 +dF=78 +Envelope=0,100 1536,15 3959,0 + +[NoiseBand2] +On=0 +Level=128 +F=1000 +dF=50 +Envelope=0,100 100,30 200,0 + +[Distortion] +On=0 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/drumsynth/tr909/TR909_Clap.ds b/src/samples/drumsynth/tr909/TR909_Clap.ds new file mode 100644 index 0000000..ffdbf53 --- /dev/null +++ b/src/samples/drumsynth/tr909/TR909_Clap.ds @@ -0,0 +1,34 @@ +[General] +Version=DrumSynth v1.0 +Comment= + +[Tone] +On=0 +Level=138 +F1=67 +F2=60 +Droop=0 +Phase=30 +Envelope=0,100 2309,25 12515,0 + +[Noise] +On=1 +Level=123 +Slope=-32 +Envelope=0,85 146,20 521,0 521,100 670,21 864,0 864,91 991,13 2175,0 + +[Overtones] +On=0 +Level=62 +F1=500 +F2=328 +Method=0 +Envelope1=0,100 968,17 2458,0 +Envelope2=0,100 745,11 2235,0 + +[NoiseBand] +On=1 +Level=176 +F=2000 +dF=85 +Envelope=0,84 149,20 521,0 521,100 670,21 864,0 864,93 983,25 2101,5 7449,0 diff --git a/src/samples/drumsynth/tr909/TR909_Kick.ds b/src/samples/drumsynth/tr909/TR909_Kick.ds new file mode 100644 index 0000000..1e0b593 --- /dev/null +++ b/src/samples/drumsynth/tr909/TR909_Kick.ds @@ -0,0 +1,60 @@ +[General] +Version=DrumSynth v2.0 +Tuning=0 +Stretch=100.0 +Filter=0 +HighPass=0 +FilterEnv=0,100 442000,100 442000,0 +Level=0 +Resonance=0 + +[Tone] +On=1 +Level=181 +F1=250 +F2=80 +Droop=28 +Phase=0 +Envelope=0,100 5250,30 10500,0 + +[Noise] +On=0 +Level=128 +Slope=0 +Envelope=0,100 1000,10 3000,0 +FixedSeq=0 + +[Overtones] +On=0 +Level=181 +F1=200 +Wave1=0 +Track1=0 +F2=100 +Wave2=0 +Track2=0 +Filter=0 +Method=1 +Param=50 +Envelope1=0,100 2500,20 6250,0 +Envelope2=0,100 2000,20 5000,0 + +[NoiseBand] +On=0 +Level=181 +F=12000 +dF=4 +Envelope=0,100 596,9 10429,0 + +[NoiseBand2] +On=0 +Level=181 +F=14000 +dF=31 +Envelope=0,100 1043,1 10504,0 + +[Distortion] +On=1 +Clipping=0 +Bits=0 +Rate=0 diff --git a/src/samples/effects/chroma_sound_effect01.ogg b/src/samples/effects/chroma_sound_effect01.ogg new file mode 100644 index 0000000..62269d7 Binary files /dev/null and b/src/samples/effects/chroma_sound_effect01.ogg differ diff --git a/src/samples/effects/explode01.ogg b/src/samples/effects/explode01.ogg new file mode 100644 index 0000000..73ccd97 Binary files /dev/null and b/src/samples/effects/explode01.ogg differ diff --git a/src/samples/effects/filter_sweep01.ogg b/src/samples/effects/filter_sweep01.ogg new file mode 100644 index 0000000..6409e30 Binary files /dev/null and b/src/samples/effects/filter_sweep01.ogg differ diff --git a/src/samples/effects/scratch01.ogg b/src/samples/effects/scratch01.ogg new file mode 100644 index 0000000..9f21603 Binary files /dev/null and b/src/samples/effects/scratch01.ogg differ diff --git a/src/samples/effects/start01.ogg b/src/samples/effects/start01.ogg new file mode 100644 index 0000000..cc159d5 Binary files /dev/null and b/src/samples/effects/start01.ogg differ diff --git a/src/samples/effects/start02.ogg b/src/samples/effects/start02.ogg new file mode 100644 index 0000000..c721836 Binary files /dev/null and b/src/samples/effects/start02.ogg differ diff --git a/src/samples/effects/stop01.ogg b/src/samples/effects/stop01.ogg new file mode 100644 index 0000000..f213bee Binary files /dev/null and b/src/samples/effects/stop01.ogg differ diff --git a/src/samples/effects/warp01.ogg b/src/samples/effects/warp01.ogg new file mode 100644 index 0000000..1aacb40 Binary files /dev/null and b/src/samples/effects/warp01.ogg differ diff --git a/src/samples/effects/warp02.ogg b/src/samples/effects/warp02.ogg new file mode 100644 index 0000000..cad5094 Binary files /dev/null and b/src/samples/effects/warp02.ogg differ diff --git a/src/samples/effects/wind_chimes01.ogg b/src/samples/effects/wind_chimes01.ogg new file mode 100644 index 0000000..35d3374 Binary files /dev/null and b/src/samples/effects/wind_chimes01.ogg differ diff --git a/src/samples/instruments/bassslap01.ogg b/src/samples/instruments/bassslap01.ogg new file mode 100644 index 0000000..eaf19c4 Binary files /dev/null and b/src/samples/instruments/bassslap01.ogg differ diff --git a/src/samples/instruments/bassslap02.ogg b/src/samples/instruments/bassslap02.ogg new file mode 100644 index 0000000..3e7f0e3 Binary files /dev/null and b/src/samples/instruments/bassslap02.ogg differ diff --git a/src/samples/instruments/cello01.ogg b/src/samples/instruments/cello01.ogg new file mode 100644 index 0000000..de9ea4d Binary files /dev/null and b/src/samples/instruments/cello01.ogg differ diff --git a/src/samples/instruments/church_organ01.ogg b/src/samples/instruments/church_organ01.ogg new file mode 100644 index 0000000..e13a856 Binary files /dev/null and b/src/samples/instruments/church_organ01.ogg differ diff --git a/src/samples/instruments/church_organ02.ogg b/src/samples/instruments/church_organ02.ogg new file mode 100644 index 0000000..811bab8 Binary files /dev/null and b/src/samples/instruments/church_organ02.ogg differ diff --git a/src/samples/instruments/church_organ03.ogg b/src/samples/instruments/church_organ03.ogg new file mode 100644 index 0000000..ef6ecdd Binary files /dev/null and b/src/samples/instruments/church_organ03.ogg differ diff --git a/src/samples/instruments/church_organ04.ogg b/src/samples/instruments/church_organ04.ogg new file mode 100644 index 0000000..3c1ed95 Binary files /dev/null and b/src/samples/instruments/church_organ04.ogg differ diff --git a/src/samples/instruments/e_organ01.ogg b/src/samples/instruments/e_organ01.ogg new file mode 100644 index 0000000..3bc60e3 Binary files /dev/null and b/src/samples/instruments/e_organ01.ogg differ diff --git a/src/samples/instruments/e_piano_accord01.ogg b/src/samples/instruments/e_piano_accord01.ogg new file mode 100644 index 0000000..381e9f9 Binary files /dev/null and b/src/samples/instruments/e_piano_accord01.ogg differ diff --git a/src/samples/instruments/e_piano_accord02.ogg b/src/samples/instruments/e_piano_accord02.ogg new file mode 100644 index 0000000..d265a61 Binary files /dev/null and b/src/samples/instruments/e_piano_accord02.ogg differ diff --git a/src/samples/instruments/flute01.ogg b/src/samples/instruments/flute01.ogg new file mode 100644 index 0000000..0600c4d Binary files /dev/null and b/src/samples/instruments/flute01.ogg differ diff --git a/src/samples/instruments/harpsichord01.ogg b/src/samples/instruments/harpsichord01.ogg new file mode 100644 index 0000000..028bbd9 Binary files /dev/null and b/src/samples/instruments/harpsichord01.ogg differ diff --git a/src/samples/instruments/piano01.ogg b/src/samples/instruments/piano01.ogg new file mode 100644 index 0000000..0eabbd6 Binary files /dev/null and b/src/samples/instruments/piano01.ogg differ diff --git a/src/samples/instruments/piano02.ogg b/src/samples/instruments/piano02.ogg new file mode 100644 index 0000000..2d9976f Binary files /dev/null and b/src/samples/instruments/piano02.ogg differ diff --git a/src/samples/instruments/steel_guitar01.ogg b/src/samples/instruments/steel_guitar01.ogg new file mode 100644 index 0000000..1c39558 Binary files /dev/null and b/src/samples/instruments/steel_guitar01.ogg differ diff --git a/src/samples/instruments/steel_guitar_heavy_distorted01.ogg b/src/samples/instruments/steel_guitar_heavy_distorted01.ogg new file mode 100644 index 0000000..971e77f Binary files /dev/null and b/src/samples/instruments/steel_guitar_heavy_distorted01.ogg differ diff --git a/src/samples/instruments/steel_guitar_medium_distorted01.ogg b/src/samples/instruments/steel_guitar_medium_distorted01.ogg new file mode 100644 index 0000000..6ae2be0 Binary files /dev/null and b/src/samples/instruments/steel_guitar_medium_distorted01.ogg differ diff --git a/src/samples/instruments/steel_guitar_slight_distorted01.ogg b/src/samples/instruments/steel_guitar_slight_distorted01.ogg new file mode 100644 index 0000000..064d116 Binary files /dev/null and b/src/samples/instruments/steel_guitar_slight_distorted01.ogg differ diff --git a/src/samples/instruments/trumpet01.ogg b/src/samples/instruments/trumpet01.ogg new file mode 100644 index 0000000..f638a3b Binary files /dev/null and b/src/samples/instruments/trumpet01.ogg differ diff --git a/src/samples/instruments/violin_double_stop01.ogg b/src/samples/instruments/violin_double_stop01.ogg new file mode 100644 index 0000000..bd2874a Binary files /dev/null and b/src/samples/instruments/violin_double_stop01.ogg differ diff --git a/src/samples/instruments/violin_fingered01.ogg b/src/samples/instruments/violin_fingered01.ogg new file mode 100644 index 0000000..97fe3c7 Binary files /dev/null and b/src/samples/instruments/violin_fingered01.ogg differ diff --git a/src/samples/instruments/violin_pizzicato01.ogg b/src/samples/instruments/violin_pizzicato01.ogg new file mode 100644 index 0000000..935bce3 Binary files /dev/null and b/src/samples/instruments/violin_pizzicato01.ogg differ diff --git a/src/samples/latin/latin_brass01.ogg b/src/samples/latin/latin_brass01.ogg new file mode 100644 index 0000000..3bf7dcd Binary files /dev/null and b/src/samples/latin/latin_brass01.ogg differ diff --git a/src/samples/latin/latin_guitar01.ogg b/src/samples/latin/latin_guitar01.ogg new file mode 100644 index 0000000..2568501 Binary files /dev/null and b/src/samples/latin/latin_guitar01.ogg differ diff --git a/src/samples/latin/latin_guitar02.ogg b/src/samples/latin/latin_guitar02.ogg new file mode 100644 index 0000000..3fe4269 Binary files /dev/null and b/src/samples/latin/latin_guitar02.ogg differ diff --git a/src/samples/latin/latin_guitar03.ogg b/src/samples/latin/latin_guitar03.ogg new file mode 100644 index 0000000..0ae9bb3 Binary files /dev/null and b/src/samples/latin/latin_guitar03.ogg differ diff --git a/src/samples/misc/applause01.ogg b/src/samples/misc/applause01.ogg new file mode 100644 index 0000000..1443638 Binary files /dev/null and b/src/samples/misc/applause01.ogg differ diff --git a/src/samples/misc/bass!.ogg b/src/samples/misc/bass!.ogg new file mode 100644 index 0000000..a329403 Binary files /dev/null and b/src/samples/misc/bass!.ogg differ diff --git a/src/samples/misc/breath01.ogg b/src/samples/misc/breath01.ogg new file mode 100644 index 0000000..86a088a Binary files /dev/null and b/src/samples/misc/breath01.ogg differ diff --git a/src/samples/misc/buzz!.ogg b/src/samples/misc/buzz!.ogg new file mode 100644 index 0000000..a774aa3 Binary files /dev/null and b/src/samples/misc/buzz!.ogg differ diff --git a/src/samples/misc/dong01.ogg b/src/samples/misc/dong01.ogg new file mode 100644 index 0000000..c68f76e Binary files /dev/null and b/src/samples/misc/dong01.ogg differ diff --git a/src/samples/misc/dong02.ogg b/src/samples/misc/dong02.ogg new file mode 100644 index 0000000..7435d36 Binary files /dev/null and b/src/samples/misc/dong02.ogg differ diff --git a/src/samples/misc/dong03.ogg b/src/samples/misc/dong03.ogg new file mode 100644 index 0000000..beb249c Binary files /dev/null and b/src/samples/misc/dong03.ogg differ diff --git a/src/samples/misc/electric_ping01.ogg b/src/samples/misc/electric_ping01.ogg new file mode 100644 index 0000000..d07b062 Binary files /dev/null and b/src/samples/misc/electric_ping01.ogg differ diff --git a/src/samples/misc/hit01.ogg b/src/samples/misc/hit01.ogg new file mode 100644 index 0000000..d5e9363 Binary files /dev/null and b/src/samples/misc/hit01.ogg differ diff --git a/src/samples/misc/hit02.ogg b/src/samples/misc/hit02.ogg new file mode 100644 index 0000000..4d22b6e Binary files /dev/null and b/src/samples/misc/hit02.ogg differ diff --git a/src/samples/misc/metalish_dong01.ogg b/src/samples/misc/metalish_dong01.ogg new file mode 100644 index 0000000..2baeeb5 Binary files /dev/null and b/src/samples/misc/metalish_dong01.ogg differ diff --git a/src/samples/misc/metronome01.ogg b/src/samples/misc/metronome01.ogg new file mode 100644 index 0000000..0797c6e Binary files /dev/null and b/src/samples/misc/metronome01.ogg differ diff --git a/src/samples/misc/metronome02.ogg b/src/samples/misc/metronome02.ogg new file mode 100644 index 0000000..780530b Binary files /dev/null and b/src/samples/misc/metronome02.ogg differ diff --git a/src/samples/misc/raving_crowd01.ogg b/src/samples/misc/raving_crowd01.ogg new file mode 100644 index 0000000..aced6c7 Binary files /dev/null and b/src/samples/misc/raving_crowd01.ogg differ diff --git a/src/samples/misc/snaph01.ogg b/src/samples/misc/snaph01.ogg new file mode 100644 index 0000000..37807c4 Binary files /dev/null and b/src/samples/misc/snaph01.ogg differ diff --git a/src/samples/misc/undefined01.ogg b/src/samples/misc/undefined01.ogg new file mode 100644 index 0000000..0182168 Binary files /dev/null and b/src/samples/misc/undefined01.ogg differ diff --git a/src/samples/shapes/additive.wav b/src/samples/shapes/additive.wav new file mode 100644 index 0000000..915f370 Binary files /dev/null and b/src/samples/shapes/additive.wav differ diff --git a/src/samples/shapes/additive2.wav b/src/samples/shapes/additive2.wav new file mode 100644 index 0000000..7c68170 Binary files /dev/null and b/src/samples/shapes/additive2.wav differ diff --git a/src/samples/shapes/bunglist.wav b/src/samples/shapes/bunglist.wav new file mode 100644 index 0000000..30cd936 Binary files /dev/null and b/src/samples/shapes/bunglist.wav differ diff --git a/src/samples/shapes/bunglist2.wav b/src/samples/shapes/bunglist2.wav new file mode 100644 index 0000000..4718690 Binary files /dev/null and b/src/samples/shapes/bunglist2.wav differ diff --git a/src/samples/shapes/bunglist3.wav b/src/samples/shapes/bunglist3.wav new file mode 100644 index 0000000..a5f2b57 Binary files /dev/null and b/src/samples/shapes/bunglist3.wav differ diff --git a/src/samples/shapes/bunglist4.wav b/src/samples/shapes/bunglist4.wav new file mode 100644 index 0000000..d9b401a Binary files /dev/null and b/src/samples/shapes/bunglist4.wav differ diff --git a/src/samples/shapes/bunglist5.wav b/src/samples/shapes/bunglist5.wav new file mode 100644 index 0000000..e6ed00e Binary files /dev/null and b/src/samples/shapes/bunglist5.wav differ diff --git a/src/samples/shapes/bunglist6.wav b/src/samples/shapes/bunglist6.wav new file mode 100644 index 0000000..0c7dc81 Binary files /dev/null and b/src/samples/shapes/bunglist6.wav differ diff --git a/src/samples/shapes/bunglist7.wav b/src/samples/shapes/bunglist7.wav new file mode 100644 index 0000000..1277f3b Binary files /dev/null and b/src/samples/shapes/bunglist7.wav differ diff --git a/src/samples/shapes/bunglist8.wav b/src/samples/shapes/bunglist8.wav new file mode 100644 index 0000000..4022ccb Binary files /dev/null and b/src/samples/shapes/bunglist8.wav differ diff --git a/src/samples/shapes/bunglist9.wav b/src/samples/shapes/bunglist9.wav new file mode 100644 index 0000000..defdcec Binary files /dev/null and b/src/samples/shapes/bunglist9.wav differ diff --git a/src/samples/shapes/harmonics.wav b/src/samples/shapes/harmonics.wav new file mode 100644 index 0000000..46f4b69 Binary files /dev/null and b/src/samples/shapes/harmonics.wav differ diff --git a/src/samples/shapes/low_sine.wav b/src/samples/shapes/low_sine.wav new file mode 100644 index 0000000..79199f2 Binary files /dev/null and b/src/samples/shapes/low_sine.wav differ diff --git a/src/samples/shapes/micro.wav b/src/samples/shapes/micro.wav new file mode 100644 index 0000000..56dd11d Binary files /dev/null and b/src/samples/shapes/micro.wav differ diff --git a/src/samples/shapes/moog.wav b/src/samples/shapes/moog.wav new file mode 100644 index 0000000..9e6a59a Binary files /dev/null and b/src/samples/shapes/moog.wav differ diff --git a/src/samples/shapes/roundbass.wav b/src/samples/shapes/roundbass.wav new file mode 100644 index 0000000..cc057e7 Binary files /dev/null and b/src/samples/shapes/roundbass.wav differ diff --git a/src/samples/shapes/roundsaw.ogg b/src/samples/shapes/roundsaw.ogg new file mode 100644 index 0000000..f27a197 Binary files /dev/null and b/src/samples/shapes/roundsaw.ogg differ diff --git a/src/samples/shapes/saw+sine.wav b/src/samples/shapes/saw+sine.wav new file mode 100644 index 0000000..e43d3fb Binary files /dev/null and b/src/samples/shapes/saw+sine.wav differ diff --git a/src/samples/shapes/sine_dist.ogg b/src/samples/shapes/sine_dist.ogg new file mode 100644 index 0000000..8e563d2 Binary files /dev/null and b/src/samples/shapes/sine_dist.ogg differ diff --git a/src/samples/shapes/smooth_inv_saw.ogg b/src/samples/shapes/smooth_inv_saw.ogg new file mode 100644 index 0000000..877fd4a Binary files /dev/null and b/src/samples/shapes/smooth_inv_saw.ogg differ diff --git a/src/samples/shapes/smooth_inv_saw2.ogg b/src/samples/shapes/smooth_inv_saw2.ogg new file mode 100644 index 0000000..32e1dd8 Binary files /dev/null and b/src/samples/shapes/smooth_inv_saw2.ogg differ diff --git a/src/samples/shapes/smooth_inv_saw_dist.ogg b/src/samples/shapes/smooth_inv_saw_dist.ogg new file mode 100644 index 0000000..a51a4e8 Binary files /dev/null and b/src/samples/shapes/smooth_inv_saw_dist.ogg differ diff --git a/src/samples/shapes/technobass.wav b/src/samples/shapes/technobass.wav new file mode 100644 index 0000000..65b1130 Binary files /dev/null and b/src/samples/shapes/technobass.wav differ diff --git a/src/samples/shapes/technosynth1.wav b/src/samples/shapes/technosynth1.wav new file mode 100644 index 0000000..f5b543d Binary files /dev/null and b/src/samples/shapes/technosynth1.wav differ diff --git a/src/samples/shapes/technosynth2.wav b/src/samples/shapes/technosynth2.wav new file mode 100644 index 0000000..2d1a0a2 Binary files /dev/null and b/src/samples/shapes/technosynth2.wav differ diff --git a/src/samples/shapes/technosynth3.wav b/src/samples/shapes/technosynth3.wav new file mode 100644 index 0000000..5a9f33c Binary files /dev/null and b/src/samples/shapes/technosynth3.wav differ diff --git a/src/samples/shapes/technosynth4.wav b/src/samples/shapes/technosynth4.wav new file mode 100644 index 0000000..2012371 Binary files /dev/null and b/src/samples/shapes/technosynth4.wav differ diff --git a/src/samples/shapes/technosynth5.wav b/src/samples/shapes/technosynth5.wav new file mode 100644 index 0000000..4c90797 Binary files /dev/null and b/src/samples/shapes/technosynth5.wav differ diff --git a/src/samples/shapes/technosynth6.wav b/src/samples/shapes/technosynth6.wav new file mode 100644 index 0000000..08c809f Binary files /dev/null and b/src/samples/shapes/technosynth6.wav differ diff --git a/src/samples/shapes/vowel_a.wav b/src/samples/shapes/vowel_a.wav new file mode 100644 index 0000000..4f21e58 Binary files /dev/null and b/src/samples/shapes/vowel_a.wav differ diff --git a/src/samples/shapes/vowel_u.wav b/src/samples/shapes/vowel_u.wav new file mode 100644 index 0000000..9211f22 Binary files /dev/null and b/src/samples/shapes/vowel_u.wav differ diff --git a/src/samples/stringsnpads/bell_choir01.ogg b/src/samples/stringsnpads/bell_choir01.ogg new file mode 100644 index 0000000..b93457a Binary files /dev/null and b/src/samples/stringsnpads/bell_choir01.ogg differ diff --git a/src/samples/stringsnpads/bell_choir02.ogg b/src/samples/stringsnpads/bell_choir02.ogg new file mode 100644 index 0000000..34cb0cb Binary files /dev/null and b/src/samples/stringsnpads/bell_choir02.ogg differ diff --git a/src/samples/stringsnpads/chorus01.ogg b/src/samples/stringsnpads/chorus01.ogg new file mode 100644 index 0000000..288e620 Binary files /dev/null and b/src/samples/stringsnpads/chorus01.ogg differ diff --git a/src/samples/stringsnpads/chorus02.ogg b/src/samples/stringsnpads/chorus02.ogg new file mode 100644 index 0000000..71a39d4 Binary files /dev/null and b/src/samples/stringsnpads/chorus02.ogg differ diff --git a/src/samples/stringsnpads/heaven_strings01.ogg b/src/samples/stringsnpads/heaven_strings01.ogg new file mode 100644 index 0000000..415102a Binary files /dev/null and b/src/samples/stringsnpads/heaven_strings01.ogg differ diff --git a/src/samples/stringsnpads/juno_pad01.ogg b/src/samples/stringsnpads/juno_pad01.ogg new file mode 100644 index 0000000..77fb264 Binary files /dev/null and b/src/samples/stringsnpads/juno_pad01.ogg differ diff --git a/src/samples/stringsnpads/korg_poly6_drone01.ogg b/src/samples/stringsnpads/korg_poly6_drone01.ogg new file mode 100644 index 0000000..c523b5d Binary files /dev/null and b/src/samples/stringsnpads/korg_poly6_drone01.ogg differ diff --git a/src/samples/stringsnpads/nord_ambient01.ogg b/src/samples/stringsnpads/nord_ambient01.ogg new file mode 100644 index 0000000..7c9b2d0 Binary files /dev/null and b/src/samples/stringsnpads/nord_ambient01.ogg differ diff --git a/src/samples/stringsnpads/orion_string01.ogg b/src/samples/stringsnpads/orion_string01.ogg new file mode 100644 index 0000000..57651b4 Binary files /dev/null and b/src/samples/stringsnpads/orion_string01.ogg differ diff --git a/src/samples/stringsnpads/rave_choir01.ogg b/src/samples/stringsnpads/rave_choir01.ogg new file mode 100644 index 0000000..3826f89 Binary files /dev/null and b/src/samples/stringsnpads/rave_choir01.ogg differ diff --git a/src/samples/stringsnpads/space_strings01.ogg b/src/samples/stringsnpads/space_strings01.ogg new file mode 100644 index 0000000..624a789 Binary files /dev/null and b/src/samples/stringsnpads/space_strings01.ogg differ diff --git a/src/samples/stringsnpads/space_strings02.ogg b/src/samples/stringsnpads/space_strings02.ogg new file mode 100644 index 0000000..b9c5669 Binary files /dev/null and b/src/samples/stringsnpads/space_strings02.ogg differ diff --git a/src/samples/stringsnpads/space_strings03.ogg b/src/samples/stringsnpads/space_strings03.ogg new file mode 100644 index 0000000..64786a3 Binary files /dev/null and b/src/samples/stringsnpads/space_strings03.ogg differ diff --git a/src/samples/stringsnpads/strings01.ogg b/src/samples/stringsnpads/strings01.ogg new file mode 100644 index 0000000..913ef28 Binary files /dev/null and b/src/samples/stringsnpads/strings01.ogg differ diff --git a/src/samples/waveforms/10saw.flac b/src/samples/waveforms/10saw.flac new file mode 100644 index 0000000..49f04d9 Binary files /dev/null and b/src/samples/waveforms/10saw.flac differ diff --git a/src/samples/waveforms/10sine.flac b/src/samples/waveforms/10sine.flac new file mode 100644 index 0000000..3cd8f2f Binary files /dev/null and b/src/samples/waveforms/10sine.flac differ diff --git a/src/samples/waveforms/10sqr.flac b/src/samples/waveforms/10sqr.flac new file mode 100644 index 0000000..53aa21d Binary files /dev/null and b/src/samples/waveforms/10sqr.flac differ diff --git a/src/samples/waveforms/10tri.flac b/src/samples/waveforms/10tri.flac new file mode 100644 index 0000000..942d881 Binary files /dev/null and b/src/samples/waveforms/10tri.flac differ diff --git a/src/samples/waveforms/analogsqr.flac b/src/samples/waveforms/analogsqr.flac new file mode 100644 index 0000000..01b9842 Binary files /dev/null and b/src/samples/waveforms/analogsqr.flac differ diff --git a/src/samples/waveforms/fmsaw1.flac b/src/samples/waveforms/fmsaw1.flac new file mode 100644 index 0000000..7aaf864 Binary files /dev/null and b/src/samples/waveforms/fmsaw1.flac differ diff --git a/src/samples/waveforms/fmsine.flac b/src/samples/waveforms/fmsine.flac new file mode 100644 index 0000000..2b4c237 Binary files /dev/null and b/src/samples/waveforms/fmsine.flac differ diff --git a/src/samples/waveforms/fmsine2.flac b/src/samples/waveforms/fmsine2.flac new file mode 100644 index 0000000..26ad79d Binary files /dev/null and b/src/samples/waveforms/fmsine2.flac differ diff --git a/src/samples/waveforms/halfsine.flac b/src/samples/waveforms/halfsine.flac new file mode 100644 index 0000000..9b19025 Binary files /dev/null and b/src/samples/waveforms/halfsine.flac differ diff --git a/src/samples/waveforms/impulse.flac b/src/samples/waveforms/impulse.flac new file mode 100644 index 0000000..85a3148 Binary files /dev/null and b/src/samples/waveforms/impulse.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_quarter.flac b/src/samples/waveforms/lfo_trancegate_quarter.flac new file mode 100644 index 0000000..5f47660 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_quarter.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_sawdecay_quarter.flac b/src/samples/waveforms/lfo_trancegate_sawdecay_quarter.flac new file mode 100644 index 0000000..76a3568 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_sawdecay_quarter.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_sinedecay_quarter.flac b/src/samples/waveforms/lfo_trancegate_sinedecay_quarter.flac new file mode 100644 index 0000000..dbaae77 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_sinedecay_quarter.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_triplet_half.flac b/src/samples/waveforms/lfo_trancegate_triplet_half.flac new file mode 100644 index 0000000..347d8ba Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_triplet_half.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_triplet_half_2.flac b/src/samples/waveforms/lfo_trancegate_triplet_half_2.flac new file mode 100644 index 0000000..48f7906 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_triplet_half_2.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_triplet_quarter.flac b/src/samples/waveforms/lfo_trancegate_triplet_quarter.flac new file mode 100644 index 0000000..5d2ceb0 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_triplet_quarter.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_whole.flac b/src/samples/waveforms/lfo_trancegate_whole.flac new file mode 100644 index 0000000..e4850e9 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_whole.flac differ diff --git a/src/samples/waveforms/lfo_trancegate_whole_2.flac b/src/samples/waveforms/lfo_trancegate_whole_2.flac new file mode 100644 index 0000000..f60c7e1 Binary files /dev/null and b/src/samples/waveforms/lfo_trancegate_whole_2.flac differ diff --git a/src/samples/waveforms/modsqr.flac b/src/samples/waveforms/modsqr.flac new file mode 100644 index 0000000..811e62c Binary files /dev/null and b/src/samples/waveforms/modsqr.flac differ diff --git a/src/samples/waveforms/saw1.flac b/src/samples/waveforms/saw1.flac new file mode 100644 index 0000000..9bae8d2 Binary files /dev/null and b/src/samples/waveforms/saw1.flac differ diff --git a/src/samples/waveforms/saw2.flac b/src/samples/waveforms/saw2.flac new file mode 100644 index 0000000..f29a9ef Binary files /dev/null and b/src/samples/waveforms/saw2.flac differ diff --git a/src/samples/waveforms/sinesaw.flac b/src/samples/waveforms/sinesaw.flac new file mode 100644 index 0000000..4dc6bb4 Binary files /dev/null and b/src/samples/waveforms/sinesaw.flac differ diff --git a/src/samples/waveforms/w2_addsyn.flac b/src/samples/waveforms/w2_addsyn.flac new file mode 100644 index 0000000..50ee711 Binary files /dev/null and b/src/samples/waveforms/w2_addsyn.flac differ diff --git a/src/samples/waveforms/w2_angrysaw.flac b/src/samples/waveforms/w2_angrysaw.flac new file mode 100644 index 0000000..763b6d8 Binary files /dev/null and b/src/samples/waveforms/w2_angrysaw.flac differ diff --git a/src/samples/waveforms/w2_hexagon.flac b/src/samples/waveforms/w2_hexagon.flac new file mode 100644 index 0000000..998d639 Binary files /dev/null and b/src/samples/waveforms/w2_hexagon.flac differ diff --git a/src/samples/waveforms/w2_invsine.flac b/src/samples/waveforms/w2_invsine.flac new file mode 100644 index 0000000..b5844f9 Binary files /dev/null and b/src/samples/waveforms/w2_invsine.flac differ diff --git a/src/samples/waveforms/w2_invsineabs.flac b/src/samples/waveforms/w2_invsineabs.flac new file mode 100644 index 0000000..70d0921 Binary files /dev/null and b/src/samples/waveforms/w2_invsineabs.flac differ diff --git a/src/samples/waveforms/w2_invsinehalf.flac b/src/samples/waveforms/w2_invsinehalf.flac new file mode 100644 index 0000000..dfed2fd Binary files /dev/null and b/src/samples/waveforms/w2_invsinehalf.flac differ diff --git a/src/samples/waveforms/w2_noisy.flac b/src/samples/waveforms/w2_noisy.flac new file mode 100644 index 0000000..30d49b8 Binary files /dev/null and b/src/samples/waveforms/w2_noisy.flac differ diff --git a/src/samples/waveforms/w2_rad.flac b/src/samples/waveforms/w2_rad.flac new file mode 100644 index 0000000..4971abb Binary files /dev/null and b/src/samples/waveforms/w2_rad.flac differ diff --git a/src/samples/waveforms/w2_sawsine.flac b/src/samples/waveforms/w2_sawsine.flac new file mode 100644 index 0000000..b267c3e Binary files /dev/null and b/src/samples/waveforms/w2_sawsine.flac differ diff --git a/src/samples/waveforms/w2_sharp.flac b/src/samples/waveforms/w2_sharp.flac new file mode 100644 index 0000000..6475000 Binary files /dev/null and b/src/samples/waveforms/w2_sharp.flac differ diff --git a/src/samples/waveforms/w2_w-wave.flac b/src/samples/waveforms/w2_w-wave.flac new file mode 100644 index 0000000..40db66f Binary files /dev/null and b/src/samples/waveforms/w2_w-wave.flac differ