Fixed LiveLeak embedded video not showing on iOS

I think they may have updated their embed code, Mike. Looking at one on their site, I see an iFrame versus Flash. I haven't compared to XenForo's implementation tho.
 
@Mike:

Embed code in 1.2:
Code:
<object width="500" height="300">
    <param name="movie" value="http://www.liveleak.com/e/{$id}"></param>
    <param name="wmode" value="transparent"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="http://www.liveleak.com/e/{$id}" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="500" height="300"></embed>
</object>

Embed Code on Liveleak:
Code:
<iframe width="640" height="360" src="http://www.liveleak.com/ll_embed?f={$not_id}" frameborder="0" allowfullscreen></iframe>

Not sure if embedding the new way with $id will work or not.
 
This is what I use on my forum for LiveLeak "Embed HTML":

Code:
<iframe width="640" height="360" src="http://www.liveleak.com/ll_embed?i={$id}" frameborder="0" allowfullscreen></iframe>
 
I don't think the iframe version can be used since the ID passed to it is not in the page URL, at least in my tests.
 
I don't think the iframe version can be used since the ID passed to it is not in the page URL, at least in my tests.
It would be pointless to worry anyways because the iframe player is just the flash player in an iframe so its not really going to work on an ithing anyways
 
It would be pointless to worry anyways because the iframe player is just the flash player in an iframe so its not really going to work on an ithing anyways
I believe the new embed will determine whether or not it can play flash and show an alternative version or not. I posted on my localhost and don't feel like setting up my phone to see it, but I would assume the iFrame is switching between the two.
 
I've updated the default embeds for 1.2 for LiveLeak and Metacafe to use their <iframe> methods.
 
I believe the new embed will determine whether or not it can play flash and show an alternative version or not. I posted on my localhost and don't feel like setting up my phone to see it, but I would assume the iFrame is switching between the two.

I just tried it ...it doesn't
 
Top Bottom