Chino Yoshio Blog

Sine Wave Version: Complete Basic Settings

A reproducible JSON-based record of Chino Yoshio’s Sine Wave Version settings, including layers, envelopes, panning, and loop behavior.

Sine Wave Version: Complete Basic Settings

Sine Wave Version: Complete Basic Settings
Hello. I am Chino Yoshio, a composer quietly creating music in Kyotanabe, Kyoto.
This time, I would like to record the basic settings used to recreate my “Sine Wave Version” sound.
This is not a preset designed for one specific sampler. Instead, it is a JSON-based description of the sound structure: a 440 Hz sine wave, two layers, amplitude envelopes, key-range-based panning, and loop settings.
If you give this JSON to a generative AI tool, it should be able to translate the specification into setup instructions for the sampler you normally use, such as Kontakt, Logic Sampler, UVI Falcon, or other sample-based instruments.
I cannot guarantee that the result will sound exactly the same in every sampler. However, the basic structure is very simple, so I believe a similar sound can be recreated in many sampler environments.
This is also a small record of reproducibility.
Even if the sampler or software environment changes in the future, the sound can still be reconstructed as long as the basic structure is preserved.
This specification is provided as a technical record for reproducibility. It does not grant permission to create or distribute presets, sample libraries, plug-ins, or plug-in instruments that use my artist name, work titles, or release names in a misleading way.

JSON

{
  "preset_name": "Sine Wave Version",
  "sampler_settings": {
    "source_sample": {
      "waveform": "sine wave",
      "frequency": "440 Hz",
      "length": "5 seconds",
      "root_key": "A3",
      "description": "Import a 5-second 440 Hz sine wave into the sampler."
    },
    "polyphony": {
      "recommended_value": 99,
      "description": "Use the maximum stable polyphony value available in Logic Sampler."
    }
  },
  "layers": [
    {
      "name": "Layer 1",
      "role": "main sustained sine wave layer",
      "volume": "0 dB",
      "amp_envelope": {
        "attack": "5 ms",
        "hold": "0 ms",
        "decay": "4000 ms",
        "sustain": "-inf dB",
        "release": "400 ms"
      },
      "loop": {
        "enabled": true,
        "mode": "Forward",
        "snap_zero_crossing": true,
        "description": "Loop is enabled only for Layer 1."
      }
    },
    {
      "name": "Layer 2",
      "role": "short secondary sine wave layer",
      "volume": "-15 dB",
      "amp_envelope": {
        "attack": "5 ms",
        "hold": "0 ms",
        "decay": "200 ms",
        "sustain": "-inf dB",
        "release": "50 ms"
      },
      "loop": {
        "enabled": false
      }
    }
  ],
  "key_mapping_groups": [
    {
      "key_range": {
        "low": "C-2",
        "high": "B1"
      },
      "pan": -10,
      "volume": "0 dB"
    },
    {
      "key_range": {
        "low": "C2",
        "high": "B2"
      },
      "pan": -5,
      "volume": "0 dB"
    },
    {
      "key_range": {
        "low": "C3",
        "high": "B3"
      },
      "pan": 0,
      "volume": "0 dB"
    },
    {
      "key_range": {
        "low": "C4",
        "high": "B4"
      },
      "pan": 5,
      "volume": "0 dB"
    },
    {
      "key_range": {
        "low": "C5",
        "high": "G8"
      },
      "pan": 10,
      "volume": "-5 dB"
    }
  ],
  "notes": [
    "Layer 1 uses a looped 5-second 440 Hz sine wave for sustained playback.",
    "Layer 2 is used as a quieter secondary layer without looping.",
    "Panning is divided by key range, moving gradually from the left in the low register to the right in the high register.",
    "The high register from C5 to G8 is reduced by 5 dB to avoid excessive brightness."
  ]
}

Sine Wave Version の基本設定・完全版

こんにちは。京都・京田辺で静かに作曲活動をしている Chino Yoshio です。
今回は、私の “Sine Wave Version” を再現するための基本設定を記録しておきます。
これは特定のサンプラー専用のプリセットではなく、440Hz のサイン波、2つのレイヤー、エンベロープ、キー範囲ごとのパン設定、ループ設定を JSON 形式で整理したものです。
この JSON を生成AIに入力すれば、Kontakt、Logic Sampler、UVI Falcon など、普段使用しているサンプラーに合わせた設定手順へ変換できるはずです。
完全に同じ音になることを保証するものではありませんが、基本的な構造は非常にシンプルなので、多くのサンプラーで近い音を再現できると思います。
また、この設定は、特定のソフトウェアやメーカーに依存しすぎないための記録でもあります。
サンプラーが変わっても、音の構造が残っていれば、作品を再現できる可能性が高くなります。
この設定は、私自身の制作環境を将来も再現できるようにするための技術的な記録です。私の作品名、アーティスト名、またはリリース名を利用して、誤認を招く音源・プリセット・プラグインを作成・配布することを許可するものではありません。

JSON

{
  "プリセット名": "Sine Wave Version",
  "サンプラー設定": {
    "元サンプル": {
      "波形": "サイン波",
      "周波数": "440 Hz",
      "長さ": "5秒",
      "ルートキー": "A3",
      "説明": "5秒の440Hzサイン波をサンプラーに読み込む。"
    },
    "同時発音数": {
      "推奨値": 99,
      "説明": "Logic Samplerで安定して使用できる最大値を目安にする。"
    }
  },
  "レイヤー": [
    {
      "名前": "Layer 1",
      "役割": "持続音を担当するメインのサイン波レイヤー",
      "音量": "0 dB",
      "アンプエンベロープ": {
        "アタック": "5 ms",
        "ホールド": "0 ms",
        "ディケイ": "4000 ms",
        "サスティン": "-inf dB",
        "リリース": "400 ms"
      },
      "ループ": {
        "有効": true,
        "モード": "Forward",
        "ゼロクロスにスナップ": true,
        "説明": "ループ設定はLayer 1のみに適用する。"
      }
    },
    {
      "名前": "Layer 2",
      "役割": "短く鳴る補助的なサイン波レイヤー",
      "音量": "-15 dB",
      "アンプエンベロープ": {
        "アタック": "5 ms",
        "ホールド": "0 ms",
        "ディケイ": "200 ms",
        "サスティン": "-inf dB",
        "リリース": "50 ms"
      },
      "ループ": {
        "有効": false
      }
    }
  ],
  "キーマッピンググループ": [
    {
      "キー範囲": {
        "低音側": "C-2",
        "高音側": "B1"
      },
      "パン": -10,
      "音量": "0 dB"
    },
    {
      "キー範囲": {
        "低音側": "C2",
        "高音側": "B2"
      },
      "パン": -5,
      "音量": "0 dB"
    },
    {
      "キー範囲": {
        "低音側": "C3",
        "高音側": "B3"
      },
      "パン": 0,
      "音量": "0 dB"
    },
    {
      "キー範囲": {
        "低音側": "C4",
        "高音側": "B4"
      },
      "パン": 5,
      "音量": "0 dB"
    },
    {
      "キー範囲": {
        "低音側": "C5",
        "高音側": "G8"
      },
      "パン": 10,
      "音量": "-5 dB"
    }
  ],
  "補足": [
    "Layer 1は5秒の440Hzサイン波をループさせ、持続音として使用する。",
    "Layer 2は音量を小さくした補助レイヤーとして使用し、ループは行わない。",
    "パンはキー範囲ごとに分け、低音域はやや左、高音域はやや右に配置する。",
    "C5からG8の高音域は、耳につきすぎないように音量を5dB下げる。"
  ]
}
Navigation

This article is part of the official Chino Yoshio Blog.