MediawikiPlayer 扩展不适用于 3gp、mp4、mp3 扩展
MediawikiPlayer extension not working for 3gp,mp4,mp3 extension
我在我的 mediawiki 应用程序中使用这个 extension。但它播放一些文件。目前它仅适用于 webm ogv 和 youtube 视频 文件格式,但不适用于 mp4 mp3 和 flv .
这些文件的错误是
Error loading player: could not load player configuration
这是我的嵌入代码
webm
<mediaplayer mode="packed">File:Small.webm</mediaplayer>
ogv
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.ogv</mediaplayer>
mp4
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.mp4</mediaplayer>
flv
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.flv</mediaplayer>
audio
<mp3player>File:Pakeezah2(www.songs.pk).mp3</mp3player>
我也试过在Localsetting.php
中添加配置
$wgMWPlayerConfig = array(
'MyCustomConfig' => array ( 'width' => '900',
'height' => '300',
'allowfullscreen' => 'false',
'backcolor' => 'cccccc',
),
'AnotherConfig' => array ( 'width' => '600',
'height' => '400',
'allowfullscreen' => 'true',
'backcolor' => '000000',
)
);
$wgMWPlayerDefaultSettings = array(
'width' => '400',
'height' => '300',
'allowfullscreen' => 'true',
'backcolor' => 'eeeeee',
);
好的,伙计们,这是解决方案。我找到了 here
步骤 1. 从 midia-player-viral 下载文件并解压缩。
步骤 2. 从 midiaplayer 下载配置文件
解压重命名为mediaplayer。
第 3 步。将第 1 步中的所有文件粘贴到 mediaplayer 文件夹中(第 2 步)
步骤 4. 将 mediaplayer 文件夹放在 /extension 文件夹中
步骤 5. 在本地设置中添加
require_once( "$IP/extensions/MediawikiPlayer/MediawikiPlayer.php" );
第 6 步。使用语法 File:xyz.mp4
我在我的 mediawiki 应用程序中使用这个 extension。但它播放一些文件。目前它仅适用于 webm ogv 和 youtube 视频 文件格式,但不适用于 mp4 mp3 和 flv .
这些文件的错误是
Error loading player: could not load player configuration
这是我的嵌入代码
webm
<mediaplayer mode="packed">File:Small.webm</mediaplayer>
ogv
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.ogv</mediaplayer>
mp4
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.mp4</mediaplayer>
flv
<mediaplayer mode="packed">http://techslides.com/demos/sample-videos/small.flv</mediaplayer>
audio
<mp3player>File:Pakeezah2(www.songs.pk).mp3</mp3player>
我也试过在Localsetting.php
$wgMWPlayerConfig = array(
'MyCustomConfig' => array ( 'width' => '900',
'height' => '300',
'allowfullscreen' => 'false',
'backcolor' => 'cccccc',
),
'AnotherConfig' => array ( 'width' => '600',
'height' => '400',
'allowfullscreen' => 'true',
'backcolor' => '000000',
)
);
$wgMWPlayerDefaultSettings = array(
'width' => '400',
'height' => '300',
'allowfullscreen' => 'true',
'backcolor' => 'eeeeee',
);
好的,伙计们,这是解决方案。我找到了 here
步骤 1. 从 midia-player-viral 下载文件并解压缩。
步骤 2. 从 midiaplayer 下载配置文件
解压重命名为mediaplayer。
第 3 步。将第 1 步中的所有文件粘贴到 mediaplayer 文件夹中(第 2 步)
步骤 4. 将 mediaplayer 文件夹放在 /extension 文件夹中
步骤 5. 在本地设置中添加
require_once( "$IP/extensions/MediawikiPlayer/MediawikiPlayer.php" );
第 6 步。使用语法 File:xyz.mp4