Media :: Can An Android Phone Play WMV Attachement?
Sep 20, 2010Can an Android Phone play WMV attachement?
View 1 RepliesCan an Android Phone play WMV attachement?
View 1 RepliesI am able play a media using MediaPlayer. The media played via the ear piece. But how can I play the media with speaker phone? I have tried: AudioManager audio Manager = (AudioManager) mActivity.getSystemService(Context.AUDIO_SERVICE); audio Manager.setSpeakerphoneOn(true); but that does not work. And I have added this to my Manifest file <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> Can someone please tell me what am i missing?
View 3 Replies View RelatedI am able play a media using MediaPlayer. The media played via the ear piece. But how can I play the media with speaker phone? e)But that does not work. And I have added this to my Manifest file.
View 7 Replies View RelatedCan anyone please tell me if Android Media Player is able to play a video that is placed in a remote server, in a supported format?
View 5 Replies View RelatedSince the 2.2 update for most phones, I've noticed that my 2.1 (Samsung Moment) won't stream video's now. Before video's would stream over my connection, however 2.2 comes out and know I keep getting error's or programs just shut down. Is this just a case of host programs switching to the new android format?
View 1 Replies View RelatedFirst, I've just put Froyo on so I am up to date. I've also just installed a 32g card, formatted it on the phone (twice now) and used Windows explorer to copy mp3's of my CD's over from my laptop to the phone in to a folder called Music a couple of different times to rule out copy issues with the same results. FYI I normally carry/listen to my tunes on my Zune, and keep them associated with Zune.
My problem is that when I look at the phone's properties in Explorer, I see that I've used about 3.9g used, yet when I look at the individual CD folders I see nothing near that size. the Music folder on the phone shows 36 folders,108 files but a size of only 548m. No other phone folder shows any substantial usage. When I browse to the folders, a few of them have mp3's, but almost all show as empty, 0 files. I know I copied files, I watched it happen. When I launch the music app it doesn't see any of the folders with 0 files. Some of the folders that show mp3 files play but most don't. I get an "unable to play this type of audio file" message on the phone yet all of the files are the same. I should note that before I put the 32g card in, I did a trial copy of about 4 CD's with the 8g card in and they played fine. I didn't bother copying any more since I knew that I was getting the 32g card.
Any thoughts? Does the phone have a problem with a 32g card?
there is an app to play media from my pc/laptop on my desire?
View 4 Replies View RelatedDoes anyone know of any instructions or tutorials for how to play an mp3 on my computer on my droid, without having to transfer the file?
View 1 Replies View RelatedMy PS3 and my smart tv pickup my windows computer over wifi enabling me to show pictures music and videos on it. Im assuming this is a windows feature that allows it to show up like that. Is there any type of app that can fake the tv I to thinking my phone is a wi dows media?
View 6 Replies View RelatedDoes anyone know where to find a media player that would allow you to play streaming videos on Android Browser?
I want to know if you can play streaming videos on your web browser on your android os phone.
I guess no one cares to listen to their favorite music in the order the artist intended? we now listen to timeless classic Opera in whatever order? makes no difference? Classic Rock albums out of order? Pink Floyd "Dark Side of the Moon"?
View 6 Replies View RelatedMy application gets playlist from a XML file, requests URL of mp3 file from server, downloads and plays it. It was able to download mp3 file but unable to play it. When I used emulator with Android 2.1, it was displayed in LogCat:
[Quote]
I'm loving my x10 but am peaved that I can't play dixv and avi files on it are there any decent FREE (important) media players that I can use?
View 2 Replies View RelatedOn Windows Mobile I used TCPMP and it could play any format; FLV, MP4, AVI (Could play DivX in theory, but the phone lacked physical resources I guess). Is there a program for Android that let's me play most formats?
View 14 Replies View RelatedI have a small mp3 (326KB) in my res/raw folder. In my code, I have mPlayer = MediaPlayer.create(FakeCallScreen.this, R.raw.sample); Player.prepare(); mPlayer.start(); The application just crashes when it tries to start the activity, I cannot figure out why.
View 2 Replies View RelatedI create a "mplayer" to play the rtsp on the emulator. When the "mplayer" play the http ,it is ok.
MediaPlayer mplayer = new MediaPlayer();
mplayer.setDataSource("rtsp://test.intra.3g.sina.com.cn/streaming/ 20090313/wenjiabao1.mp4");
mplayer.prepare(); mplayer.start(); but when it play the rtsp, it doesn't work. The Wireshark shows UDP Checksum Incorrect.
Recent news say that flash porting is finished for android and HTC Hero has support for flash. Can I use MediaPlayer API to play flv media file? Is there such documents?
View 3 Replies View RelatedI have a code to run a start a media player a play an audio file saved in my local disk.But the code is not running and it is showing an exception...
View 6 Replies View RelatedI tried to play a piec of 16-bit .wav audio file, no sound came out from my earphone, but .mp3 file would be OK. Do any one else have this kind of experience? This is the code: player = MediaPlayer.create(this, R.raw.test); // I put test.wav in /res/raw player.start();
View 4 Replies View RelatedI am new to android.I am trying to play a video from sdcard. this is the sample code I have used..
public class videoa extends Activity {
/** Called when the activity is first created. */
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.main);
VideoView videoView = (VideoView)this.findViewById(R.id.videoView);
MediaController mc = new MediaController(this);
videoView.setMediaController(mc);
// (1) Web
//videoView.setVideoURI(Uri.parse(
//"http://www.bogotobogo.com/Video/sample.3gp"));
//"http://www.bogotobogo.com/Video/sample.mp4"));................Please help me out.
I see another post on this but it's a little outdated so I'm hoping there has been a recent development.Looking for a way to transmit audio from media (music, movies, audiobooks...not phone calls) to my standard bluetooth wireless device, which is not A2DP.This worked perfectly with no tweaks on my enV Touch so clearly it isn't a hardware issue, which by extension means there should be a software workaround, possibly in the form of a downloadable App.Anything that would work is cool though registry edits, whatever, I just desperately want to listen to audiobooks at work without buying a new headset!
View 10 Replies View RelatedI have an Activity that plays a brief OGG "pop" sound effect when bubbles pop. To keep it fast and to ensure I can play several pops, I create four MediaPlayer instances. I synchronize access to a pool of instances, so I can play up to four pops at once. Once a sound completes, I call seekTo(0) and return the MediaPlayer instance to my pool.
Here is a rough sketch of the code:
// when the activity resumes... for (int i=0; i<4; i++) {
MediaPlayer mp = MediaPlayer.create(context, R.raw.pop);
mp.setOnCompletionListener(this);
mp.setVolume(1f, 1f); players.add(mp); // put into a pool of available players }
The dev guide suggests this
MediaPlayer mp = new MediaPlayer();
mp.setDataSource(this, Uri.parse("http://wamu-1.streamguys.com:80"));
mp.prepare(); mp.start();
I can't seem to get it working though.
I'm getting "java.io.IOException: Prepare failed.: status=0x1"
Is there any support for avi and other media formats except mp4 and 3gpp? If there is no support may I develop a support through correct the program? Will that be too difficult ?I don't know where to put my hands into first, should I correct programs in opencore first or should I just correct programs in directory frameworks/base/include/ media . I want to have a clear mind how I can achieve my goal, I need a roadmap to guide me how to do it.
I am trying to get familiar with the SDK 1.0 now. another question, my chip is from freescale and it supports hardware codecs of mpeg4, h.263 and h.264, I don't know whether I can change the program or the architecture of mediaplayer to utilize my hardware codecs instead of software codecs provided by android opencore. I once implement an mplayer to my platform, there is problems about sync of audio and video due to the quality of my chips(CPU can support software codecs but is not fast enough to make sure sync of audio and video), So I am worried about when the android is implemented, there would also be the same problem, and for this reason, I am thinking whether I can utilize my hardware codecs for mediaplayer.
I want to develop application in which i want to listen call and play medial file so caller can listen it. Can some one tell me how can i do it ? any code snippt or link of resource.
View 7 Replies View RelatedI have copied about ten albums of mp3s onto my HTC Desire but only about one in five of the tracks will actually play. Windows Media Player doesn't have a problem with any of them.
I've tried playing with the default music player and Meridian with the same result. Has anyone seen this?
Is it possible to install more codecs on the Android? Is that even the problem?
When i record my audio from MIC and store file in /data/data/. why Media Player can't play this file ? If i change destination to / sd card/..... - all works great. I do something wrong ? I not found limitation for Media Player. Device - Samsung T959 (Galaxy S).
View 4 Replies View RelatedI am currently new to android development I been working on the examples in the Dev Guide in the android website. I want to get a stream from a server I have to play in the emulator when I insert the url it doesn't seam to want to play. My question is there a way to get the emulator to play audio or is it all enabled also does MediaPlayer require a special kind of format like mp3 or ogg? his is the code i am running on my 'onCreate()' method.
MediaPlayer mp - new MediaPlayer();
mp.setDataSource(MY_URL_);
mp.prepare();
mp.start()
Why Update buffering is always 0% when mediaplayer play the rtsp? I try to play this both on the emulator and on the device. But eveytime it shows that the Update buffering is always 0%. Could anyone give me a reason?
At last it always shows the log
E/MediaPlayer( 1455): stop called in state 4
E/MediaPlayer( 1455): error (-38, 0)
E/PlayerDriver( 1088): Command (7) was canceled
I wanted to stream A/V from my machine to Android over HTTP
(http://lists.mplayerhq.hu/pipermail/libav-user/2010-July/004944.html).
But that does not seem feasible using FFMpeg. I am planning to try FFMpeg streaming over RTSP. But I am not sure whether MediaPlayer or VideoView classes on Android support RTSP playback. Is playing RTSP stream possible in simple application?