General :: Video / Media Player That Continues Playing When Minimized
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
Dec 3, 2012
I am using the Alcatel OT-918d (stock rom, root access enabled) and while playing videos in the browser, I do not get an action prompt to choose from the available video players and browser plays the video using "default video player".
The so called "default video player" has been uninstalled though. Have cleared cache, clear defaults, clear data for the browser but still do not get a prompt to choose a video player while playing videos from the browser.
Also installed the "Default App Manager" to check for the default video player. However, it indicates no defaults to play any videos (either from file or streaming videos).
(If I play a stored video from phone or SD card, I do get the prompt to choose a video player. But do not get a prompt if playing any video in the browser.)
View 6 Replies
View Related
Dec 1, 2012
I am using the Alcatel OT-918d (stock rom, root access enabled) and while playing videos in the browser, I do not get an action prompt to choose from the available video players and browser plays the video using "default video player".
The so called "default video player" has been uninstalled though. Have cleared cache, clear defaults, clear data for the browser but still do not get a prompt to choose a video player while playing videos from the browser.
Also installed the "Default App Manager" to check for the default video player. However, it indicates no defaults to play any videos (either from file or streaming videos).
(If I play a stored video from phone or SD card, I do get the prompt to choose a video player. But do not get a prompt if playing any video in the browser.)
View 5 Replies
View Related
Jun 7, 2010
The tracks in an album playing alphabetically instead of by the track number?
View 3 Replies
View Related
Jan 11, 2014
My friend and I both have a Galaxy Tab 3.
When he uses his native android video player he can see media listed from DropBox (and a little drop-box icon on the bottom left corner of the thumbnail).He also has the options "View by" under the options button and can select "view by content on DropBox ".
-> This allows him to stream the videos from dropbox on the native vid player without downloading onto the device...
I do not have these options!How do i get them?
I need this because i want to use the AllShare option for streaming to my TV that is available on the native video player.
View 1 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
Jul 18, 2010
I am looking for a music player that will continue to play in the background. There are some streaming apps that will do this, but I am looking for one that plays mp3's. The HTC player quits playing when I push and hold the home key to switch to another app. So does RockPlayer.
View 7 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
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
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
Jul 21, 2010
I recently bought some gameloft games for my droid incredible but i noticed all the sounds of music of the games are showing up on my media players. Is there any fix for this issue?
View 2 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
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
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
Sep 1, 2010
Is there any way to get the details of current song played by media player?
View 3 Replies
View Related
Jul 3, 2010
good mp3 player and video player / HTC EVO. is there anything better than stock
View 5 Replies
View Related
Aug 31, 2010
Is there any way to get the details of media files that is executed in android(default) media player?
View 3 Replies
View Related
Apr 14, 2010
I just started with creating my own media player application by looking at the code samples given in Android SDK. While I am trying to play a local media file (m.3gp), I am getting IOException error :: error(1,-4).
package com.mediaPlayer;
import java.io.IOException;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;...........
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
Jan 8, 2010
I need to know if there is a way for watching .WMV videos on the HTC Hero.
I already know that it will play MPEG-4 videos without a problem (you can use the RealPlayer Video Downloader to download HQ/HD videos from places like Youtube and it automatically saves them to MPEG-4 format).
However, I want to transfer some files like music videos onto my HTC Hero and having tried several times, using the RealPlayer Converter, to convert the .mpg files to .wmv, I can't watch them on the Hero.
However, I recently looked at one of the threads (I think on a different forum) and he said that he could watch videos in WMV format using 750kbps on resolution 480x320. But RealPlayer only allows for 768kbps and resolution as 480p HD as the nearest possible (which was the setting I ordinarily chose).
The other strange thing is that when I go onto the Albums part of the phone to see if I can view any videos, it shows a thumbnail image of the music video (a preview image of the video) and when I play it, I can hear the music, but the video itself fails to appear.
View 4 Replies
View Related
Sep 25, 2010
This is 2010. I refuse to believe that you can only play movies/video files that have .avi, .mp4, .mpg, .mkv file formats by converting. I remember Sony was slow on the uptake when they started the media server streaming which I use on a daily basis at home now.Is there a program that will decode the files as you stream them? Any codecs to install on the Droid X? I have thousands of video files and "converting" is time consuming not to mention creating two video files instead of one to play on devices. Converting is BS and whoever thought "Let's just have the users convert the video files" needs to take a long walk off a short pier.
View 5 Replies
View Related
Aug 11, 2010
i'm big into freestyling. i have over 1500 instrumentals on my phone.i can't figure out how to play them and record myself (either audio or video) at the same time.i figure i'm either gonna have to download a new music player that won't close or a video/audio recorder that won't close the "Music" player that came with my evo.and before anyone goes tryin to be smart, i realize that even if i was able to accomplish such an action the quality would probably be really low due to speaker and mic being so close.my intent is more of a "on the fly lyric composition" rather than a " put myself on youtube to show everyone how awesome i am"
View 2 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
Oct 21, 2008
Where can i download the Video player for G1?
View 15 Replies
View Related
Feb 23, 2010
I recently wanted to watch a video on my N1 I had the default player on my home page but the icon went away. I figured I must have accidently moved it to the trash but I cannot find it in the apps list either. Has anyone else had this problem?
View 3 Replies
View Related