@JoshyPHP
I tried adding the following code, but only one can work, do you have any idea?
$event->configurator->MediaEmbed->add(
'music163',
[
'host' => 'music.163.com',
'extract' => "!music\\.163\\.com/#/song\\?id=(?'id'\\d+)!",
'iframe' => [
'width' => 330,
'height' => 86,
'src' => 'http://music.163.com/outchain/player?type=2&id={@id}&auto=0&height=66'
]
);
$event->configurator->MediaEmbed->add(
'music163album',
[
'host' => 'music.163.com',
'extract' => [
"!music\\.163\\.com/#/album\\?id=(?'id'\\d+)!",
"!music\\.163\\.com/#/playlist\\?id=(?'id'\\d+)!"
],
'iframe' => [
'width' => 330,
'height' => 450,
'src' => 'http://music.163.com/outchain/player?type=1&id={@id}&auto=0&height=430'
]
]
);