Dear developers,

I need some conceptual help here, I have a sequence of several short video 
files, say 1 video file was split into 4 files (properly, using video 
editor). I want to play those files in my app one after another without 
even slightest delays in between. 
MediaPlayer has to do reset() and prepare() for each file, right? That's 
where the delay comes from (I believe). Is it possible to make some kind of 
pipe, get a file descriptor, feed it to MediaPlayer and just put video 
files into the other end of pipe in the sequence that you like. Then 
MediaPlayer won't have to do reset() and prepare().  Would such approach 
work?

Another possibility, would it be possible to have two MediaPlayers?  One is 
playing, the other one meanwhile is reset and prepared, then when first one 
finishes, it somehow gets invisible and the other takes over (and so on).

Please advise, which approach you think is better, and what objects you 
would use to compose such a system?

Thanks a lot
Henry

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to