Can i embed videos other than youtube in blogger?

2.5k views Asked by At

Can I embed videos other than youtube in blogger? For example can I embed mp4upload videos or yourupload videos?

<iframe src="http://www.yourupload.com/embed/f0PN56si4NJy" width="640" height="360" allowfullscreen><iframe>

I used this embed code but I'm unable to play it in blogspot.

2

There are 2 answers

1
funilrys On

Blogger only allow https links for <iframe> sources.

This <iframe> should do what you try to do (I tested this ) :

<iframe src="https://www.yourupload.com/embed/f0PN56si4NJy" width="640" height="360" allowfullscreen></iframe>

Live test here.

0
Loukas Triantafyllopoulos On

I'used this iframe and is working for me into an html/javascript widget

<iframe src="http://www.yourupload.com/embed/f0PN56si4NJy" allowfullscreen="true" style="border: 0" /></iframe>