Tagged Questions
-3
votes
0answers
13 views
How to judge whether the voice input in java [closed]
I write a recorder in Java,and I hope it stop recording when I stop speaking.
How can I fix it?thx.
0
votes
2answers
30 views
deleting file from sdcard in android application for voice changer [closed]
Hi i am making a voice changer application in which i have to delete some added pcm file in sdcard. The format in which the song is saved is:
name.pcm
File f = new File(filepath + "/" + ...
1
vote
3answers
59 views
Voice changer for audio files
I have some audio files in different voices (only spoken words there is no music or noise).
I am aiming to change all that audios for a one standard voice "man" voice for example
For example:
...
0
votes
0answers
78 views
How to record desktop phone calls using java or C#
I want to develop a customer service call center application that mainly keeps record of every phone call (incoming or outgoing) from my land line phone.
I don't have the clue of developing the ...
0
votes
0answers
32 views
Suggestions : Recording the audio-unclear
I followed almost all related post on SO. What I am trying to do is just recording the voice from a microphone(using Java sound API). When I record the voice, it's noisy and also a lot of ...
0
votes
0answers
67 views
Why does Android AudioRecord initialization fail?
I used following Tutorial to make a sound recording app:
When I start it on my test device (LG P970 Optimus Black) I get an error code:
Error creating AudioRecord instance: initialization check ...
0
votes
0answers
222 views
How to record/capture audio from any input or program in Java?
I'm working on a little science project, and I really want to record audio from an audio input and a program running on my computer, how to do this in Java? It would be awesome if the bit rate for ...
0
votes
1answer
62 views
Calculate the elapse time from AudioRecord
How do we calculate the elapsed time from AudioRecord? What I am trying to do is similar to this PDF of "figure 5(Second graph)". To further explain myself I am getting the voice of a person in real ...
0
votes
0answers
36 views
Filter used in AudioSource.VOICE_RECOGNITION
What is the filter used when the android audio source is set to AudioSource.VOICE_RECOGNITION?
0
votes
0answers
127 views
Record desktop screen with webcam using java [closed]
I am creating a screen recorder software using Java. It's like "faststone capture" or "snagit". Almost 80% work has been completed. I want to add a special feature with it.
It's for the parents to ...
0
votes
1answer
178 views
Android Multitrack Audio Library?
Hi Guys I am trying to build a "4-track" recording app on Android.
I'm looking for a library or set of classes I can use record audio and mix 4 channels of audio to a 2 channel "mixdown".
Ideally ...
2
votes
2answers
152 views
Android Programming: Looping Voice Recognition
I'm looking to make a custom Android app to help out a physically disabled person. I need to heavily rely on voice recognition. The idea would be:
the app (via voice recognition) accepts his ...
1
vote
2answers
380 views
Android: Audio Recording with voice level visualization
I need a create a android application which is for recording voice while showing the voice(sound) level visualization.
I already created a audio recording application but I can not add to it sound ...
1
vote
1answer
122 views
Android - wav file plays fast
I recorded the input from mic to sample.wav. But it plays too fast. 10 secs file in 3 secs.
int RECORDER_SAMPLERATE = 44100;
int RECORDER_BitsPerSample = 16;
int RECORDER_CHANNELS = ...
0
votes
1answer
324 views
Storing 16Bit Audio on a 8bit byte array in android
I'm confused. I needed to record sound from MIC in Android so I used the following code:
recorder = new AudioRecord(AudioSource.MIC, 44100,
AudioFormat.CHANNEL_IN_MONO,
...
0
votes
0answers
157 views
Audio Recording issue in Android (Motorola and Samsung)
I am developing a Audio Recording application for Android, my application is working as wanted in most of the time but I have a problem in Motorola and Samsung... the application is not working in ...
0
votes
0answers
82 views
Most universal and compressed audio format for voice? [closed]
I need to share quite a few voice recordings with some varied environments ranging from Windows, OS X, and Linux users as well as iOS and Android devices. The audio is essentially just spoken word ...
3
votes
2answers
470 views
Android AudioRecord artifact
When I use Androids AudioRecord to record from the microphone, I get this annoying artifact
Is there a way to avoid or remove this? What is it? Or do I get that because I did something wrong in the ...
3
votes
1answer
153 views
Hijack audio with Java?
I have been trying to modify some code found at the bottom of this page in order to hijack system audio with Java. Here's the part that I modified in captureAudio():
Mixer mixer = ...
0
votes
1answer
738 views
how to convert or record .wav file in 16khz 16bit mono little-endian?
I m just implementing sphinx4 speech recognition in java..whta i need is how to record sound or convert any sound .wave file in to 16khz 16bit mono little-endian file.
had search a lot for this..but ...
0
votes
1answer
338 views
Java - save Internet Radio stream
i want to record a internet radio show that is running during midday, where i cann“t listen to it.
The URL of the radio is:
http://radio.orf.at/player/radioplayer.html?station=ooe
I looked at the ...
1
vote
3answers
615 views
Audio recorded from microphone is muted during the voice call
I am trying to build application which records audio from the microphone for the later processing.
Everything works fairly well, except the following problem:
During the voice call (in and out) the ...
1
vote
1answer
313 views
Android Use MediaRecorder to capture audio.
I need to capture audio from microphone and after user stop talking application need to identify that user stopped talking. I have a Android 2.2 Froyo device and it has this kind of app. Since most of ...
0
votes
1answer
161 views
How can I edit an audio buffer
I create an audio buffer and want to edit this before I play this sound.
My problem is that i get an big noise when number is more than 1. It means I can only
play the buffer without noise when I dont ...
0
votes
1answer
911 views
Record audio via MediaRecorder
I am trying to record audio by MediaRecorder, and I get an error, I tried to change everything and nothing works. Last two hours I try to find the error, I used Log class too and I found out that ...
0
votes
0answers
138 views
MediaRecorder record every minute
I'm having trouble with MediaRecorder. I'm trying to write app that will record audio every minute and save it, but it fails sometimes. For testing purpose, I created files with date format to check ...
2
votes
1answer
285 views
Recording an internet radio stream using java
I searched for information before posting and I didn't find exactly what I was looking for. Hopefully someone can point me in the right direction. There is a certain radio show that I like to listen ...
1
vote
1answer
343 views
android audioRecord- apply gain with variation
I want to apply gain to my recordings(PCM 16bit). For this I have the following code:
for (int i=0; i<buffer.length/2; i++)
{ // 16bit sample size
short curSample = ...
0
votes
4answers
428 views
Java - from short to byte[2] using LITTLE_ENDIAN
I have some problems trying yo convert short value to byte[2]. I'm using this to make some transformations on some audio data buffer(applying gain to buffer). First I load the audio buffer like this:
...
0
votes
1answer
160 views
intent RECORD_SOUND_ACTION on LGP500
I am writing code to run RECORD_SOUND
Intent intent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
startActivityForResult(intent, AUDIO_RESULT);
works on all phones, but it ...
0
votes
0answers
241 views
Meaning of byte array - PCM
Right now, I'm able to record audio from mic and save its data to byte array object. My audio format is 8 bit and 8.000f to sampling, also mono channel. I also know, current encoding format to sample ...
0
votes
3answers
992 views
Android Mediarecorder: Getting 3GP instead of MPEG4
I want to record video only in android with MPEG4 format. I want the container and codec to be MPEG4. So here is what I have done for that.
Thread video = new Thread(new Runnable() {
public void ...
0
votes
1answer
238 views
Tracking audio (level of intensity) - android/iphone
Is it possible to retrieve the characteristics of the audio output signal dedicated to headphones during audio playback? I don't want to record the signal per se (that is, I don't want to record the ...
0
votes
1answer
1k views
How to pause/resume a recording created with mediarecorder?
I'm trying to pause a recording on an incoming call and resume it later. i'm using the andriod mediarecorder and trying to record in MPEG4. I tried pause/resume with resetting/stopping a recording and ...
4
votes
2answers
2k views
Java - Broadcast voice over Java sockets
I have created a Server app that receives sound from client, i then broadcast this sound which is stored as bytes and send the bytes back to the clients that are connected to the server. now i am only ...
4
votes
1answer
330 views
Is it possible in Android to record something played by MediaPlayer?
In my application I am doing live audio streaming using Android media player. I want to capture the sound stream played by MediaPlayer. Is there is way to record using Android MediaPlayer instead of ...
1
vote
1answer
1k views
sample project for audio recording in android [duplicate]
Possible Duplicate:
Audio Recording
Hi im a new developer to android field,i wrote the program to audio recordig in android,bt still now its not working, i want to record the human voice ...
2
votes
3answers
1k views
Record Audio As Mp3
I want to record audio and save to my server as mp3 files, i googled and find like this
But it is not free and open source
How can i record audio as mp3 in java and php ?
0
votes
2answers
72 views
Problem in recording
I have a program that first plays: "please say your name". It then records the name.
Part of my code is:
try {
AudioInputStream audio = AudioSystem.getAudioInputStream(new File("sth.wav"));
...
1
vote
0answers
372 views
How can I filter non-voice frequencies from audio file?
I have noisy audio file, I want to filter non-voice frequencies from the file. How can I do this in Java ?
0
votes
2answers
284 views
intercept the audio stream that is playing on a pc Java [duplicate]
Possible Duplicate:
internal audio recording program
Here is the scenario: You are listening a song or an audio file with windows media player or vlc or from youtube whatever... i want that ...
1
vote
0answers
328 views
how to capture video and audio and record them in the same file using j2me?
I need to capture both audio and video in mobiles and store them in the same file.
how to do that with java me?
stefano
1
vote
1answer
427 views
Using Google voice and video chat plugin to record voice
I'm trying to develop an application that records audio from the browser. Can I use the Google vioce and video chat plugin that Gmail internally uses to record audio?
If yes, How can I do this?
If ...
0
votes
0answers
666 views
Java ogg vorbis encoding
i am using tritonous package for audio encoding in ogg-vorbis. I face a problem when i am giving the audio format.
Unsupported conversion: VORBIS 44100.0Hz, unknown bits per sample, mono, unknown ...
3
votes
2answers
2k views
Android: Microphone AudioSource causing unsupported parameter, VerifyAndSetParameter failed errors
This question has also been asked at Problems with MediaRecorder class setting audio source - setAudioSource() - unsupported parameter, however this author accepted the answer stating that this only ...
6
votes
3answers
8k views
Record voice with Java
I want to record voice using a Java application; I guess this will be basically an applet that will run on client side. But I don't have any idea of how to do it... any ideas? Also, I want to play ...
0
votes
5answers
5k views
Permission problems for sound recording
I am having a couple of problems recording sound on a device. The code I am using if from the android dev site (Site Link) and is as follows:
public void onClickStart(View v) throws ...
0
votes
1answer
785 views
Audio recorder problem in java
I have a problem while recording the audio. I created a servlet and I modified the java sound API demo code to some extent and finally I can record the audio. The problem is that when I play the audio ...
1
vote
4answers
5k views
Recording a wav file from the mic in Android - problems
I need to be able to create a WAV file using the mic in Android. Currently, I'm having a lot of trouble. So far, this is my situation. I'm using parts of the micDroid project code to record thus:
...
0
votes
3answers
1k views
How to capture audio from a browser?
My client needs to let a user record a message from the browser, then export the message as an audio file (e.g., WAV).
How is this best accomplished? Flash, Java, HTML5? By best, I mean something ...


