Android :: Recorded Sound File Not Getting Listed In Music Menu
Aug 19, 2009
I have created an basic sound recorder application using MediaRecorder class. It has 3 buttons i.e.
1.Record: Start recording
2.Stop: Stop recording
3.Play: Play recorded file ( 3gp format)
I can record any number of files using this. Each files gets name as audio1,audio2 ..etc.The problem is after recording the file I can play it using play button. But if I exit my application I am not able to see that file listed in music menu in emulator. But at the same time when i browse my sdcard using eclipse I can see the recorded audio file. ( I have aleady mounted sdcard image and can see other sdcard content in emulator)Now if I close the emulator and relaunch it I can see that file in emulator music menu. Now suppose that file name is audio1.3gp. If I record a sound using my app it will record it using name audio1.3gp on same location. This time if I goto music menu I can see audio1.3gp file with latest recorded audio.
View 5 Replies
Sep 5, 2013
I'm having a spot of trouble trying out the ViPER4Android DSP plugin on my phone. While I have the corresponding apps and drivers installed, I'm unable to enable the DSP effect owing to fact that there is no "Music Effects" option in the Sound settings menu.
Is there some way to restore this option to the menu? I'm using an AOSP-based stock 4.0.4 ROM on my Huawei Ascend G600. Perhaps it can be done through the terminal/shell scripts or an init.d script?
View 2 Replies
View Related
Feb 23, 2010
I've used the voice recognition feature on Android and I love it. It's one of my customers' most praised features. However, the format is somewhat restrictive. You have to call the recognizer intent, have it send the recording for transcription to google, and wait for the text back. Some of my ideas would require recording the audio within my app and then sending the clip to google for transcription. Is there any way I can send an audio clip to be processed with speech to text?
View 1 Replies
View Related
Oct 7, 2010
I have had my Evo since launch day. I have recorded some videos for fun and they play back on the phone nicely. But today, I connected the phone to my PC and wanted to play a video. I got video with no sound. I tried several I recorded some at 720fps and some at VGA. Same results. Videos I downloaded from You Tube play fine. Just the ones I recorded on my phone. I have a relatively new HP running Widows 7 and have used Quick Time and Windows Media Player. Neither would play the sound. Anyone have a problem like this?
View 4 Replies
View Related
May 24, 2009
As per title, recorded video sound is very bad on my Magic - the sound is very unclear, with a lot of disturbances etc is this normal or did I get a faulty phone.
View 1 Replies
View Related
May 13, 2009
Now when I recording a file using sound recorder. But I cannot find it in the application of Music. When I reboot, I can find it in the Music.
View 2 Replies
View Related
Feb 14, 2010
I just recently got the HTC Hero and have a question regarding the mp3 player. When you go to albums and choose an album to play, I found that the tracks are not listed in the correct order. Is this seriously the case or is there a way to get albums to play as they should be played?
View 6 Replies
View Related
Feb 27, 2010
i am working n audio recording. i can store the file using file.getAbosolutPath() mehtod. it stores the file in path: /data/data/com.example.audio_demo/files/output.amr i wann store that in SDCARD.iso and how retrive that and play.
View 1 Replies
View Related
Jan 5, 2013
I have a HUAWEI g300, and while the quality of still images taken with the camera are great, video quality is awful. Or, to be more specific, the audio that goes with the video is very poor.
I believe that this may be due to the file format of the video.
For this reason, I would be interested to know whether there are any ways to change the file format which videos are recorded in. Are there any alternative camera apps that are any good, which ideally allow the user to select their own file format? My device is rooted btw.
View 1 Replies
View Related
Oct 1, 2012
i am trying to recording on button click.
mycode is following::
HTML Code:
HTML Code:
private void StartAudioRecording() {
[Code].....
when i was running application in debug mode application getting crash. i am not getting sdcard path .
View 3 Replies
View Related
Mar 26, 2010
How do I set the intent of menu items defined in an Android menu xml file? For example I currently have...
<menu xmlns:android="http://schemas.android.com/apk/res/android" android:name="Main Menu">
<item android:title="@string/resume_game" android:icon="@drawable/resume"></item>
<item android:title="@string/play_golf" android:icon="@drawable/play_golf"></item>
<item android:title="@string/my_rounds" android:icon="@drawable/my_rounds"></item>
</menu>...........
View 1 Replies
View Related
Feb 2, 2013
Music Player which should STOP after playing a music file and should NOT Repeat or jump play the next audio file. Option of having Stop after playing a single music file.I know except VLC beta player- which has some hanging problems & needs to be forced quit sometimes (Motorola Phone).
View 1 Replies
View Related
Apr 7, 2010
I am using XML file for creating Context Menu for my ListView. (Please see below). I also want to set a header for this Context Menu. I read (at http://www.mail-archive.com/android-developers@googlegroups.com/msg43062.html)that I can use menu.setHeaderTitle(myContextMenuTitle) in onCreateContextMenu Method. But I need to set this in XML file. How can I accomplish this?
Following is code for onCreateContextMenu Method, correct me if I am doing anything wrong. This is my context_menu.xml file:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/open" android:title="Open"/>
</menu> Code...
View 1 Replies
View Related
Jan 28, 2010
I want to know that can we stop playing sound or music of other application which actually plays the music from our application? Something like get the handle of MusicPlayer or AudioManager in our application and using this handle stop the currently playing sound.
View 9 Replies
View Related
Mar 11, 2010
I am using the following code trying to pull an .mp3 or .ogg file from my raw directory and saving it to the sd card and activating it as a ringtone. Although, it keeps failing for some reason or another and doesnt actually copy the new file to the sdcard.
CODE:...................
View 2 Replies
View Related
Mar 19, 2009
Does someone could tell me if it is or not possible to get raw data from a sound file?
View 5 Replies
View Related
Jul 22, 2010
Can we play sound file in phone line (in background)?
View 4 Replies
View Related
Jul 19, 2010
is there a way to find the 'noise produced' by a currently playing sound (MediaPlayer) -Like in many music editor software you import a song and it does a graphical layout of the song -like a graph with it higher up at louder bits. Hard to explain. But there must be a way to do this on android...
View 1 Replies
View Related
Dec 11, 2009
I have a problem setting a ringtone from a resource in my app:
Uri uri = Uri.parse("android.resource://com.package.app/" + R.raw.sound1); RingtoneManager.setActualDefaultRingtoneUri(this, RingtoneManager.TYPE_RINGTONE, uri);
I've noticed also some people had the same problem but got no answers. Do any of you guys have any idea of how making this work? (without having to copy the file to the sdcard)
View 2 Replies
View Related
Apr 5, 2010
I recently installed Asphalt 5. Apparently, you have to download some stuff in order to play the game. Anyways, I did download it and my problem is, there are sound files that are showing up on my music player. Ex: (raw_000~raw_174) Oh and the sound files are in ".ogg" format. I did some research and I tried the ".nomedia" method, but that didn't work.
View 1 Replies
View Related
Jun 15, 2009
Several users reported that after starting our application on HTC Magic it only shows a blue screen with music and sound effects. It work well on G1 with 1.5 though. The application is using SurvaceView/ OpenGL ES with { EGL10.EGL_DEPTH_SIZE, 16, EGL10.EGL_NONE } EGLConfig attributes.
View 3 Replies
View Related
Nov 25, 2009
I am trying to play continuous background music using sound pool.
Here is my code:
CODE:...............
when i do playSound() with 1, 2, 3 sound [wav file] with looping false, they play fine. but if i call playSound any of the 4 files with looping true, it does not work. 4th one is an mp3 file which neither plays with looping true nor looping false. can i create another mediaplayer object as a member variable and use it for only background music ?
View 3 Replies
View Related
Jan 22, 2010
Is it possible to play a notification sound from a sound file inside the application package ?
Where should this file be stored in the apk (/res/raw or /assets) and what should be the URI to pass to the notification ?
notification.sound = Uri.parse(... ? ...);
View 2 Replies
View Related
May 18, 2010
Is there any way to play a sound file under Android browser?
View 1 Replies
View Related
Jun 1, 2013
If the sound made when typing on Blackberry 10 devices can be used in the same way for Android devices?
View 4 Replies
View Related
Aug 3, 2010
Only prob I have so far is I use my evo for music all the time and now the sound is far less loud. I can barely hear it. Yes, I have the volume all the way up. Is there a way to fix it?
View 1 Replies
View Related
Dec 14, 2011
I followed the effen manual to flash a new ROM for my HCT Desire HD on Monday, December 12th with absolute success. However, I have lost the start up sound file and when I boot my android, it boots in quiet mode. I searched for a solution and found many threads explaining how to disable it, but very little on how to enable it.
The problem is when I open my SDcard and look in the media/audio/notifications all I have is a facebook.mp3 file, I do not have any other files that would allow for the start up sound to open on boot.
View 9 Replies
View Related
May 16, 2010
I have a few ringtones and notifications that I'm trying to put on the memory of my phone, and not my SD card. I used Root Explorer to move them to system/media/audio/ folder dropping them seperately in "ringtones" and "notifications." After that isn't the file suppose to appear within the menu where I'm trying to apply them either as ringtones or notifications? I don't seem them appearing. The reason for me doing this is sometimes my phone doesn't play the ringtone assigned to a person because the clock rating on the CPU is low, so it doesn't pick up from my SD Card fast enough.
View 3 Replies
View Related
Aug 15, 2010
It may happen to everybody or it may just be me. Im trying to figure out if theres a work around, or some way to exclude game sounds from playing in the music application (example, if you're like me, I always have my music on shuffle. So it shuffles everything including sound/music from game foldera also.
View 4 Replies
View Related
Jun 9, 2010
So yea I'm a hardcore audiophile and any crackle/pop in my music really annoying. I have had the EVO since Friday, and everything I try (Slacker, Pandora, last.FM, whatever) cracks/pops when the audio is going through the 3.5MM jack to my car. I'm already on a wait list for replacement because I think it's faulty hardware. I've tried multiple cables and even HQ settings.
Coming from a Touch Pro 2 which had amazing sound quality through the 3.5mm jack, needless to say I'm less than happy with the EVO since I primarily stayed with Sprint for uncapped data. If I get a replacement and it still continued, looks like I may be wandering over to that new iPhony. I urge everyone with this issue to post here so they can resolve it or figure out whats going on.
View 15 Replies
View Related