1

有谁知道如何捕获语音并通过网络发送然后在另一台计算机上用java播放

4

1 回答 1

2

I did some research on this about 10 years ago at a research lab so I might be a bit out of date! At the time there was no standard for the whole process. You have to use the Java sound API to record and playback, then any network protocol you want to send it.

If it is just for a person to listen to, then use something with good compression - something like the media streaming in the Java Media Framework. If you want to use speech recognition on the data you'll probably need something higher quality and closer to the raw data, and it might be worth looking at the Java Speech API.

于 2010-04-14T08:50:54.543 回答