473,386 Members | 1,699 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Is this possible? Audio recording over the web.

I had an idea for something that I can't find any evidence if it exists,
or if it can be done. I assume it can be done.

What I'd like to be able to do, is to allow people who come to my website,
click a button on the page to begin submitting an audio stream to the
server.

Basically, once the "record" button was hit by the client, an audio stream
would be generated by the client's microphone and would be sent over port
80 (just like all other web data) and would be recorded on the server,
encoded as an MP3.

I figure, when you upload a file, it sends 0s and 1s in a stream that is
written as a file on the server, why not 0s and 1s generated by a
microphone rather than reading from a file on the client's hard drive?

The point would be to allow web users to record short audio MP3s directly
to the server without any other software than their browser, and with only
a standard microphone. Files would be saved, and then added to a Podcast
automatically, thus creating a sort of audio message board or blog.

Has this ever been done? Is it possible?

Couldn't find anything on Google or sourceforge.

--
[ Sugapablo ]
[ http://www.sugapablo.net <--personal | http://www.sugapablo.com <--music ]
[ http://www.2ra.org <--political | http://www.subuse.net <--discuss ]

Jul 17 '05 #1
6 5508
Sugapablo wrote:
I had an idea for something that I can't find any evidence if it exists,
or if it can be done. I assume it can be done.

What I'd like to be able to do, is to allow people who come to my website,
click a button on the page to begin submitting an audio stream to the
server.

Basically, once the "record" button was hit by the client, an audio stream
would be generated by the client's microphone and would be sent over port
80 (just like all other web data) and would be recorded on the server,
encoded as an MP3.

I figure, when you upload a file, it sends 0s and 1s in a stream that is
written as a file on the server, why not 0s and 1s generated by a
microphone rather than reading from a file on the client's hard drive?

The point would be to allow web users to record short audio MP3s directly
to the server without any other software than their browser, and with only
a standard microphone. Files would be saved, and then added to a Podcast
automatically, thus creating a sort of audio message board or blog.

Has this ever been done? Is it possible?

Couldn't find anything on Google or sourceforge.


I do not believe what you are talking about has ever been done. It is
technically speaking, possible, but would be quite an undertaking. What
is needed is for the client machine to be running some kind of encoding
software. Making this happen in a web browser would require a browser
plugin or applet. An applet that makes use of a client machine's
specialized hardware would be very difficult to implement and test on
different operating systems, platforms and sound cards.

So the short answer would be something like a 'no' with an asterisk next
to it.
Jul 17 '05 #2
In comp.lang.php Sugapablo <ru**@removesugapablo.com> wrote:
The point would be to allow web users to record short audio MP3s directly
to the server without any other software than their browser, and with only
a standard microphone.
Not possible, you need some extra clientside stuff.
Files would be saved, and then added to a Podcast
automatically, thus creating a sort of audio message board or blog.

Has this ever been done? Is it possible?


Yes, with the proper clientside software and a simple serverside script.

Recording could be done with eg Java's JMF library
(http://java.sun.com/products/java-me...ocs/index.html)
directly recording mp3 (some minority platforms will need to send "raw"
audio to be compressed serverside) and posting that to a php script
which will save it to disk (the usual fileupload handling stuff)

comp.os.linux.misc removed from FUP since this kind of stuff should be
platform independend :)
Jul 17 '05 #3
imo
Daniel Tryba wrote:
In comp.lang.php Sugapablo <ru**@removesugapablo.com> wrote:
The point would be to allow web users to record short audio MP3s directly
to the server without any other software than their browser, and with only
a standard microphone.

Not possible, you need some extra clientside stuff.

Files would be saved, and then added to a Podcast
automatically, thus creating a sort of audio message board or blog.

Has this ever been done? Is it possible?

Yes, with the proper clientside software and a simple serverside script.

Recording could be done with eg Java's JMF library
(http://java.sun.com/products/java-me...ocs/index.html)
directly recording mp3 (some minority platforms will need to send "raw"
audio to be compressed serverside) and posting that to a php script
which will save it to disk (the usual fileupload handling stuff)

comp.os.linux.misc removed from FUP since this kind of stuff should be
platform independend :)

That would be nice to have such technology 1st appeal in Linux based
mechine.
Jul 17 '05 #4
["Followup-To:" header set to comp.os.linux.misc.]
On Fri, 22 Apr 2005 13:35:56 -0400, Sugapablo
<ru**@REMOVEsugapablo.com> wrote:
I had an idea for something that I can't find any evidence if it exists,
or if it can be done. I assume it can be done.

What I'd like to be able to do, is to allow people who come to my website,
click a button on the page to begin submitting an audio stream to the
server.

It might be possible with Flash. If you have ever right-clicked on a
Flash animation and clicked Preferences, there are choices to allow
access to your computer's microphone and camera (I don't have a camera,
and haven't seen a page that uses the microphone).
--
"I deleted a file from my PC last week and I have just realized that I
need it. If I turn my system clock back two weeks will I have my file
back again?"
Jul 17 '05 #5
On Fri, 22 Apr 2005 13:35:56 -0400, Sugapablo <ru**@REMOVEsugapablo.com> wrote:
What I'd like to be able to do, is to allow people who come to my website,
click a button on the page to begin submitting an audio stream to the
server.


A friend of mine worked for a company that did something similar to this,
but using an automated telephone system. The idea was that a user would
be able to record audio via any telephone and have it immediately available
on the server. The target market was voiceovers for online advertising,
but it failed to catch on and the company subsequently went under.

--
Roger Blake
(Subtract 10 for email.)
Jul 17 '05 #6
"Sugapablo" <ru**@REMOVEsugapablo.com> wrote in message
news:pa****************************@REMOVEsugapabl o.com...
I had an idea for something that I can't find any evidence if it exists,
or if it can be done. I assume it can be done.

What I'd like to be able to do, is to allow people who come to my website,
click a button on the page to begin submitting an audio stream to the
server.

Basically, once the "record" button was hit by the client, an audio stream
would be generated by the client's microphone and would be sent over port
80 (just like all other web data) and would be recorded on the server,
encoded as an MP3.

I figure, when you upload a file, it sends 0s and 1s in a stream that is
written as a file on the server, why not 0s and 1s generated by a
microphone rather than reading from a file on the client's hard drive?

The point would be to allow web users to record short audio MP3s directly
to the server without any other software than their browser, and with only
a standard microphone. Files would be saved, and then added to a Podcast
automatically, thus creating a sort of audio message board or blog.

Has this ever been done? Is it possible?


I have seen it done using a Java applet. Just Google it. I think the
end-user would need to enable something in the JVM for it to work through.

And as someone else mentioned, it could be done through Flash as well. If I
recall correctly though, you'd need Macromedia's Flash Communication Server
in order to do streaming.

Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: psk | last post by:
Hi, I need to read live audio from microphone and somehow make data packets from it and send using my client-server implementation where it will be played. Can anyone tell me abt any...
0
by: ACaunter | last post by:
Hi all, I am in desperate need of being able to have the users of my asp.net site to be able to make a recording from their computer mic, and save that audio on my server.. the user should be able...
5
by: ACaunter | last post by:
Hi all, I am in desperate need of being able to have the users of my asp.net site to be able to make a recording from their computer mic, and save that audio on my server.. the user should be able...
1
by: zhangzhi | last post by:
HI£º i have a big problem about audio recording. my boss wanna a application of audio monitor, and he wanna it will detect voice and start recording automatically, avoiding recording silences....
0
by: universe | last post by:
I am developing a web application in that I need to record audio, for that I am importing "winmm.dll" and using mciExecute function.(the following code is vb.net). If I have posted in irrelavent...
2
by: tiffxi | last post by:
I'm an ASP.NET newbie. I'm trying to write an audio-recording code in an ASP.Net page. I created a windows User Control that has the buttons and codes for this (it calls the winmm.dll in system32...
5
by: skip | last post by:
(I asked this on pythonmac-sig a couple days ago but got no response, so I'm casting a broader net.) Can I easily control audio record/playback from Python on my Mac? I know zip about audio...
1
by: fevos | last post by:
hi i look at this article in msdn Recording and Playing Sound with the Waveform Audio Interface and download the P/Invoke Library Sample that record using wave in and wave out . how do i get...
1
by: waqasahmed996 | last post by:
Hi to all, i want to ask that is audio recording is possible in flash. actually i want to make recording from browser. is that possible in flash. if yes please give me some help or send me some...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.