Yo Josh

DZ

Urban Achiever
Forum Member
Oct 22, 2009
11,819
119
63
310/917
Joker, with stuff from imgur, you can embed the post without the comment/title. See the little share box at the bottom right under the image/gif/video. I've posted a bunch in the test thread recently.
 

JOSHNAUDI

That Guy
Forum Member
Dec 12, 2000
10,352
422
83
50
Seguin, TX
www.schwartz-associates.com
I couldn't get it to work with the .gifv extension but when you right click and copy the "copy video url" it copies a link to a .webm file

From there I used the basic html form


PHP:
<!DOCTYPE html>
<html>
<body>

<video width="640" height="480" controls>
  <source src="https://i.imgur.com/1A9C8Yv.webm" type="video/mp4">

</video>

</body>
</html>
 

JOSHNAUDI

That Guy
Forum Member
Dec 12, 2000
10,352
422
83
50
Seguin, TX
www.schwartz-associates.com
Of note - That won't show up in Internet Explorer - webm is not supported

[h=2]HTML Video - Browser Support[/h]Currently, there are 3 supported video formats for the <video> element: MP4, WebM, and Ogg:
BrowserMP4WebMOgg
Internet ExplorerYESNONO
ChromeYESYESYES
FirefoxYESYESYES
SafariYESNONO
OperaYES (from Opera 25)YESYES

<tbody style="box-sizing: border-box;">
</tbody>
 

JOSHNAUDI

That Guy
Forum Member
Dec 12, 2000
10,352
422
83
50
Seguin, TX
www.schwartz-associates.com
To recap

Take https://i.imgur.com/WiAS157.gifv

change it to https://i.imgur.com/WiAS157.mp4

put it in the following without the space between
< video
< source
< /video

< video width="640" height="480" controls>
< source src="https://i.imgur.com/WiAS157.mp4" type="video/mp4">
< /video>

and there you have it

<video width="640" height="480" controls="">
<source src="https://i.imgur.com/WiAS157.webm" type="video/mp4">
</video>
 

Construct Carl

Registered
Forum Member
Nov 2, 2014
557
23
0
Lantz Farm And Nature Preserve
To recap

Take https://i.imgur.com/WiAS157.gifv

change it to https://i.imgur.com/WiAS157.mp4

put it in the following without the space between
< video
< source
< /video

< video width="640" height="480" controls>
< source src="https://i.imgur.com/WiAS157.mp4" type="video/mp4">
< /video>

and there you have it

<video width="640" height="480" controls="">
<source src="https://i.imgur.com/WiAS157.webm" type="video/mp4">
</video>

cool although i have no idea how that code works makes my brain hurt
 
Bet on MyBookie
Top