[android-developers] Re: MediaPlayer & seek on startup

2008-12-01 Thread Dave Sparks
I can't think of any alternative solution at this time. The code that handles this is in the OpenCore engine and not something you can address with a Java API. Perhaps this is something we can address in a future release. On Nov 28, 1:22 pm, David Given <[EMAIL PROTECTED]> wrote: > David Given w

[android-developers] Re: MediaPlayer & seek on startup

2008-11-28 Thread David Given
David Given wrote: > I'm trying to play streaming music. The user has previously requested > that the stream start a certain way into the stream. How do I do this? [...] Does anyone have any suggestions on how do this? If I can't make this work, my app is basically stuffed, and nothing I've tried

[android-developers] Re: MediaPlayer & seek on startup

2008-11-27 Thread David Given
Dave Sparks wrote: > You must always call prepare() before seekTo(). The player engine > needs to read the first part of the stream to identify the stream type > and required codecs and read the content index (if it exists). Well, yes, I'm aware of that. However, it doesn't just read the stream h

[android-developers] Re: MediaPlayer & seek on startup

2008-11-26 Thread Dave Sparks
You must always call prepare() before seekTo(). The player engine needs to read the first part of the stream to identify the stream type and required codecs and read the content index (if it exists). On Nov 26, 2:55 pm, David Given <[EMAIL PROTECTED]> wrote: > I'm trying to play streaming music.