[android-developers] Re: WAV (GSM 6.1) Support?

2008-11-26 Thread Dave Sparks
There is no support for GSM 6.1 and no plans to support it at this time. On Nov 26, 9:14 am, Wiggles [EMAIL PROTECTED] wrote: Is there anyway to get .wav(GSM 6.1) audio files to play on Android? Or is there anyway to get this feature added in later updates? I get my voicemails for work

[android-developers] Re: Streaming RTSP directly by suing MediaPlayer

2008-11-26 Thread Dave Sparks
I don't expect this issue to be resolved soon. On Nov 26, 5:36 am, Jérémie Gavard [EMAIL PROTECTED] wrote: Thanks for this precision. Does this issue on emulator planned to be solved soon? I am trying to develop an application around video streaming. On Nov 25, 10:58 pm, Dave Sparks

[android-developers] Re: Require Source code of tools

2008-11-25 Thread Dave Sparks
The source for the entire project is at source.android.com. On Nov 25, 1:22 am, Amit [EMAIL PROTECTED] wrote: Hello friends, Can u please tell me where can i get the source code of tools provided in sdk. I need source code of DDMS and traceview. Any help appreciated. Thanks Amit

[android-developers] Re: how to obtain meda-data (like bit rate) from audio files ?

2008-11-25 Thread Dave Sparks
The metadata retriever currently doesn't support that level of detail. On Nov 24, 12:09 pm, AP08 [EMAIL PROTECTED] wrote: I checked android.provider.MediaStore.Audio.Media, but it can provide only limited data about audio file. I want to obtain data such as bit- rate, how do I get that ?

[android-developers] Re: Fw: [android-developers] Re: Android and bluetooth

2008-11-25 Thread Dave Sparks
Bluetooth is a big category. What feature(s) do you need? On Nov 25, 1:26 am, supernova [EMAIL PROTECTED] wrote: Any idea when a version with BT support will be released? I need to choose a mobile platform for a project and BT support is required. On 24 nov, 13:45, Mark Murphy [EMAIL

[android-developers] Re: Streaming RTSP directly by suing MediaPlayer

2008-11-25 Thread Dave Sparks
The media framework does support RTSP with RTP payloads. The OpenCore code includes an RTSP/RTP client built on sockets that will handle buffering and transport controls. It does not work in the emulator environment due to some firewall issues in the emulator network layer. On Nov 24, 12:30 pm,

[android-developers] Re: Calling youtube from Android

2008-11-25 Thread Dave Sparks
I think you are looking for the following method in android.content.pm.PackageManager: public abstract Drawable getActivityIcon(Intent intent) On Nov 24, 9:03 pm, cse.tlin [EMAIL PROTECTED] wrote: Hi davidsparks, Can I get the drawable icon ofyoutubeapp from another app? I want to offer

[android-developers] Re: Camera Question: Off on Pause?

2008-11-22 Thread Dave Sparks
Call the release() method on the Camera object and set it to null. In onResume, create a new Camera object. On Nov 22, 1:23 pm, joshbeck [EMAIL PROTECTED] wrote: Here is what my app does: It opens the camera. It draws a preview to a surface. Now, if the user pauses the app, is the camera

[android-developers] Re: processing camera preview before display

2008-11-14 Thread Dave Sparks
You cannot alter the preview frames as they are being displayed. Camera preview uses a private shared interface between the camera and SurfaceFlinger to display preview frames. It would be too costly to pass this data across two process boundaries and a Java VM. You might be able to get away

<    1   2   3   4