Motorola Droid X :: MP3 Player Is Bugging Out - Not Playing Anything
Oct 10, 2010
I got my DX on Wednesday and I was trying to put some music on. I plugged my phone into the laptop with the USB cable and dragged the music from Itunes. Achtung Baby by U2 was from a CD that I put on Itunes and The Suburbs by Arcade Fire was from a zip file that I got online. I played the music and everything was working fine.
Then I tried to add more music and the S### hit the fan. I tried to put like 15 album on, most of the songs came from Limewire which I dragged from Itunes. So the music player wasn't playing anything, saying that it cant recognize any of the files.
View 5 Replies
Aug 22, 2010
Has anyone figured out a work around for the music player in 2.2 not playing mp3? Maybe a working apk that we can install? I can't even use my custom ringtones until my phone can play mp3s, really annoying!
View 11 Replies
View Related
Jan 12, 2010
when I'm listening to audio with my headphones through cherry rplayer and then take the headphones out to use the speaker, I don't get any sound...I have to shut down any audio players functions before I get any sound out of the speaker. Not sure if cherry rplayer is the culprit or not. I have also noticed that my media player starts playing by itself...
View 8 Replies
View Related
Feb 27, 2010
So im running SmokedGlass 4.5 and i've been having some problems that i was wondering if anyone has had or knows a fix for etc...So im overclocking and it seems kind of stable at 800 but as soon as i bump it up to 1000 i have some problems with force close and it seems kinda buggy. anyone else have this problem or knwo anything about it? it also will glitch out like crazy sometimes if im just on the homescreen where the notification bar will just bug out and start going up and down and the lancher will open and i will scroll thru and it will just go up and down and select random apps.
View 17 Replies
View Related
Jul 28, 2010
I have some pretty simple Soundboard applications on the Android Market that work flawless on an LG Ally, the Motorola Droid, and the Nexus One, but I recently received an e-mail from a user with the Motorola DroidX claiming that most of the sounds do not work. I've exchanged a few e-mails with him. He claims the Soundboard is the only application running, and he's double checked to make sure that the Media Volume wasn't set to minimum. I really don't have access to one either to play around with. The application isn't doing anything cosmic to play the sounds. Below is a code snippet. Any insights into what might be causing the hang up are greatly appreciated.
public void play(Sample sample) {
Log.v(TAG, "Playing: " + getString(sample.getButtonTextResId()) + " (" + sample.getSoundResId() + ")");
if (mPlayer != null) { mPlayer.stop(); mPlayer.release();
} MediaPlayer player = MediaPlayer.create(this, sample.getSoundResId());
mPlayer = player; if (player != null) { player.setVolume(1.0f, 1.0f);
player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
@Override public void onCompletion(MediaPlayer mp) { mp.release();
mPlayer = null; } } ); player.start(); } }
View 1 Replies
View Related
Aug 16, 2010
I downloaded a few episodes of my favorite series (futurama whoop whoop whoop) off of Megaupload.com to watch on the go. Now, the native player won't play .avi files, which is an annoying inconvenience for such an advanced device, but easily averted with a trip to the market. I personally use rockplayer to play these.
But now in an effort to get what little use the hdmi out offers I want to get them to play on the native player to be able to project them on my television.
Is there a way to play .avi or other formats on the evos native player? or a way to convert them?
View 9 Replies
View Related
Jan 8, 2010
I'm trying to play a playlist I get using the MediaStore provider. However, when I try playing a playlist nothing happens. Can a MediaPlayer play a playlist (m3u file) and do I need to set the first track to play? This is my test code in the onCreate() method:
Uri uri = MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI;
if(uri == null) { Log.e("Uri = null");
} String[] projection = new String[] { MediaStore.Audio.Playlists._ID,
MediaStore.Audio.Playlists.NAME, MediaStore.Audio.Playlists.DATA };
Cursor c = managedQuery(uri, projection, null, null, null);
if(c == null) { Toast.makeText(getApplicationContext(),
R.string.alarm_tone_picker_error, Toast.LENGTH_LONG).show();
return; } if(!c.moveToFirst()) { c.close();
Toast.makeText(getApplicationContext(), R.string.alarm_tone_picker_no_music,
Toast.LENGTH_LONG).show(); return; } c.moveToFirst(); try {
MediaPlayer player = new MediaPlayer(); player.setDataSource(c.getString(2));
player.start(); } catch(Exception e) { e.printStackTrace(); }
I have turned on every volume stream.
View 1 Replies
View Related
Oct 6, 2010
I have code that will bring up a Youtube video on their webpage and the user has to then tap the play option to play it:
CODE:..............
This works fine but what I would really like is to have the video come up in the player on the phone immediately without the user ending up on the webpage and having to tap the play option.
View 2 Replies
View Related
Jul 8, 2010
why can't i use the HTC flash player to watch youtube video? when i click on the video link in m.youtube.com and chooses HTC Flash player as player. it just shows the youtube logo then the screen is blank. do you guys experienc the same?
View 9 Replies
View Related
Sep 8, 2009
How does the media player put itself in the "Ongoing" group when playing?
View 3 Replies
View Related
Jul 5, 2010
I would like to find an media player that plays videos but when I minimize or multitask to another app I want the videos audio to keep playing like pandora does. The reason for this is bcuz I rip videos off of youtube to mainly listen to the music.
View 2 Replies
View Related
Jul 30, 2010
I love my Evo, however the music app will play EVERY song it finds, including my ringtones and YouMail messages. Can I make it just play the songs in my songs folder (and sub-folders) on my SD Card? I only want it to search my songs folder, not the whole phone or the whole SD Card.
View 8 Replies
View Related
May 17, 2010
I have an application where i play music from media player continuously. I am rotating an ImageView object with RotationAnimation simultaneously while background music is playing. Before music starts playing,the rotation is fine,,but when mediaplayer starts playing music rotation disrupts,and slows down.
View 3 Replies
View Related
Apr 28, 2010
I launch the Media Player to play a mp3 file the usual way:
CODE:...........
Leaving the Media Player using the Back button stops the playback. How can I ensure that the Media Player continues playing.
View 2 Replies
View Related
Mar 9, 2009
I am also getting the same error while playing the media file
E/MemoryHeapBase(31): mmap(fd=20, size=233472) failed (Invalid argument) E/VideoMIO( 31): Error creating frame buffer heap.
View 2 Replies
View Related
Nov 4, 2010
In my android game I want to have a rhythm Mediaplayer object and a lead Mediaplayer object playing in sync. However at the moment the rhythm is a slight bit behind the playback of the lead Mediaplayer object. Is there a way I can make it so that both are started at the same time, for instance using Runnables etc?!It's quite crucial that they play in sync with each other as you can imagine!
View 1 Replies
View Related
May 12, 2010
So I just hooked up a aux input on my car stereo and after a couple of days I noticed that when I unplug the headphones it automatically stops playing the music. This is awesome! I just unplug it when i get to work and i don't have to go in and push pause or stop. I love it. Question is... is there an app that will automatically start playing music from the player? So i could just plug it in and have the music start and then stop again when i unplug it. I only use the headphone jack and listen to music in the car.
View 6 Replies
View Related
Feb 22, 2010
Is there anyway to stop the stock music player on my HTC Hero from playing songs? I have a bluetooth headset and whenever I use the controls on the headset it activates the stock music player instead of the one I downloaded.
View 2 Replies
View Related
Nov 20, 2010
Does anyone know why the music and ringtones are together, when i use the media player the ringtones play?should i make another folder to seperate them? if i do this i am concerned the ringtones wont be found and wont play
View 1 Replies
View Related
Feb 5, 2009
I am using mp3 sound in my game (used wav format also) while playing sound I get problem as "obtainBuffer timeout (is the CPU pegged)" and then sound gets played after some time i.e it is not synchronized with the game play.
View 10 Replies
View Related
Sep 1, 2010
Is there any way to get the details of current song played by media player?
View 3 Replies
View Related
Mar 6, 2014
I have a samsung tablet, recently music player has started to not play my music library properly. When i start to listen to a song, it plays it for a few sec then skips to the other one, and so on. Also a few other apps have stopped working. I did a virus scan and all seems ok.
View 4 Replies
View Related
Aug 21, 2012
I am new to using Android. I am wondering if there is any video (MP4) player that would continue playing the video even when I use the home button to switch to other apps (e.g. check my email etc.) I have a few documentaries/discussions to watch and sometimes minimize the video player to check other information on my phone and the video stops.
Any Video players that continue playing when minimized. I know that the Meridian Player continues playing when the screen is switched off, but it stops if you press the home button.
(I use a Galaxy Nexus with Jelly Bean.)
View 2 Replies
View Related
Jul 18, 2010
I am trying to create a Forum Parsing Application that uses the XML Pull Parser to grab the HTML and then go through it and parsing it for the specific data. I managed to create one that works however when I try to create another one that is used by another Activity in the same Application it gets stuck in a infinite loop.
http://pastebin.com/8YciNjXL
When I debug my code I traced it all the way down to Line 51... while (eventType != XmlPullParser.END_DOCUMENT)
Apparantly eventType gets forever stuck as 0, this is an almost exact copy of my other XML Pull Parser and I have no idea where I or it went wrong.
View 4 Replies
View Related
Feb 10, 2013
I just installed the new jelly bean for mmx a110
but two things : 'Wireless Input'" and ""Wi-Fi"setting is bugging the RAM..
View 1 Replies
View Related
Aug 21, 2010
Invoked device native player to play audio file, it opens android native player on top of the application but when selecting to back out or return to the application, device automatically stops playing the current media.
Sample code:
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"audio/*");
startActivity(intent);
How can I implement so that Device should continue to play audio in the background when selecting to back out or return to the application
View 1 Replies
View Related
Nov 29, 2010
Very often when i try to load a website the browser sits there and does nothing, no upstream or downstream, then, finally when the 3g arrows start doing something the page loads instantly. What is going on? Do i need a different browser?
View 1 Replies
View Related
Sep 3, 2010
Not sure if this has been addressed before, but I cant seem to view mms videos. Im using Handscent SMS and when i receive videos via text, they don't seem to load. I just get a, itunes looking image and i only hear the video audio.
View 3 Replies
View Related
Aug 1, 2010
When I am listening to the music app, or btunes, or mix zing; about one in four times I turn the screen off, the music stops playing. I've tried turning of my task killer, but to no avail. At first, I had a second issue as well: the music would play for only about 15 mins then stop, however, I managed to figure out that that was the 'Data-Off' timer I had set for the battery's 'Smart Mode' (though I'm not sure what data has to do with playing music stored locally). Nevertheless, swapping to 'Performance Mode' solved that. But for the life of me, I cannot figure out why a quarter of the time I turn the screen off, it kills the music.
View 2 Replies
View Related
Nov 10, 2010
I have alot of issues with my Droid X freezing up while playing music from the phone's default music player. Has anyone else experienced this? If so, any suggestions on a fix?
View 3 Replies
View Related