synchronizing audio over a network

前端 未结 5 501
执念已碎
执念已碎 2021-01-29 23:01

I\'m in startup of designing a client/server audio system which can stream audio arbitrarily over a network. One central server pumps out an audio stream and x number of clients

5条回答
  •  一生所求
    2021-01-29 23:37

    Check out the paper An Internet Protocol Sound System by Tom Blank of Microsoft Research. He solves the exact problem you are working on. His solution involves synchronizing the clocks across machines and using timestamps to let them each play at the same time. The downside of this approach is latency. To get all of the clocks synchronized requires stamping the time at the largest latency on the network.

提交回复
热议问题