Tagged Questions
0
votes
0answers
7 views
Record in 8 bit pcm format
I cannot seem to find a way to record a file in 8bit format instead of the standard, which is 16 bit.
Now I am having:
randomAccessWriter = new RandomAccessFile(filePath, "rw");
...
0
votes
1answer
41 views
Why won't my android program close when I close it?
I made an android app that plays the mario sound when you jump. It works fine (sort of), but when I close it, it still works. I tried using the onDestroy method, but it dosen't seem to delete the ...
1
vote
0answers
16 views
Create an MP3 file (or WAV, etc) in Android app from layered MediaPlayers
I am working on a DJ application that lets the user manipulate instrumental layers that are being played simultaneously through multiple MediaPlayers. Currently, I have been able to roughly ...
0
votes
1answer
14 views
Random sound onclick button android assets
I want to play random sounds from assets/ folder in my project.
What's wrong with that code? Help me please
Here's my code:
MediaPlayer player;
AssetFileDescriptor descriptor;
private String[] ...
1
vote
1answer
28 views
Random sound onClick Android Medaplayer
I have got this code:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
...
0
votes
1answer
66 views
Why are my if statements not working in this for loop?
Question:
I'm designing a small Android app that plays sounds (notes) when you press an imageButton that looks like a specific instrument, and you can play up to 10 notes across 6 imageButtons. It ...
-1
votes
0answers
18 views
Routing audio streams from Android apps to in-car AUX and bluetooth headset [closed]
With the recent introduction of Google All-you-can-eat Music subscription, I decided to try it out.
The problem I have, is I drive people for living and use navigation pretty frequently, I wan't my ...
0
votes
0answers
24 views
how can i stop bluetooth headset s beep while phone ringing
I am developing caller id talker program this code is working good when phone is idle but while phone is ringing bluetooth headset start beeping I dont want this beeping I want to texttospeech engine ...
0
votes
0answers
24 views
How to change frequency of audio file and save it as mp4 file on sdcard?
I m trying to make an app where user can record his voice and can play the voice in funny tone. Like talking tom application but not just that..He shd be able to share that recorded sound file.
I m ...
1
vote
1answer
29 views
Proper way/approach to play an Audio File at Background with main thread or a separate thread
I'm bit new to android but I'm good at Java J2SE. I just need to know about the proper or the best way to play an audio file in my android file at the background. According to my knowledge I may have ...
0
votes
0answers
23 views
Share audio to Whats app
It is assigned to a button which plays a sound on short click and shares audio on long press . The program has no error and runs fine .. but when i share audio .. it emails its in a recognizable ...
0
votes
2answers
26 views
Can't play audio in android using MediaPalyer
I have file location in 05-11 22:43:41.793: D/Play audio(9996): /storage/emulated/0/QRSpeech/sounds/Introduction_to_Android_1.3gpp
I want to play this file using MediaPlayer like the code below :
...
0
votes
0answers
15 views
Blank gaps appears when recording audio with AudioRecord
I use AudioRecord to record audio from Android, and then reply it using AudioTrack. However, the result is very terrible, it is somehow similar to what it recorded, but it maybe slower (or maybe ...
-5
votes
0answers
27 views
How do I control volume on an Android device? [closed]
I would like to make a bluetooth device that can control the volume on my Android device. I listen to Pandora and the like on my Android phone with wired headphones on my motorcycle. Volume control is ...
0
votes
0answers
12 views
Android SipAudioCall sending audio, but not recieving
I'm trying to use android.net.sip to make a app that can communicate with other SIP clients.
Everything has been so far so good, it registers with my SIP server (asterisk 1.4.21.1) and it can make a ...
-5
votes
0answers
45 views
change sound track to other voices like woman, child, etc for voice changer in android [closed]
audioTrack = new AudioTrack(
AudioManager.STREAM_MUSIC,
sampleFreq,
AudioFormat.CHANNEL_CONFIGURATION_MONO,
AudioFormat.ENCODING_PCM_16BIT,
bufferSizeInBytes,
...
0
votes
0answers
36 views
Android record pcm file issue
hi I have a problem with recording from the microphone
This is my code
private int audioSource = MediaRecorder.AudioSource.MIC;
private static int sampleRateInHz = 44100;
private static int ...
0
votes
1answer
30 views
Android Musicplayer play same sound more than one at atime
private MediaPlayer mpintro;
mpintro = MediaPlayer.create(this, R.raw.bgmusic);
mpintro.setLooping(true);
mpintro.start();
These are my mediaplayer code that is plays in app background continuously, ...
3
votes
4answers
38 views
MediaPlayer loops when started from onPause()
I want to play a sound when onPause() of my Activity is called. To do so, I use the following code:
@Override
public void onPause()
{
super.onPause();
MediaPlayer player = ...
0
votes
1answer
45 views
How to merge two audio .wav file
I know this question is discussed already but after googled a lot I cant able to find the solution why two .wav merged file is not playable?I am merging two .wav file into one file.But the merged file ...
0
votes
1answer
50 views
In Android, is there any way to route the audio to A2DP using “MODE_IN_COMMUNICATION”?
If I set AudioManager mode to MODE_IN_COMMUNICATION, and set the Media Player stream to STREAM_VOICE_CALL, I can route the audio to the speakerphone or the internal handset speaker just fine. And if ...
0
votes
0answers
31 views
Error while playing .wav audio file from sd card
I am playing .wav file from sd card but it gives me error like this--
Media Player error (1, -2147483648)
java.io.IOException: Prepare failed.: status=0x1
at android.media.MediaPlayer.prepare(Native ...
0
votes
1answer
38 views
Android combine two audio files into one
I have two .3gp (or .wav) audio files that I have saved from the user's microphone. How can I concatenate these two audio files together in code into a single file? Thanks.
5
votes
1answer
58 views
Check whether headphones are plugged in
I can't seem to find a way to know on android if the headphones are plugged in. I found various solutions but they always seem to return false.
The only thing that seems to work properly is a ...
0
votes
1answer
50 views
Android: Play soundfile or text-to-speech during phone call/SIP
is it possible in android to make a phone call or SIP call and play a soundfile after the call is established? Other option that would be ok for me is that after the established call the TTS engine ...
-1
votes
0answers
26 views
Android Background Audio recording using Mic? [closed]
I have a code that records audio on android and plays it back. I want make this to be run on background and plays back.I am new to android development please help. Thanks in advance.
package ...
0
votes
0answers
20 views
Adding audio data from file to an AudioGroup to send over RTP
I am trying to stream audio data read from a file to a remote client over RTP. I have no clue how to add audio data from a file(mp3) to an AudioStream object. I can hear microphone data clearly, but ...
0
votes
1answer
33 views
Issue with looping an audio file
How can i get the value of repetitions completed from mp.setLooping(true). I can use OnCompletionListener to get number of repetitions, but it produces 1sec delay between looping, which is annoying in ...
0
votes
0answers
24 views
Make an audio player that plays audio files [closed]
I want to make an android app that will have almost more than 2000 audio files. Of course, I can't copy to assets folder and play but I don't know any other easier way on how to get started. Can ...
1
vote
1answer
21 views
Playing just one sound android
i'm developing a little quizz app and i would like to play sound depending on if the user answers the question correctly or not.
I've got many sound files in "assets/".
What I would like to do is to ...
-3
votes
0answers
20 views
Android Eclipse not sure what it would be called but wanting to do something like this for my soundboard [closed]
I'm not sure what it would be called, but I want to do something like the picture below for my soundboard rather than all one scrollable screen as it is at moment.
Can anyone help with a solution or ...
0
votes
0answers
35 views
Recording sound in the background - no sound
I have a problem writing an application to record sound in the background.
The purpose of the application will record outgoing phone calls.
The application has two text fields - the name of the ...
0
votes
0answers
34 views
Route phone audio call to a custom sound service in android?
I have implemented my custom audio interface which is derived from AudioHardwareBase, and I have initialized it in AudioFlinger constructor class. This class will stream the audio through network.
...
0
votes
1answer
80 views
Android saving the audio files into internal storage
Currently I have created the audio-recording Android App. The file is saved at External Storage.
What if I change the method to save as Internal Storage with the context of MODE_PRIVATE
I have read ...
0
votes
1answer
73 views
Android App/ to paly audio/videos files from Raw or Assets folder instead of /SDCard/
Please anyone could help me getting this Android App play audio /video files from Raw or Assets Folders instead playing from /SDCard/.
What should I change in this code below ?
Here is the Tutorial ...
0
votes
0answers
37 views
Best way for Uploading a large audio file max of 200mb to server via webservice?
I need to upload a large audio file max of 200mb to server via webservice. Reading the whole file to runtime memory will be a real pain, i hope so.
So i think the best way is to stream this file and ...
1
vote
0answers
53 views
Stream G711 ulaw on android with AudioTrack
I am trying to stream live audio from an Axis network security camera over a Multipart HTTP stream that is encoded in g711 ulaw 8 khz, 8 bit samples on an Android phone. It seems like this should be ...
0
votes
0answers
23 views
how to determine serial frequency notes of an audio recorded file 3gpp, amr, aac in Android
I'm new here.. can anybody help me with some tutoring about codes of how to create a simple frequency note detector from an audio file in Android. I'm trying to make an Android app to record ...
0
votes
1answer
45 views
Android AudioRecord - using short array or byte array?
I working on an android app which records audio. For best audio quality it is better to use a buffer of shorts while reading?
//aRecorder.read(shortBuffer, 0, shortBuffer.length);
...
0
votes
0answers
25 views
Get recorded sound frequency
I want to detect when user blows in the microphone. I found some examples which use amplitude but they won't help because amplitude can get high because of any noise. I read about low pass filter (So ...
0
votes
1answer
76 views
Weird frequency when plotting the recorded sound
I have a generated noise stored in a WAV file, I'm going to play it on an Android smartphone with speaker and record the sound and save it as another WAV file using the same smartphone(just 2 separate ...
0
votes
0answers
38 views
How to play respective sound when pressing each child in an ExpandableListView?
I am now working on an Android language learning application. I tried to use a expandable list. That is, there are several groups and if you click each group there will be child listview showing up. ...
-2
votes
0answers
33 views
Problems playing diferents songs with Android MediaPlayer
I have three songs in a list, selected one of these will launch a new activity and plays the song. Return to the previous activity, select a new song and this also is playing together with the above ...
1
vote
1answer
39 views
How proximity alert can trigger audio file
I have a small app where i can obtain my location or set it up manually.That sets up proximity alert. As soon as I enter defined area (certain radius etc.) proximity alert receiver displays Toast ...
1
vote
3answers
46 views
Android sound synthesis
I am trying to play a synthesized sound (basically 2 sine waves and some noise) using the AudioTrack class. It doesn't seem to be any different than the SourceDataLine in javax.sound.sampled, BUT the ...
-2
votes
1answer
104 views
Why would the Nexus 7 and Nexus 10 have different audio latency with the same OS? [closed]
I have read that audio latency has been reduced to as low as 12ms on the Android 4.2 Jelly Bean OS. However, I have also read that this improvement is available on the Nexus 10 but not on the Nexus ...
2
votes
1answer
186 views
Audio Stream from Electric Guitar Into Android device
I'm looking for a way to connect electric guitar to my android device and capture audio as an input byte stream.
For that purpose I need some device (call it converter) that will convert analog ...
18
votes
2answers
9k views
MediaPlayer stutters at start of mp3 playback
I've been having a problem playing an mp3 file stored in a raw resource: when the file first starts playing, it generates perhaps a quarter of a second of sound and then restarts. (I know that this is ...
1
vote
3answers
8k views
android MediaPlayer not playing mp3 file
I have written the most basic application I can think of to try to play an mp3 file, but it is not working. I don't get any errors, but when the application starts up, the sound is not played.
...
28
votes
5answers
20k views
Playing an arbitrary tone with Android
Is there any way to make Android emit a sound of arbitrary frequency (meaning, I don't want to have pre-recorded sound files)?
I've looked around and ToneGenerator was the only thing I was able to ...






