s9e/mediaembed - Embed videos and third-party content
I've just installed a fresh copy of beta-4. After making sure that the forum worked, I installed the extension by running this at the root of the forum:
composer require s9e/flarum-ext-mediaembed
Then I went to the admin panel and enabled the extension. Once the extension enabled, I posted a new thread with a YouTube video and it worked as expected.
- Edited
Ignivis That error means you're using an outdated version of the admin JavaScript, which is sending the incorrect "fake HTTP method override" header. This implies that you're using a dev version rather than beta 4. If you're doing this intentionally, then you will need to manually recompile the JavaScript. If not, make sure "minimum-stability" is set to "beta" in your composer.json file and run composer update
... or just try doing a fresh installation.
How can I manually add a website?
Grandmasta There's no user interface for it so you'd have to create an extension and use the MediaEmbed configurator.
- Edited
JoshyPHP Thank you for made this amazing extension. I have a question about manually add a website. I already read the link of the MediaEmbed configurator. But I dont know how to create an extension to run it.
I already finished the composer.json file. But I dont know what code should be the bootstrap.php file.
The website what I want to add:
$configurator->MediaEmbed->add(
'tucao',
[
'host' => 'tucao.tv',
'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
'iframe' => [
'width' => 560,
'height' => 315,
'src' => 'http://www.tucao.tv/mini/{@id}.swf'
]
]
);
AthenaTennos Using the extension's own bootstrap as a template, here's what I'd use:
namespace AthenaTennos\Tucao;
use Flarum\Event\ConfigureFormatter;
use Illuminate\Events\Dispatcher;
function subscribe(Dispatcher $events)
{
$events->listen(
ConfigureFormatter::class,
function (ConfigureFormatter $event)
{
$event->configurator->MediaEmbed->add(
'tucao',
[
'host' => 'tucao.tv',
'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
'iframe' => ['src' => 'http://www.tucao.tv/mini/{@id}.swf']
]
);
}
);
};
return __NAMESPACE__ . '\\subscribe';
In this example I omitted the iframe's dimensions, which will default to 640 × 360. Of course if you prefer it to be smaller you can use the same dimensions as your previous example.
JoshyPHP Thank you very much. It's work!
Runs perfectly! Thanks alot.
- Edited
JoshyPHP
I have a url
and
$event->configurator->MediaEmbed->add(
'ggmaps',
[
'host' => 'google.com',
'extract' => "!www\\.google\\.com/maps/place/(?'address'[\S|\s]+)!",
'iframe' => ['src' => 'https://www.google.com/maps/place/{@address}']
]
);
but It don't work.
BinhQuang The URL you use for your iframe cannot be embedded. Google explicitly instruct your browser not to display it in an third party iframe, that's why. If you have an API key you can use the Google Maps Embed API.
- Edited
witech You should be able to make a small extension rather than edit files but it would have to run after this one. I believe that Illuminate\Events\Dispatcher::listen()
has a third optional parameter that sets the priority. Subscribe to the ConfigureFormatter
event and you'll have the original template in $event->configurator->tags['YOUTUBE']->template
. It's an object that you can read/write as a string.
If you want to manipulate the template as a DOM, grep Flarum's source for configureExternalLinks
and it'll give you an example.
current version not working in beta5