View Single Post
  #2  
Old 11-01-2012, 02:59 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
There would need to be some type of application on the server side that gets each frame of the video, perhaps compress it to jpeg, and then sends it over the network. A TCP socket is probably the best method to send image data over the network. UDP sockets have a maximum message size and only work with small images. In Vizard, you would have to use Python's networking features to receive the image data and then use Vizard commands to apply it as a texture to some object.
Reply With Quote