9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TidalCyclesでOSCを送信する方法

Last updated at Posted at 2018-08-18

こんにちは,santaです.
今回は,TidalCyclesでOSCを送信する方法について書きます.

ソースコード

TidalCyclesでOSCを送信するためには,TidalCyclesではなく,SuperColliderに下のコードを追加する必要があります.

(
var addr = NetAddr.new("localhost", 10000); //localhostにはIPアドレスを追加
OSCdef(\tidalplay2, {
  arg msg;
  addr.sendMsg("/play2", *msg);
}, '/play2', n);
)

次に下のコードをcommand + Enterでコンパイルしましょう.

SuperDirt.start;

次にTidalCyclesを起動するとOSCが送信されているのがわかると思います(本記事ではTouchDesignerを用いて確認しています).

ScreenShot 2018-08-18 17.46.08.png

まとめ

とても簡単にOSCを送信することができるのでぜひ一度試してみてください.

下のように,TidalCyclesとTouchDesignerの連携もできるようになります.
GitHub

9
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?