4

電話からコンピューターにオーディオをルーティングし、コンピューター (Windows 7) のマイクを電話の通話の入力デバイスとして使用できる C# 用の Bluetooth スタックを探しています。32Feet.NET を調べましたが、オーディオ チャネルをサポートしていないようです。私がこれについて間違っている場合は、誰かが私を修正してください。それ以外の場合は、Bluetooth サポートに使用できる C# の代替ライブラリがあれば教えてください。

4

1 に答える 1

0

I'm afraid this probably doesn't really answer your question, but maybe adds some alternative perspective: The issues you're trying to solve seem to be supported by standard Bluetooth audio profiles. As such, there are chances they're provided by the OS's (or other vendor's) Bluetooth stack in a transparent manner, i.e. as audio device like the system's sound card.

If there is no urgent reason for a custom implementation of these Bluetooth profiles, you might be better off looking for .NET methods that configure the audio devices your code uses for audio input/output. You would then use Bluetooth audio in the same way you access other audio devices, basically reducing your code to proxy audio from one audio device (sound card) to another (Bluetooth audio).

于 2012-05-28T19:49:31.760 に答える