南瓜视频最近被整改,一时陷入片荒。
家里的电视机好不容易禁止升级,能用ES浏览器,挂上百度网盘,看存在里面的电影。
但是,百度网盘现在基本是磁力和BT都失效了,没办法,只能想个办法看怎么下载并上传到百度网盘了。
一、Aria2,用来下载BT和磁力文件。
安装Aria2,这个非常简单,就一个执行文件和一堆配置文件就行了。
1wget https://github.com/P3TERX/Aria2-Pro-Core/releases/download/1.35.0_2021.02.19/aria2-1.35.0-static-linux-amd64.tar.gz
2tar zxvf aria2-1.35.0-static-linux-amd64.tar.gz
3
4mkdir /root/.aria2
5cd /root/.aria2
6wget https://p3terx.github.io/aria2.conf/aria2.conf
7wget https://p3terx.github.io/aria2.conf/clean.sh
8wget https://p3terx.github.io/aria2.conf/core
9wget https://p3terx.github.io/aria2.conf/script.conf
10wget https://p3terx.github.io/aria2.conf/rclone.env
11wget https://p3terx.github.io/aria2.conf/upload.sh
12wget https://p3terx.github.io/aria2.conf/delete.sh
13wget https://p3terx.github.io/aria2.conf/dht.dat
14wget https://p3terx.github.io/aria2.conf/dht6.dat
15wget https://p3terx.github.io/aria2.conf/move.sh
16wget https://p3terx.github.io/aria2.conf/LICENSE
17touch aria2.session
注意这里是root用户运行,如果要用其他用户,修改/root/.aria2/aria2.conf里面的/root就行。
然后再造个systemctl的启动控制文件:
1cat <<EOF>>/etc/systemd/system/aria2.service
2[Unit]
3Description=aria2 Service
4After=network.target
5Wants=network.target
6
7[Service]
8Type=simple
9ExecStart=/root/aria2c --conf-path=/root/.aria2/aria2.conf
10Restart=on-failure
11# Don't restart in the case of configuration error
12RestartPreventExitStatus=23
13
14[Install]
15WantedBy=multi-user.target
16EOF
17
18systemctl daemon-reload
19systemctl start aria2
注意,如果有防火墙,注意打开以下三个端口。
1tcp 6800
2tcp 51413
3udp 51413
然后就好了,然而但是,没有任何可用界面
我们弄个界面吧,AriaNG,其实就需要一个文件,index.html
1wget https://github.com/mayswind/AriaNg/releases/download/1.2.1/AriaNg-1.2.1-AllInOne.zip
随便放到个web服务器上,然后打开配置一下
然后就能随便去下载磁力链和BT了。
然后呢,怎么传到百度云盘去呢?
继续,用BaiduPCS-Go
1wget https://github.com/qjfoidnh/BaiduPCS-Go/releases/download/v3.7.9/BaiduPCS-Go-v3.7.9-linux-amd64.zip
然后用浏览器打开pan.baidu.com,F12调试,拿到Cookie中的BDUSS值
先登录
1./BaiduPCS-Go login -bduss=xxxx
然后就可以上传了,注意,如果上传的目录名后面带/结尾,那会把目录下的东西传上去,如果不带/结尾,就上传整个目录,跟rsync的用法一样(很不错),然后去百度网盘的目录movies下就可以看到文件了。
基本上是秒传,因为你下的东西99%的机率百度已经有了:
1./BaiduPCS-Go u 爱,死亡和机器人.Love.Death.and.Robots.S02 movies
然后打开电视机上的百度网盘,就可以自由观看了。