[android-porting] Re: video player - native application

2010-05-30 Thread Deva R
guys, any native player available? On Thu, May 27, 2010 at 5:01 PM, Deva R wrote: > Hi, > I'm looking for a native video player application, which can be run in > background (like command line), when other applications launched by > ActivityManager are active in foreground., > > My requirement is

[android-porting] Re: video player - native application

2010-05-31 Thread Dianne Hackborn
That isn't really how Android works. If you want a video player to run in the background, you would start a Service that controls it (see for example the music app). If you are creating a device with an external display... well, currently there are no APIs for external displays in the platform,

[android-porting] Re: video player - native application

2010-05-31 Thread Deva R
Hi Dianne, Thanks for the reply. > If you are creating a device with an external display... > well, currently there are no APIs for external displays in the platform, so > you are going to need to add something that your app can use to direct video > playback to that display. Currently we have m

Re: [android-porting] Re: video player - native application

2010-05-31 Thread Sambhav
you can try gstreamer. its a native app. On Tue, Jun 1, 2010 at 1:25 AM, Deva R wrote: > Hi Dianne, > > Thanks for the reply. > > > If you are creating a device with an external display... > > well, currently there are no APIs for external displays in the platform, > so > > you are going to need

Re: [android-porting] Re: video player - native application

2010-06-01 Thread Deva R
we got OMX IL completed for opencore now, will be working next for stagefright., any prototype on these will be handy for us.. we got Gstreamer port and OMX IL workign outside android, but this prototype is less reusable by our customers and products in android. On Tue, Jun 1, 2010 at 8:08 AM, Sa