s9e/mediaembed - Embed videos and third-party content
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
jacko Yep, many extensions are going to need to be updated. Have patience, and once you see this thread updated with Beta 5 information, you should be able to update.
jacko Still works for me in beta5
Kakifrucht That's because migrations are the big change from Beta 4. For extensions that were already installed in an upgraded Beta 5 install, the migration generally doesn't need to run (it basically sets up the database to work with the extension values). So you may see some extensions that still work fine in your upgraded install, but not in a fresh install.
- Edited
Kakifrucht I installed it again using
php composer.phar require s9e/flarum-ext-mediaembed
and it is back on again! It just disappeared from my installation after the upgrade but it works after reinstalling it.