Making a Internet Radio Station Application C#

S

Sam Lad

Hello I was thinking of writing a internet radio station suite for my
disitation but was not sure on where to begin.

i thought about what was involved and this is what i need help on
finding material / examples

1. Extracting the audio data from the users microphone
2. Extracting the audio data from an MP3
3. allowing the user to switch between the 2
4. sending the audio data over TCP sockets
5. Making a client that buffers this data
6. making the client play from this buffer


any ideas for useful articles, or information / ideas ?
 
M

MuZZy

Sam said:
Hello I was thinking of writing a internet radio station suite for my
disitation but was not sure on where to begin.

i thought about what was involved and this is what i need help on
finding material / examples

1. Extracting the audio data from the users microphone
2. Extracting the audio data from an MP3
3. allowing the user to switch between the 2
4. sending the audio data over TCP sockets
5. Making a client that buffers this data
6. making the client play from this buffer


any ideas for useful articles, or information / ideas ?


Have a look: http://www.codeproject.com/cs/media/cswavrec.asp
The guy posted a example which allows to record and play wav files - it helped me a lot with my project.
At least you will get some idea of getting audio data from microphone.

About MP3 capture/playing, look at "audiere" project - i don't remember the web site - google will
give it to you.

When you captured the sound, you send/receive it over TCP using .NET socket classes same way as you
send/receive any regular data.

HIH,
Andrey
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top