Tagged Questions
5
votes
5answers
2k views
Recording Audio via the Web for an Intranet Solution
What is the best (cheapest, most open) way to record audio via a web page. Then keep that recording as MP3 format and make it available via a unique ID / URL.
I guess Flash-based plug-in would be ...
2
votes
2answers
1k views
How to record / capture audio with RecordControl on Java ME, SE K770i
I want to record sound on my Java ME App on K770i. So I used this:
http://java.sun.com/javame/reference/apis/jsr135/javax/microedition/media/control/RecordControl.html
example of RecordControl in my ...
2
votes
1answer
480 views
Record voice with ASP.NET?
How can I record voice from an ASP.NET application and upload to server? Is it possible to do using AJAX?
1
vote
1answer
35 views
how to save the recorded audio files in another folder programmatically?
i'm trying to save the recorded audio files in a folder that i wanted it to be rather then the default folder. but somehow i failed to do so.
my code:
Intent recordIntent = new ...
1
vote
0answers
80 views
Automatic Voice Recording when Voice starts
i am looking for a source or tutorial that does show how to automatic start recording when voice starts and stop when speech ends.
till now i do it by a simple volume peak level. the problem appears ...
0
votes
0answers
8 views
error calling MediaStore.Audio.Media.RECORD_SOUND_ACTION of android
i'm trying to call the default audio/sound recorder app. but i realize that there are errors shown in my logcat and i have no idea how to solve it.
my code:
Intent recordIntent = new ...
0
votes
1answer
35 views
how to call the default voice recorder app programmatically for android phone?
i'm trying to create an app that allows voice recording. i hope to call the default voice recorder app just like how i call the camera app. what i wanted is my app will intent/call the default app. ...
0
votes
0answers
33 views
Hide list button in android voice recorder
In my small android application i am calling inbuilt voice recorder using
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
startActivityForResult(intent, ...
0
votes
0answers
67 views
PyS60 key events and voice recording
I'm trying to write a PyS60 script (for my N95) that will allow me to record while a button is pressed down, and stop when it is released. I thought this would be quite a simple task but it has proven ...