amuck-landowner

Do embedded videos appear for you? Please check this out and let me know.

MannDude

Just a dude
vpsBoard Founder
Moderator
I've seen a couple reports of embedded videos not working for some people, while for most I do believe they appear properly. On all my devices, whether it be Linux or Windows powered (or Android), I've had no issues seeing the embedded videos in posts. Chrome, Firefox, Opera, DWB and even the dreaded IE... it works for me.

But, even people with common setups are reporting videos appear to them as blank white squares or just emptiness in a post. With that said, let's do a little test. Let me know if you can see the below video, and if not, please list your OS and your browser. I'm ticketing IPBoard regardless, but figure the more info collected the better.

Even if the below video doesn't load for you, you've probably already seen it 20X.

https://www.youtube.com/watch?v=W8_Kfjo3VjU

Eh? Can you see that above?
 
Last edited by a moderator:

MannDude

Just a dude
vpsBoard Founder
Moderator
FFS. Comically enough I just ran updates on my PC about an hour ago and now can't see the damn video in Chrome. Firefox, sure, can see it. Opera? Yep. DWB. You betcha.
 

MannDude

Just a dude
vpsBoard Founder
Moderator
It is https. If you quote my post you'll see that the URL in the media tag shows https
 

MannDude

Just a dude
vpsBoard Founder
Moderator
Hmm, seems to be working now. Can you guys confirm?

Made an edit to the media tag.
 

MannDude

Just a dude
vpsBoard Founder
Moderator
To those of you who saw error codes, what are you using to have those displayed? Seemed to me like it was a nice organized list, but I am not seeing this feature in any of my browsers...
 

sv01

Slow but sure
works fine on Firefox 28.0, Fedora 20 64 Bit. I don't use flash :)
 
Last edited by a moderator:

blergh

New Member
Verified Provider
Seems to work now, didn't work earlier as it would just display an empty space.
 

Francisco

Company Lube
Verified Provider
Seems to work now, didn't work earlier as it would just display an empty space.
Looks like curtis changed the URL to src="//youtube instead of http:// or https://

It finally works for me again. I know there was more than a few times that I had to edit a post

to give a link to a video because it wouldn't load.

Francisco
 

mojeda

New Member
@MannDude

These might interest you:

YouTube.com Media Tag

Replacement Match Accepts both http and https links


http(?:s)?://(www.)?youtube.com/watch\?(\S+?)?v=([\d\w-_]+?)(&\S+?)?

Replacement HTML (I'll assume you want https embeds)


<iframe id="ytplayer" class="EmbeddedVideo" type="text/html" width="640" height="390" src="//youtube.com/embed/$3?html5=1&fs=1" frameborder="0" allowfullscreen webkitallowfullscreen /></iframe>

Youtu.be Media Replacement

Replcament Match, same as above accepts http and https.


http(?:s)?://(www.)?youtu.be/([\d\w-_]+?)(&\S+?)?

Replacement HTML


<iframe id="ytplayer" class="EmbeddedVideo" type="text/html" width="640" height="390" src="//youtube.com/embed/$2?html5=1&fs=1" frameborder="0" allowfullscreen webkitallowfullscreen /></iframe>

Also as an added bonus if you want gfycat media tag support:

 

Replacement Match


Code:
http(?:s)?://(www.)?gfycat.com/{1}
Replacement HTML


Code:
<video autoplay loop muted="muted" poster='//thumbs.gfycat.com/$2-poster.jpg'>
  <source src="//zippy.gfycat.com/$2.webm" type="video/webm">
  <source src="//zippy.gfycat.com/$2.mp4" type="video/mp4">
  <img src="//fat.gfycat.com/$2.gif" alt=""/>
</video>
 
Last edited by a moderator:
Top
amuck-landowner