Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c# capture microphone

Tags:

c#

Can someone tell me how could I capture the microphone and send it over IP? Is there any example of how to capture and put into a buffer in order to send it on UDP socket to another computer and listen the song? I'm working in c#. THX. I would really apprecciate if there is someone who can give me an example:)

like image 412
elisa Avatar asked Feb 05 '26 02:02

elisa


1 Answers

you can find some open source projects you could get inspired from: http://www.voip-info.org/wiki/view/Open+Source+VOIP+Software

if you just want to stream audio via UDP maybe you don't need a full implementation of the SIP stack but if you want to make a skype-clone you probably do.

like image 128
Davide Piras Avatar answered Feb 06 '26 15:02

Davide Piras