NOTE: I am opening a new question because all the other questions are not really related or with dead links.
Basically what i am trying to do is to post a video to Facebook and get it to play through my own html5 player. Kinda like Youtube.
Here is where I am at at the moment:
I have a page like this one Youtube uses for embed videos, I can embed it in IFrames and all, but when I try to post it to facebook all what I am getting is ether an empty basic player (I am guessing facebook is trying to use my url as a video src) OR I get a link to my player that opens in a new tab.
I copied the FB meta tags Youtube uses (it's what got me the empty player):
<meta property="og:type" content="video.other" />
<meta property="og:video:url" content="https://example.com/player#?vid=-KTVXcimOOFPgo2igeKf" />
<meta property="og:video:secure_url" content="https://example.com/player#?vid=-KTVXcimOOFPgo2igeKf" />
<meta property="og:video:type" content="text/html" />
<meta property="og:image" content="https://example.com/share/asd.jpg">
<meta property="og:video:width" content="1280" />
<meta property="og:video:height" content="720" />
<meta name="attribution" content="Discovery/" />
Any help, tip, reference or a correction would be appreciated.