如何从 JavaScript 通过 TCP 发送 OSC?
我正在尝试构建一个移动 Web 应用程序,通过 TCP 将 OSC(开放声音控制)消息发送到另一个程序(用于音频合成)。我找不到可以打开到给定地址的 TCP 连接的 javascript 库。有什么建议吗?
I'm trying to build a mobile web application that sends OSC (Open Sound Control) messages to another program (for audio synthesis) over TCP. I can't find a javascript library which will open a TCP connection to a given address. Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
https://github.com/mirek/CoreWebSocket
我不确定,但这是最接近的在浏览器中使用 JS(基于 WebKit)。
这是: http://en.wikipedia.org/wiki/WebSockets
Try this:
https://github.com/mirek/CoreWebSocket
I am not sure though but that is closest what you can get with JS in browsers (WebKit based).
And this: http://en.wikipedia.org/wiki/WebSockets
不知道osc对js的支持有多少。 AS3 使用 TUIO 库对 OSC 提供了很好的支持:
http://bubblebird.at/tuioflash/ tuio-as3-library/
如果您可以修改语法以适应,它会相当灵活,并且可以通过 Flex、AIR 等轻松移植到移动设备...
Not sure how much osc support js has. AS3 has pretty great support for OSC using the TUIO library:
http://bubblebird.at/tuioflash/tuio-as3-library/
If you can modify your syntax to fit, it's rather flexible, and will port to mobile easily with flex, AIR, etc...