I have a self-hosted wordpress blog and I'm trying to embed a video with the code on the website:
<iframe src="http://www.viki.com/player/medias/80715" frameborder="0" width="640" height="360"</iframe>
It works fine however, the video has an autoplay feature which plays the next video automatically and I'd like it to just stop at the end. Also, the video has subtitles which defaults to English and I'd like the Spanish ones to load instead of the English ones.
I'm able to achieve that with this code:
<embed src="http://a3.vikiassets.com/swfs/vikiplayer.swf?1320909340" flashvars="language_codes=es&source=direct&media_id=80715" type="application/x-shockwave-flash" wmode="transparent" width="640" height="360" allowfullscreen="true"</embed>
but, is there any way to achieve that with iframe?