XF 2.2 Embedding video from another source?

HuskerGarrett

Active member
Sorry if this is a stupid question, but how would one embed a video from a website that is not included by XF out of the box in their post?
 
Yes, at admin.php?bb-code-media-sites/

The site you wish to add will need to provide embed code in a format that IDs can be used.

Have a look at one of the existing ones to see how it works.
 
Check out the S9e Media Sites addon:


It handles embeds from over 120 different video hosting, audio hosting, news and other services.
 
Your embed code is not correct.

Use this for the Match URLs:
Code:
share.***.com/embed/a/{$id}

Use this for the Embed template:
Code:
<div class="bbMediaWrapper">
    <div class="bbMediaWrapper-inner">
        <iframe src="https://share.***.com/embed/a/{$id}"
                width="652" height="368"
                frameborder="0" scrolling="no" allowfullscreen="true"></iframe>
    </div>
</div>

Replace the *** as required.
 
Top Bottom