I have just created and iPhone web app, which has some x264 (mp4) video files on it. When I link directly to the file on the iPhone and the user taps the link, the video player is loaded and the video starts playing.

Using the app on an Android phone causes the browser to download the video instead of just playing it. Is there a way to force a video player to just boot up and play the video not download it?

Thanks in advance.

link|improve this question

Do you have a sample link you can share that demonstrates your problem? – CommonsWare Apr 7 '10 at 14:01
1  
also, what MIME type does the server return the video file as? – Yoni Samlan Apr 7 '10 at 14:36
Sample of the problem can be found here (open in webkit) magicseaweed.com/md/blacklabel/3/event/2/video – Gcoop Apr 9 '10 at 13:02
feedback

1 Answer

You should know that Android is quite strict regarding the video streams that you can stream. To be able to watch a stream a video (progressively watch and download) the video container must be correctly formatted.

There are many ways to create a container suitable for progressive streaming. You can look it up here: http://groups.google.com/group/android-beginners/browse_thread/thread/2a801ce5f71b5aaf?pli=1

I have successfully created a streamable video. Try to open it from your browser: http://students.mimuw.edu.pl/~nh209484/Video000.3gp

link|improve this answer
thanks for your tips i was trying to avoid recoding everything though :) – Gcoop Apr 9 '10 at 13:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.