Android :: How Do You Play .wav File Attachments?
Nov 14, 2009
The messaging system at the company I work for generates .wav files for voicemails and sends them as attachments. When I try to open one of these attachments, it brings up the music player, and then the music player gives an error message along the lines of "sorry, player does not support this type of audio file".Is the only way to fix this to download some other music player? And if so, how would I set that as the default?
View 6 Replies
Jul 1, 2010
My issue is that i can NOT get any videos from my gmail to play at all. Either while using Video Player or Movies when I am first asked to pick one. I pick both after one doesnt work and I can NOT get any video to play at all...I believe that this is due to 2.2 .. i have not flashed back to 2.1 to find out if that is true but eversince 2.2 video playback from gmail has shut down. even if i save the vids and play from gallery.. i have a blank spot where the video should be..
View 8 Replies
View Related
Aug 12, 2010
I am no longer able to play wav file attachments since Froyo. Is anyone else experiencing this or can confirm this to be an issue? The error is unsupported file type.
View 3 Replies
View Related
May 5, 2010
Trying to figure out why I can't open file attachments from emails. Received some pdf files and two doc files today. Tried opening files from email with pdf reader program and quickoffice or whatever its called. Neither type of file would open. Tried to download then open files with same problem. Files are definitely .pdf and .doc, just opened and rad them on laptop now. Also confused...is there any way to look at my SD card folders and files through a phone app? Can't figure out how to see anything other then my music and photos.
View 5 Replies
View Related
Apr 13, 2009
I am trying to play file which is stored in SDCARD in emulator. I have Linux O/S. So i need to provide command in run configuration. I am providing following parameter.
-sdcard /usr/android/sdcard/mysdcard.iso -audio oss [i]
The following is my code to play file.
try { mMediaPlayer.setDataSource("/sdcard/test_cbr.mp3"); mMediaPlayer.prepare(); // Giving error. mMediaPlayer.start(); }
View 4 Replies
View Related
Aug 7, 2011
Im using Eclipse created new android project.First thing i added to the menifest xml file two lines:
Code:
uses-permissionandroid:name="android.permission.INTERNET"></uses-permission>
<uses-permissionandroid:name="android.permission.STORAGE"></uses-permission>
And this is the complete menifest file code:
Code:
xmlversion="1.0"encoding="utf-8"?>
manifestxmlns:android="http://schemas.android.com/apk/res/android"
package="com.AllFormatsVideoPlay"
android:versionCode="1"
android:versionName="1.0">
[code]....
Now i tried to play a video file .3gp from the internet youtube link via my android device ! not emulator. And it worked! But when i tried to play a video file .3gp or .mp4( i converted the mp4 from 3gp ) its not working. Im getting error "Cannot play video Sorry, this video cannot be played"
Tried to play with the link to my device wich is: I:DCIM100MEDIAVIDEO0030.3gp or .mp4 or tried this: I:/DCIM/100MEDIA/VIDEO0030.3gp with "" like: "I:/DCIM/100MEDIA/VIDEO0030.3gp ";
I tried to remove the I: but it didn't change anything.This is the main code im using to play the video files on my device. And there some lines i marked with // wich i used to play from the internet and im not using now.
Code:
com.AllFormatsVideoPlay;
import
android.app.Activity;
import
android.graphics.PixelFormat;
import
[code]....
View 7 Replies
View Related
Apr 5, 2010
I want to play couple of files as one ringtone in android app, How can I do it?
View 1 Replies
View Related
Nov 12, 2010
I am writing a small piece of code ...
View 1 Replies
View Related
Jan 20, 2010
I have a URL for a video file which I need to play using the native Video-player of the handset. I figured using Intent.ACTION_VIEW and setting the URI as Intent data, I am able to achieve the aforementioned on G1 except HTC hero. In case of Hero, I have to explicitly set the class Name in the Intent to start the default Video Player: intent.setClassName("com.htc.album","com.htc.album.ViewVideo")
However, I am not comfortable with this approach as it might break on other Android devices.
1. What would be the best way to play this video url via Intent, irrespective of the handset?
2. How to conditionally setClassName in Intent, specific to a Handset?
Writing a standalone Video Player for our app is NOT an option we can afford at the moment.
View 1 Replies
View Related
Apr 25, 2009
The code...
View 2 Replies
View Related
Jul 22, 2010
Can we play sound file in phone line (in background)?
View 4 Replies
View Related
Apr 28, 2009
Could I somehow trick the player on playing something of this format? I know that there is support for AAC encoded files but just how?
View 2 Replies
View Related
Apr 11, 2009
I push the one video file... and tried to play that video file in emulator.. But i got error...how can i check weather video file insert or not...
View 15 Replies
View Related
Dec 11, 2009
Does Android support flash? If yes then i need an example code to play a flash file. Wonder if we can play a flash file in WebView?
View 4 Replies
View Related
Jul 3, 2009
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 Related
Mar 31, 2010
i have a url for the video file.the format of that file is itunes M4V. i want to play it in android mobile. is it possible? if not so let me know?
View 2 Replies
View Related
Oct 3, 2010
If found many tips about how to stream from classic url link, but nothing about ftp. Is it the same way to proced ?
View 1 Replies
View Related
Nov 24, 2010
I am trying to get a video to pop up and play. I can get it to work when I use the first uri (that is commented out in the below code), but when I try to use the second uri (from the resource), I get the following error:
CODE:..........
From researching the error, it looks like I might have to declare an activity in the manifest but I'm not sure if that applies here?? Can someone point me in the right direction?
CODE:............
View 1 Replies
View Related
Feb 4, 2010
I 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 Related
Apr 14, 2010
I need to be able to play an encrypted file in Android. The file is AAC. The only way I can see to do this is either: decrypt the file to internal private storage and point the player at that file to play, or decrypt & decode the file to pcm and feed it to an AudioTrack. 1 isn't great because it takes a long time to do that. 2 isn't great either because I don't know how I can take advantage of the HW decoder to do this.
View 1 Replies
View Related
Nov 12, 2010
I want to play an mp3 file using the default android player. I managed to get the file playing but it plays in the background. I want to have all the nice controls for pausing, playing, etc. I do not know how I could do this! My code...
View 1 Replies
View Related
Jul 20, 2010
when I run this code, it starts playing all the audio files in the assets directory, in alphabetical order instead of just playing the audio file I requested. What am I doing wrong? Is there a better way to play audio files from the assets directory?Is there a difference between keeping audio files in the assets directory and keeping them in the res/raw directory? Besides the fact that they don't get ids if they are in the assets directory. If I move the audio files to the res/raw folder then I have a problem with reusing MediaPlayers because there is no id parameter for setDataSource(). I can't find a good guideline for handling this kind of problem.
View 1 Replies
View Related
Feb 12, 2009
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.
View 3 Replies
View Related
Jun 15, 2009
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 Related
May 18, 2010
Is there any way to play a sound file under Android browser?
View 1 Replies
View Related
Apr 13, 2012
I've been working with Android relatively well for the last six or so months and have been utterly shocked by the complete lack of mediaplayer software that will play streaming radio. I have two .m3u files and one .pls that I've tried in the stock player, Meridian, Astro mp, WinAmp Mobile, StreamFurious pro, and RadioHeart, but none of them will play it. Any media player or even a standalone program for Android that will play streaming radio files?
View 9 Replies
View Related
Feb 10, 2010
How to play audio from a stream in android? I will get input stream from an online link( like continuous FM). I need to cache the stream and play it. I searched a lot in sites,,,but didnt get.They show option of playing from a stored file. There is no option to play from a stream.
View 2 Replies
View Related
Jun 29, 2010
I am new to Android.
I need the sample code of an mp3 player in android to play more than one file.
i.e Song should be played one after the other from a particular folder in our system
Can any one post some sample code.
View 2 Replies
View Related
Feb 15, 2010
We've a mpeg4 source that we would like to play in the media player. Our source is not in a file or on an rtsp server. It is hand coded to generate mpeg4 source on the fly. Imagine the data is coming from an unix pipe stream instead of rtsp or a file. How can I use that stream in media player?
View 1 Replies
View Related
Feb 12, 2013
I am using callfire API for in my iPhone/android application(Hybrid application build using sencha and phonegap). The concept of the app is to show the recorded calls in a list and on click of any call in the list it will play the recorded audio file(.wav format). Now the problem is that I am not able to play that file in my Application. I also tried to play that URL directly on iPhone browser but it also didn't worked.
Here is one of the URL of audio file format [URL]....
But when I put this audio file in my secure server(https) and tried to play it in my Application, it worked perfectly.
I am using iPhone 3 with software version 6.0 for testing.
View 1 Replies
View Related