苹果CMS如何添加视频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了苹果CMS如何添加视频相关的知识,希望对你有一定的参考价值。
参考技术A 如果不会采集视频可以参考这个教程: 苹果cms自定义资源库采集教程有些时候,我们在采集资源的时候会发现,有的资源有数据但是没有播放源。我们又在其它的非采集资源网站找到了,可是怎样放在我们自己的网站上呢?下面我教大家一下放到自己网站上的方法。
步骤一:
打开后台,进入“视频-播放器”选项,找到“外链数据”并点击“编辑”;
步骤二:
找到“目标窗口”,选择“新页”并保存;
步骤三:
依次找到“视频-视频数据”,选择自己要修改的电影,点击“编辑”;
步骤四:
找到“播放1”选项,选择“外链数据”,将你找到的链接添加到此处即可。
这样,在你点击播放的时候,页面将会打开一个新窗口,跳转到你设置的视频播放页。
方法就是这个方法,不管你换什么模板,方法都是一样的。
苹果CMS V10 整合阿里云播放器-带记忆播放
这篇整合教程加了阿里播放器的记忆功能,去除了弹幕,资源预加载等功能。
有人会说,我用ck 、dp不好吗?为啥要用aliplayer,阿里播放器的记忆功能很给力,比如手机播放页面在后台放了很久,隔了几天又打开刷下又接着播放了,ckplayer没测试过
更多插件、免费模板,可以到 苹果cms资源网 获取
第一步:
进入后台,点击顶部导航栏-视频-播放器-再点击添加
基本设置
状态:启用
编码:aliplayer,
名称:阿里播放器,
备注:aliplayer,
目标窗口,当前,
析状态:禁用,
解析接口:空,
排序:例如10,
提示:无需安装任何插件
播放器代码:
MacPlayer.Html = ‘<iframe src="‘+maccms.path+‘/static/player/aliplayer.html" width="100%" height="‘+MacPlayer.Height+‘" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>‘;
MacPlayer.Show();
保存后第二步:
进入网站根目录下/static/player/目录中,新建一个名为aliplayer.html文件 复制以下代码到这个文件中
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge" >
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<title>Aliplay记忆播放器</title>
<link rel="stylesheet" href="https://g.alicdn.com/de/prismplayer/2.8.7/skins/default/aliplayer-min.css" />
<script type="text/javascript" charset="utf-8" src="https://g.alicdn.com/de/prismplayer/2.8.7/aliplayer-min.js"></script>
<script type="text/javascript" charset="utf-8" src="https://player.alicdn.com/aliplayer/presentation/js/aliplayercomponents.min.js"></script>
<style type="text/css">
body,html{background-color:#000;padding: 0;margin: 0;width:100%;height:100%;}
#liryCN{width:100%;height:100%;padding:0;margin:0;display:block;}
</style>
</head>
<body>
<div id="liryCN" class="prism-player"></div>
<script type="text/javascript">
var player = new Aliplayer({
id: "liryCN",
"source": parent.MacPlayer.PlayUrl,
width: "100%",
height: "100%",
autoplay: true,
preload: true,
rePlay: false,
playsinline: false,
useH5Prism: false,
isLive: false,
components: [{
name: ‘MemoryPlayComponent‘,
type: AliPlayerComponent.MemoryPlayComponent,
args: [true]
}],
},
function (player) {
console.log("The player is created");
}
);
try{
//document.getElementById(‘liryCN‘).style.height = parent.MacPlayer.Height + ‘px‘;
}
catch(e){}
</script>
</body>
</html>
以上是关于苹果CMS如何添加视频的主要内容,如果未能解决你的问题,请参考以下文章