Reputation: 97
I am trying to implement a simple server-client model to stream video. The video which is being played on server should play in client as well. I searched over the net and found that DatagramChannel in java is suitable for this. How can I send video with DatagramChannel? Or is there any other solution? Thank you.
Upvotes: 0
Views: 361
Reputation: 533500
I wouldn't use DatagramChannel as,
Instead I would use TCP. There are many libraries which help do with including Netty and Mina.
Upvotes: 0