Giter VIP home page Giter VIP logo

Comments (6)

ojack avatar ojack commented on July 24, 2024 1

yes! there is already websockets as well as webrtc, its just a matter of deciding on an api.
i have sent code via websockets here: https://github.com/ojack/hydra-sync

could you explain a little more how you would imagine using it?

from hydra.

brucelane avatar brucelane commented on July 24, 2024 1

Since 2018, I added websocket support on all my forks of Hydra and it works fine.
hydracinder

from hydra.

brucelane avatar brucelane commented on July 24, 2024

it could be running other browsers on the network without having the need to stream with webrtc as fragment shaders and uniforms are sent as text, very lightweight on the bandwidth.
But I got another plan which is to feed my own VJ software with these fragment shaders and uniforms in a standalone visualizer app made with Cinder.

from hydra.

ojack avatar ojack commented on July 24, 2024

There is a function pb.broadcast() to send text via websockets, pb.sendToPeer() to send text via webrtc to a specific peer, or pb.sendToAll() to send to all connections via webrtc.... but they are only used internally right now. I need to look it over to make it a bit more usable.

from hydra.

brucelane avatar brucelane commented on July 24, 2024

great! at this point I have to check your code before talking without knowing ;-)

from hydra.

micuat avatar micuat commented on July 24, 2024

sorry for bumping an old thread but I just tested websocket to pass parameters. example app on processing:

import websockets.*;

WebsocketServer ws;

void setup(){
  size(600,200);
  ws= new WebsocketServer(this,8025,"/");
  frameRate(10);
}

void draw(){
  ws.sendMessage("0,"+map(mouseX,0,width,0,1));
}

void webSocketServerEvent(String msg){
 println(msg);
}

then running this on hydra console:

const socket = new WebSocket('ws://localhost:8025/');

// Connection opened
socket.addEventListener('open', function (event) {
  socket.send('Hello Server!');
});

var dd=Array(128).fill(0.5)

socket.addEventListener('message', function (event) {
  let [index, val] = event.data.split(",");
  //console.log(index, val)
  dd[index] = parseFloat(val);
});

and for example

osc(30,0.01,()=>dd[0]).out()

Should I go ahead and add a page in the doc folder? Of course the "API" can be improved by using stringified JSON, for example.

from hydra.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.