I have been trying to create a web page that will redirect the user after he has watched a video (or if he aborted the playback). I've got this working on the iphone but can't really figure out how it works on the android.

On the Iphone i have found two ways of doing this. using the tag to embed the quicktime plugin and then adding a event listener with javascript to listen to the 'qt_ended' event. This does obviously not work on android because there is no quicktime plugin.

The second thing i tried was using the html5 -tag and listening to the 'ended' event, again this worked on the iphone but to my surprise not on android. In this case i got the video playing on the android phone but no redirect occurred after the video had reached the end. So my guess is that the android browser does not fully support the video-tag and that it does not fire the event.

So at this time i don't really know how to proceed. I'm guessing i could do something similar to the quicktime embed solution but using a plugin available on android. But i cant find any information on what plugins is available on the android and if they support some kind of 'ended'-event.

link|improve this question
i think you have the same problem i had a month ago. please check this post: stackoverflow.com/questions/2866212/… – Praveen Jun 16 '10 at 9:04
I'm not writing my own application, I'm just running the page in the browser, so javascript should already be turned on? Otherwise no javascript would work on any website. Or am i misunderstanding you? – Tjofras Jun 16 '10 at 9:37
feedback

1 Answer

up vote 1 down vote accepted

This is supported in Android 2.2, but not 2.1. Android 1.6 didn't even support the Video tag so that goes without saying.

I've spent some time looking into workarounds and haven't found anything.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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