JoshyPHP I just add code in bootstrap.php
function subscribe(Dispatcher $events)
{
$events->listen(
ConfigureFormatter::class,
function (ConfigureFormatter $event)
{
$event->configurator->MediaEmbed->add(
'tvguide',
[
'host' => 'tvguide.com',
'scrape' => ['extract' => '#"embed":".*?/embed\\/(?<id>[-\w]+)#'],
'iframe' => [
'width' => 640,
'height' => 360,
'src' => '//www.tvguide.com/videos/embed/{@id}/'
]
]
);
}
);
};
but noting happened, where am i wrong