I am using following htmlString
to run a file on vimeo on iPhone.
<iframe src=\"http://player.vimeo.com/video/8118831?api=1title=0&byline=0&portrait=0&color=008efe&\";autoplay=1&loop=1 width=\"320\" height=\"480\" frameborder=\"0\">"//@"</iframe>"
It is playing fine but I want the video to play without user interaction. And I am failing to do so.
I try to add autoplay=1
as mentioned in http://developer.vimeo.com/player/embedding it does not autoplay. This post - http://vimeo.com/forums/topic:45193 makes me believe autoplay
does not work on IPhone. Thus I tried to use JavaScript
to play a video file. But vimeo does not expose the video file. So I try to use vimeo own Java API but it has no functions to play the video file (http://developer.vimeo.com/player/js-api) .
My Question is , Is there a way to play a vimeo file on iPhone with out user interaction and how it can be done.