您当前位置: 首页 FPS 真的可以赚q币的软件

类型: FPS 版本: V7.2
大小: 1,886.5 时间: 2025-11-27





<?php
/*
PluginName:Smartideo
PluginURI:http://www.fengziliu.com/
Description:Smartideo是为WordPress添加对在线视频支持的一款插件(支持手机、平板等设备HTML5播放)。目前支持优酷、搜狐视频、土豆、56、腾讯视频、新浪视频、酷6、华数、乐视等网站。
Version:1.2
Author:FensLiu
AuthorURI:http://www.fengziliu.com/smartideo-for-wordpress.html
*/
define('SMARTIDEO_VERSION','1.0');
define('SMARTIDEO_URL',plugins_url('',__FILE__));
define('SMARTIDEO_PATH',dirname(__FILE__));
$smartideo=newsmartideo();
classsmartideo{
private$width='100%';
private$height='500';
private$mobile_width='100%';
private$mobile_height='250';
publicfunction__construct(){
if(is_admin()){
add_action('admin_menu',array($this,'admin_menu'));
}
$option=get_option('smartideo_option');
if(!empty($option)){
$option=json_decode($option,true);
}else{
$option=array();
}
extract($option);
if(!empty($width)){
$this->width=$width;
}
if(!empty($height)){
$this->height=$height;
}
if(!empty($mobile_width)){
$this->mobile_width=$mobile_width;
}
if(!empty($mobile_height)){
$this->mobile_height=$mobile_height;
}
wp_embed_register_handler('smartideo_tudou',
'#https?://(?:www.)?tudou.com/(?:programs/view|listplay/(?<list_id>[a-z0-9_=-]+))/(?<video_id>[a-z0-9_=-]+)#i',
array($this,'smartideo_embed_handler_tudou'));
wp_embed_register_handler('smartideo_56',
'#https?://(?:www.)?56.com/[a-z0-9]+/(?:play_album-aid-[0-9]+_vid-(?<video_id1>[a-z0-9_=-]+)|v_(?<video_id2>[a-z0-9_=-]+))#i',
array($this,'smartideo_embed_handler_56'));
wp_embed_register_handler('smartideo_youku',
'#https?://v.youku.com/v_show/id_(?<video_id>[a-z0-9_=-]+)#i',
array($this,'smartideo_embed_handler_youku'));
wp_embed_register_handler('smartideo_qq',
'#https?://v.qq.com/(?:cover/g/[a-z0-9_.]+?vid=(?<video_id1>[a-z0-9_=-]+)|(?:[a-z0-9/]+)/(?<video_id2>[a-z0-9_=-]+))#i',
array($this,'smartideo_embed_handler_qq'));
wp_embed_register_handler('smartideo_sohu',
'#https?://my.tv.sohu.com/us/(?:d+)/(?<video_id>d+)#i',
array($this,'smartideo_embed_handler_sohu'));
wp_embed_register_handler('smartideo_wasu',
'#https?://www.wasu.cn/play/show/id/(?<video_id>d+)#i',
array($this,'smartideo_embed_handler_wasu'));
wp_embed_register_handler('smartideo_yinyuetai',
'#https?://v.yinyuetai.com/video/(?<video_id>d+)#i',
array($this,'smartideo_embed_handler_yinyuetai'));
wp_embed_register_handler('smartideo_ku6',
'#https?://v.ku6.com/show/(?<video_id>[a-z0-9-_.]+).html#i',
array($this,'smartideo_embed_handler_ku6'));
wp_embed_register_handler('smartideo_letv',
'#https?://www.letv.com/ptv/vplay/(?<video_id>d+)#i',
array($this,'smartideo_embed_handler_letv'));
}
publicfunctionsmartideo_embed_handler_tudou($matches,$attr,$url,$rawattr){
if(wp_is_mobile()){
$embed=$this->get_iframe("http://www.tudou.com/programs/view/html5embed.action?type=0&code={$matches['video_id']}");
}else{
$embed=$this->get_embed("http://www.tudou.com/v/{$matches['video_id']}/&resourceId=0_05_05_99&bid=05/v.swf");
}
returnapply_filters('embed_tudou',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_56($matches,$attr,$url,$rawattr){
$matches['video_id']=$matches['video_id1']==''?$matches['video_id2']:$matches['video_id1'];
if(wp_is_mobile()){
$embed=$this->get_iframe("http://www.56.com/iframe/{$matches['video_id']}");
}else{
$embed=$this->get_embed("http://player.56.com/v_{$matches['video_id']}.swf");
}
returnapply_filters('embed_56',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_youku($matches,$attr,$url,$rawattr){
if(wp_is_mobile()){
$embed=$this->get_iframe("http://player.youku.com/embed/{$matches['video_id']}");
}else{
$embed=$this->get_embed("http://player.youku.com/player.php/sid/{$matches['video_id']}/v.swf");
}
returnapply_filters('embed_youku',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_qq($matches,$attr,$url,$rawattr){
$matches['video_id']=$matches['video_id1']==''?$matches['video_id2']:$matches['video_id1'];
if(wp_is_mobile()){
$embed=$this->get_iframe("http://v.qq.com/iframe/player.html?vid={$matches['video_id']}");
}else{
$embed=$this->get_embed("http://static.video.qq.com/TPout.swf?vid={$matches['video_id']}");
}
returnapply_filters('embed_qq',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_sohu($matches,$attr,$url,$rawattr){
if(wp_is_mobile()){
$embed=$this->get_iframe("http://tv.sohu.com/upload/static/share/share_play.html#{$matches['video_id']}_0_0_9001_0");
}else{
$embed=$this->get_embed("http://share.vrs.sohu.com/my/v.swf&topBar=1&id={$matches['video_id']}&autoplay=false&xuid=&from=page");
}
returnapply_filters('embed_sohu',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_wasu($matches,$attr,$url,$rawattr){
if(wp_is_mobile()){
$embed=$this->get_iframe("http://www.wasu.cn/Play/iframe/id/{$matches['video_id']}");
}else{
$embed=$this->get_embed("http://s.wasu.cn/portal/player/20141216/WsPlayer.swf?mode=3&vid={$matches['video_id']}&auto=0&ad=4228");
}
returnapply_filters('embed_wasu',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_yinyuetai($matches,$attr,$url,$rawattr){
$embed=$this->get_embed("http://player.yinyuetai.com/video/player/{$matches['video_id']}/v_0.swf");
returnapply_filters('embed_yinyuetai',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_ku6($matches,$attr,$url,$rawattr){
$embed=$this->get_embed("http://player.ku6.com/refer/{$matches['video_id']}/v.swf");
returnapply_filters('embed_ku6',$embed,$matches,$attr,$url,$rawattr);
}
publicfunctionsmartideo_embed_handler_letv($matches,$attr,$url,$rawattr){
$embed=$this->get_embed("http://i7.imgs.letv.com/player/swfPlayer.swf?id={$matches['video_id']}&autoplay=0");
returnapply_filters('embed_letv',$embed,$matches,$attr,$url,$rawattr);
}
privatefunctionget_embed($url){
$embed=sprintf(
'<embedsrc="%1$s"allowFullScreen="true"quality="high"width="%2$s"height="%3$s"allowScriptAccess="always"type="application/x-shockwave-flash"></embed>',
$url,$this->width,$this->height);
return$embed;
}
privatefunctionget_iframe($url){
$iframe=sprintf(
'<iframesrc="%1$s"width="%2$s"height="%3$s"frameborder="0"allowfullscreen="true"></iframe>',
$url,$this->mobile_width,$this->mobile_height);
return$iframe;
}
publicfunctionadmin_menu(){
add_plugins_page('Smartideo设置','Smartideo设置','manage_options','smartideo_settings',array($this,'admin_settings'));
}
publicfunctionadmin_settings(){
if($_POST['smartideo_submit']=='保存'){
$param=array('width','height','mobile_width','mobile_height');
$json=array();
foreach($_POSTas$key=>$val){
if(in_array($key,$param)){
$json[$key]=$val;
}
}
$json=json_encode($json);
update_option('smartideo_option',$json);
}
$option=get_option('smartideo_option');
if(!empty($option)){
$option=json_decode($option,true);
}
if(empty($option['width'])){
$option['width']='100%';
}
if(empty($option['height'])){
$option['height']='500';
}
if(empty($option['mobile_width'])){
$option['mobile_width']='100%';
}
if(empty($option['mobile_height'])){
$option['mobile_height']='250';
}
echo'<h2>Smartideo设置</h2>';
echo'<formaction=""method="post">
<tableclass="form-table">
<trvalign="top">
<thscope="row">播放器宽度</th>
<td>
<label><inputtype="text"class="regular-textcode"name="width"value="'.$option['width'].'"></label>
<br/>
<pclass="description">默认宽度为100%</p>
</td>
</tr>
<trvalign="top">
<thscope="row">播放器高度</th>
<td>
<label><inputtype="text"class="regular-textcode"name="height"value="'.$option['height'].'"></label>
<br/>
<pclass="description">默认高度为500px</p>
</td>
</tr>
<trvalign="top">
<thscope="row">移动设备播放器宽度</th>
<td>
<label><inputtype="text"class="regular-textcode"name="mobile_width"value="'.$option['mobile_width'].'"></label>
<br/>
<pclass="description">手机、平板等设备访问时,默认宽度为100%</p>
</td>
</tr>
<trvalign="top">
<thscope="row">移动设备播放器高度</th>
<td>
<label><inputtype="text"class="regular-textcode"name="mobile_height"value="'.$option['mobile_height'].'"></label>
<br/>
<pclass="description">手机、平板等设备访问时,默认高度为250px</p>
</td>
</tr>
</table>
<pclass="submit"><inputtype="submit"name="smartideo_submit"id="submit"class="button-primary"value="保存"></p>
</form>';
}
}
[WordPress插件怎样安装WordPress插件安装方法]爱游戏官方网站
在wordpress上播放在线视频要怎么设置呢?有了这款Smartideo视频插件就简单多了,它可以帮助你快速在wordpress添加在线视频,支持手机、平板的HTML5播放,它支持优酷、搜狐视频、土豆、56、腾讯视频、新浪视频、酷6、华数、乐视等热门网站的视频。
WordPress视频播放插件(Smartideo)安装方法
你可以在后台插件管理页面中直接搜索Smartideo并安装.

或者上传文件夹smartideo至/wp-content/plugins/目录.
在插件管理页面中激活Smartideo.

Smartideo插件使用方法
你可以直接粘贴视频播放也完整的URL到编辑器(单独一行),就可以加载视频播放器。
URL地址格式如下
http://v.youku.com/v_show/id_XMTYzNTgxNTMy.html
http://www.tudou.com/programs/view/YBdHhxJqrLY/
http://www.56.com/u35/v_MTEwMjM5NDcy.html
http://v.qq.com/page/o/9/f/o0142tt1m9f.html
http://v.qq.com/cover/t/tyeqdw6rof7t5ow/p0015kjlai9.html
http://my.tv.sohu.com/us/94469256/77228432.shtml
http://www.wasu.cn/Play/show/id/5079941
http://v.yinyuetai.com/video/2207109
http://v.ku6.com/show/P0Ib_pTne6-FBSa1AbtKUQ...html
http://www.letv.com/ptv/vplay/20932037.html
彩神app下载充值送2%
420.6M
这是最新、最出色的机战游戏。由SkyGamblers、BattleSupremacy和Radiation系列的作者出品!进入驾驶舱,准备起飞。解锁、升级和定制1...
宝玩推广怎么赚钱
364.9M
正统三国是三国题材的手游,玩法简单,乐趣无穷,玩家可以建立自己的的个性团队,可以招兵买马也可隐居山野,快来下载试玩吧。正统三国简介正统三国是一款经典的以三国为背...
一天赚20元的软件
1,810.7M
中期答辩PPT动态模板是一款简约清爽的ppt模板,在这里你可以好好思考你想要做的答辩,下面给大家介绍了一下论文答辩需要作哪些方面的准备,喜欢就下载吧准备讲稿讲稿...
携程推广怎么挣钱
218.1M
万古仙途红包版是一款真正能赚钱的红包手游,玩家在修仙世界中体验真实的修仙模拟,还可以领取丰厚的红包奖励,都是可以直接提现到绑定微信的,感兴趣的小伙伴快来东坡下载...
网上怎么开麻将室赚钱
912.5M
海风智学中心app是一款全面中小学辅导的在线教育应用,面向初中生、高中生,为孩子提供完整的学习体系,系统整理知识要点,提高考试成绩!海风智学中心app简介海风教...
提现最快的网贷平台
604.6M
希沃教学白板(EasiNote)是一款多媒体电子白板教学软件,具备多种学科模式及创新教学工具,提供资料检索、素材加工、思维整理、微课采编、学科教学等多种备课、授...
白山达琳水汇棋牌室
774.4M
格林豪泰app是一款格林豪泰官方推出的酒店预定软件,经常住酒店的朋友应该知道格林豪泰,通过这款手机APP,你可以预定格林豪泰旗下的所有酒店,覆盖了全国400多个...
炸金花现金棋牌透明
335.2M
星晴壁纸是一款专注于为用户提供优质手机壁纸服务的应用程序,版本为v1.0.1。它集海量精美壁纸于一身,涵盖了多种风格和主题,无论是追求简约、优雅,还是个性、创意...
橘子兼职登陆
649.6M
游戏大咖app是一个掌上游戏福利平台。游戏大咖app提供海量的手游礼包,统统都能在线免费抢,并且还有许多专属皮肤福利为你推荐。游戏大咖介绍游戏大咖app是专为众...
直播卖货截图送福利
1,213.2M
BlockKeepSwap安卓版是一款卡通风格的休闲游戏,充满了创意的玩法,画面色彩明亮,玩家需要控制一个有两种颜色的砖块进行交换,注意交换顺序,一旦错误就会失...
qq群如何变现
1,773.5M
TotallyAccurateBattleZombielator是一款非常好玩的角色扮演类游戏,游戏有着多种不同的玩法模式,有多人竞技对战玩法,有僵尸逃生感染玩...
梅花新村棋牌
1,154.1M
这款游戏是一款非常好玩的休闲吃豆游戏,在游戏中你可以不断移动角色,可以自由的进行吃豆,游戏关卡是非常之多的,游戏许多的关卡,让游戏独具特色!荔妃驾到手游介绍“一...
赚钱赚得盆
512.5M
酷链宝友情链接工具可以帮助你解放双手,省下了时间,帮你减少了网站优化的工作量,绝对可以提高不少效率,非常适合需要SEO的朋友使用,操作简单方便。功能特色:该工具...
微商化妆品代理挣钱吗
1,093.4M
手机在线拍卖客户端,通过掌拍艺术app用户可以将自己珍藏的艺术品展示出来供大家一起交流、拍卖等等,喜欢各种藏品的朋友可以来试试,说不定可以捡一大漏。掌拍艺术ap...
玩app能赚钱是真的吗
1,663.0M
一点租车(手机租车软件)是一款便捷实用的手机租车软件,现在大家出行都还是喜欢开车,越来越多的人都选择租车出行,通过一点租车能够根据自己的需要挑选合适的车型,有需...
2017滴滴赚钱方法
2025/10/02 08:58
靠谱的赚钱游戏软件
2025/09/20 04:55
手机自动刷屏赚钱
2025/09/26 20:24
三元棋牌辅助
2025/09/24 01:35
翻译兼职在哪里接单
2025/10/01 06:16
网上兼职客服哪里找
2025/09/30 06:16
网上种花挣钱
2025/09/25 15:39
兼职古筝老师深圳
2025/09/29 04:30
赚钱赚钱小游戏大全
2025/09/20 05:28
网上兼职怎么投诉举报
2025/10/01 06:00
赢乐棋牌的邀请码
2025/09/22 15:35
深圳h5棋牌官网
2025/09/21 01:24
兼职被骗钱怎么办
2025/09/30 07:45
上古世纪赚钱的职业
2025/10/05 16:35
什么路由器最好赚钱
2025/10/04 20:16
什么路由器最好赚钱
2025/10/04 20:16更新
云烟视频编辑app是一个比较不错的视频编辑工具,可以用来制作个性小视频,界面简洁,操作非常简单,绝对给你一个优质的体验,快来试试吧。云烟视频编辑app介绍云烟视...
支持 ( 76 ) 盖楼(回复)
支持 ( 66 ) 盖楼(回复)
支持 ( 57 ) 盖楼(回复)
支持 ( 44 ) 盖楼(回复)
支持 ( 87 ) 盖楼(回复)
支持 ( 77 ) 盖楼(回复)
支持 ( 178 ) 盖楼(回复)
支持 ( 199 ) 盖楼(回复)
支持 ( 165 ) 盖楼(回复)
支持 ( 126 ) 盖楼(回复)
支持 ( 104 ) 盖楼(回复)
支持 ( 6 ) 盖楼(回复)
支持 ( 103 ) 盖楼(回复)
支持 ( 80 ) 盖楼(回复)
支持 ( 69 ) 盖楼(回复)
支持 ( 30 ) 盖楼(回复)
支持 ( 189 ) 盖楼(回复)
支持 ( 193 ) 盖楼(回复)
支持 ( 17 ) 盖楼(回复)
支持 ( 69 ) 盖楼(回复)