Rat's Blog

使用PlayTube搭建私人的视频网站

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »

简介

PlayTube是一个视频分享程序,它能快速的建立一个视频上传、导入、分享的网站,具有多语言、用户管理、广告管理、视频上传、从youtubevime等网站导入视频等功能。

截图




功能

安装

环境要求:PHP >= 5.5MySQLGD LibrarymbstringcURLallow_url_fopen

这里使用宝塔面板做演示,如果你有基础的话,也可以使用其它面板或者lnmp一键包。

1、安装宝塔

#Centos系统
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh
#Ubuntu系统
wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && sudo bash install.sh
#Debian系统
wget -O install.sh http://download.bt.cn/install/install-ubuntu.sh && bash install.sh

安装完成后,进入面板安装PHPMysqlNginxphpmyadmin

2、安装程序
添加域名,然后下载程序源码,并将程序上传到网站根目录解压,源码下载:

#v1.4.1完整源码
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.1-full.zip
#增量包,升级时需要一个一个挨着解压覆盖
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.2-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.3-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.5-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.5.1-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.5-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.5.1-update.zip
https://www.moerats.com/usr/down/Playtube/playtube-v1.6-update.zip
#语言包
https://www.moerats.com/usr/down/Playtube/lang1.4.1-v1.4.2-cn.zip

#升级方法,比如v1.4.1升级到v1.4.2
将v1.4.2增量包上传至根目录,解压并直接替换根目录文件,再访问http://xx.com/update.php进行更新即可。

#v1.4.5.1开心完整版源码
https://www.moerats.com/usr/down/Playtube/playtube-v1.4.5.1-nulled.zip

#v1.6开心完整版源码,安装的时候购买代码和其他版本不一样,V1.6购买代码为:顶点网破解
https://www.moerats.com/usr/down/Playtube/playtube-v1.6-nulled.zip

再添加Nginx伪静态:

if (!-f $request_filename){
    set $rule_0 1$rule_0;
}
if (!-d $request_filename){
    set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
    rewrite ^/$ /index.php?link1=home ;
}
rewrite ^/$ /index.php?link1=home ;
rewrite ^/reset-password/([^/]+)(/|)$ /index.php?link1=reset-password&code=$1 ;
rewrite ^/confirm/(.*)/(.*)$ /index.php?link1=confirm&code=$1&email=$2 ;
rewrite ^/api/v(([0-9])([.][0-9]+))(/|)$ /api.php?v=$1 ;
rewrite ^/admin-cp$ /admincp.php ;
rewrite ^/admin-cp/(.*)$ /admincp.php?page=$1 ;
rewrite ^/admin-cdn/(.*)$ /admin-panel/$1 last;
rewrite ^/videos/category/(.*)/rss(/|)$ /index.php?link1=videos&page=category&id=$1&feed=rss ;
rewrite ^/videos/category/(.*)$ /index.php?link1=videos&page=category&id=$1 ;
rewrite ^/videos/(.*)/rss(/|)$ /index.php?link1=videos&page=$1&feed=rss ;
rewrite ^/videos/(.*)$ /index.php?link1=videos&page=$1 ;
rewrite ^/articles(/|)$ /index.php?link1=articles ;
rewrite ^/articles/category/(.*)$ /index.php?link1=articles&category_id=$1 ;
rewrite ^/articles/read/(.*)$ /index.php?link1=read&id=$1 ;
if (!-f $request_filename){
    set $rule_14 1$rule_14;
}
if (!-d $request_filename){
    set $rule_14 2$rule_14;
}
if ($rule_14 = "21"){
    rewrite ^/aj/([^/.]+)/?$ /ajax.php?type=$1&first=$2 last;
}
rewrite ^/aj/([^/.]+)/([^/.]+)/?$ /ajax.php?type=$1&first=$2 last;
rewrite ^/aj/([^/.]+)/([^/.]+)/([^/.]+)/?$ /ajax.php?type=$1&first=$2&second=$3 last;
rewrite ^/edit-video/(.*)?$ /index.php?link1=edit-video&id=$1 last;
rewrite ^/watch/([^/]+)(/|)?$ /index.php?link1=watch&id=$1 last;
rewrite ^/watch/([^/]+)/list/([^/]+)(/|)?$ /index.php?link1=watch&id=$1&list=$2 last;
rewrite ^/embed/(.*)?$ /index.php?link1=embed&id=$1 last;
rewrite ^/resend/(.*)/(.*)?$ /index.php?link1=resend&id=$1&u_id=$2 last;
rewrite ^/redirect/(.*)?$ /index.php?link1=redirect&id=$1 last;
rewrite ^/settings/(.*)/(.*)$ /index.php?link1=settings&page=$1&user=$2 ;
rewrite ^/settings/(.*)$ /index.php?link1=settings&page=$1 ;
rewrite ^/terms/([^/]+)(/|)$ /index.php?link1=terms&type=$1 ;
rewrite ^/go_pro(/|)$ /index.php?link1=go_pro ;
rewrite ^/ads(/|)$ /index.php?link1=ads ;
rewrite ^/ads/create(/|)$ /index.php?link1=create_ads ;
rewrite ^/ads/edit/(d+)(/|)$ /index.php?link1=edit_ads&id=$1 ;
rewrite ^/contact-us(/|)$ /index.php?link1=contact ;
rewrite ^/@([^/]+)(/|)$ /index.php?link1=timeline&id=$1 ;
rewrite ^/messages/(.*)$ /index.php?link1=messages&id=$1 ;
if (!-f $request_filename){
    set $rule_33 1$rule_33;
}
if (!-d $request_filename){
    set $rule_33 2$rule_33;
}
if ($rule_33 = "21"){
    rewrite ^/([^/]+)(/|)$ /index.php?link1=$1 ;
}

最后打开域名进行安装配置,授权码:nulled-by-reishi,直接使用v1.4.5.1完整版的可能不需要授权。


3、中文设置
我们通过phpmyadmin进入到数据库,找到PlayTube所使用数据库,删除langs.sql,再将语言包的langs.sql文件导入到数据库即可。

然后刷新网站会看到有右下角语言有中文的,如果选择中文后,分类显示不出来,可能是分类语言乱码,这时候我们去根目录assets/langs,将乱码的语言文件改成中文.php即可。

4、安装ffmpeg
要使用程序完整的功能,我们还需要安装ffmpeg。安装参考:使用静态ffmpeg二进制文件秒安装ffmpeg

再打开宝塔,点击左侧软件管理-PHP设置-禁用函数-删除shell_exec。最后在后台设置FFmpeg二进制文件路径为/usr/bin/ffmpeg

5、更多设置

#视频分类设置
网站目录./assets/langs/中文.php修改。
#编辑样式表
./themes/default/css,主样式文件是style.css
#添加自己的代码
想在head、body、footer标签中添加自己的代码,请在./themes/default/layout/container.html修改

差不多到这里就算安装完成了,然后更多功能自行研究吧。

最后由于最新版的Plytube没汉化,用起来可能不是很方便,如果想做视频站的,还是建议使用中文程序,可以试试开源版express-ffmpeg云转码程序→传送门