Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现一个简单的服务器-客户端模型来流式传输视频。在服务器上播放的视频也应该在客户端播放。我在网上搜索,发现java中的DatagramChannel适合这个。如何使用 DatagramChannel 发送视频?或者有没有其他解决方案?谢谢你。
您可以使用现成的解决方案,例如 Red5 服务器或 FFMPEG-Java
我不会使用 DatagramChannel 作为,
相反,我会使用 TCP。有许多库可以帮助解决这些问题,包括 Netty 和 Mina。