├── .github └── workflows │ └── sync.yml ├── .gitignore ├── IDM └── Internet Download Manager.exe ├── README.md ├── images ├── 403错误.png ├── Aria1.png ├── AriaS1.png ├── AriaS2.png ├── AriaS3.png ├── IDM1.png ├── IDM2.png ├── IDM3.png ├── IDM4.png ├── KinhDown.png ├── KinhDown2.png ├── Motrix.png ├── Motrix2.png ├── Motrix3.png ├── ShuMa-IDM.gif ├── 手动安装教程.png ├── 解析失败.png └── 重新登陆错误.png └── js └── Shuma.user.js /.github/workflows/sync.yml: -------------------------------------------------------------------------------- 1 | # 通过 Github actions, 在 Github 仓库的每一次 commit 后自动同步到 Gitee 上 2 | name: sync 3 | on: 4 | push: 5 | branches: 6 | - master 7 | jobs: 8 | repo-sync: 9 | env: 10 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 11 | dst_token: ${{ secrets.GITEE_TOKEN }} 12 | gitee_user: ${{ secrets.GITEE_USER }} 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | with: 17 | persist-credentials: false 18 | 19 | - name: sync github -> gitee 20 | uses: Yikun/hub-mirror-action@master 21 | if: env.dst_key && env.dst_token && env.gitee_user 22 | with: 23 | # 必选,需要同步的 Github 用户(源) 24 | src: 'github/${{ github.repository_owner }}' 25 | # 必选,需要同步到的 Gitee 用户(目的) 26 | dst: 'gitee/${{ secrets.GITEE_USER }}' 27 | # 必选,Gitee公钥对应的私钥,https://gitee.com/profile/sshkeys 28 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 29 | # 必选,Gitee对应的用于创建仓库的token,https://gitee.com/profile/personal_access_tokens 30 | dst_token: ${{ secrets.GITEE_TOKEN }} 31 | # 如果是组织,指定组织即可,默认为用户 user 32 | # account_type: org 33 | # 直接取当前项目的仓库名 34 | static_list: ${{ github.event.repository.name }} 35 | # 还有黑、白名单,静态名单机制,可以用于更新某些指定库 36 | # static_list: 'repo_name,repo_name2' 37 | # black_list: 'repo_name,repo_name2' 38 | # white_list: 'repo_name,repo_name2' 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | # 基于编辑器的 HTTP 客户端请求 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | /.idea -------------------------------------------------------------------------------- /IDM/Internet Download Manager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/IDM/Internet Download Manager.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 百度网盘解析教程 2 | ```diff 3 | + 本教程有一定难度,看不懂中文的请绕道 4 | - 本教程有一定难度,看不懂中文的请绕道 5 | ``` 6 | ```json 7 | 若脚本被举报下线,请采用手动安装 8 | ``` 9 | 数码小站官网同样有教程[点击跳转数码小站主页](https://www.shuma.ink/zh-cn/install.html) 10 | ## 安装教程 11 | - 新软件[antdownload](https://lovekevin.top/%E5%90%84%E7%A7%8D%E8%BD%AF%E4%BB%B6%E5%B7%A5%E5%85%B7/antdownload.zip),下载即用 12 | - 第一步,安装油猴插件:[Tampermonkey](https://www.tampermonkey.net) 13 | - 第二步,安装数码小站脚本:[数码小站](https://scriptcat.org/script-show-page/164) 14 | - 新脚本[派派助手](https://greasyfork.org/zh-CN/scripts/438022)无需关注公众号即可使用,方法一致 15 | - 若第二步无法安装,请[点击此处安装](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/js/Shuma.user.js) 16 | 17 | - 暴力猴可能存在卡密一直查询中的问题 18 | - 也可以使用[KinhDown客户端](https://kinhdown.com),可批量下载 19 | - 群文件提供数码小站客户端,无需卡密即可下载,交流 QQ 群:413834410数码小站语言艺术交流 20 | ### 1. Windows 21 | #### IDM:[点击下载](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/IDM/Internet%20Download%20Manager.exe) 22 | - 动图: 23 | 24 | 25 | 26 | - 静图 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | - 以防止被拉黑限速,请设置线程为4 35 | 36 | 37 | 38 | ##### 错误解决: 39 | ```json 40 | - 403:请重新解析,复制UA后粘贴到IDM中。 41 | ``` 42 | 43 | 44 | ```json 45 | - 重新登陆:右上角重新登陆百度网盘。 46 | ``` 47 | 48 | 49 | ```json 50 | - 解析失败 等待修复,服务器出问题了,等待修复。 51 | ``` 52 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/%E8%A7%A3%E6%9E%90%E5%A4%B1%E8%B4%A5.png) 53 | 54 | ```json 55 | - IDM安装后未创建桌面图标的,开始菜单自己找。 56 | ``` 57 | 58 | #### Aria2NG:[点击下载](http://aria2.baisheng999.com/) 59 | 60 | - 双击Aria2NG打开软件,此时会自动弹出网页管理页面,点击解析,解析后出现发送到Aria按钮,点击会发送到Aria下载,也可通过[脚本配置](http://settings.shuma.ink)修改保存目录。 61 | 62 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Aria1.png) 63 | 64 | #### Motrix:[点击下载](https://motrix.app) 65 | ##### 方法一 66 | - 使用方法同IDM,设置UA后复制直链新建任务下载。 67 | 68 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix.png) 69 | 70 | ##### 方法二 71 | - 也可通过修改脚本配置端口6800为16800后,点击发送到Aria后会发送到Motrix下载,此时下载目录为[脚本配置](http://settings.shuma.ink)页的目录。 72 | 73 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix2.png) 74 | 75 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix3.png) 76 | 77 | #### KinhDown:[主页](https://kinhdown.com) 78 | 79 | - 底部传输管理,然后顶部选择数码小站 80 | 81 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/KinhDown.png) 82 | 83 | - 中途提示卡密流量不够,打开Configure.ini,将新获取的卡密填入以下位置 84 | 85 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/KinhDown2.png) 86 | 87 | #### NDM:[点击下载](http://www.neatdownloadmanager.com/index.php) 88 | 89 | - 使用方法同IDM,设置UA后复制直链新建任务下载。 90 | 91 | ### 2. Mac 92 | 93 | - Mac我使用的是微软Edge浏览器[点击下载](https://www.microsoft.com/zh-cn/edge#platform)。 94 | 95 | #### NDM:[点击下载](http://www.neatdownloadmanager.com/index.php) 96 | 97 | - 使用方法同IDM,设置UA后复制直链新建任务下载。 98 | 99 | #### Motrix:[点击下载](https://motrix.app) 100 | ##### 方法一 101 | - 使用方法同IDM,设置UA后复制直链新建任务下载。 102 | 103 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix.png) 104 | 105 | ##### 方法二 106 | - 也可通过修改脚本配置端口6800为16800后,点击发送到Aria后会发送到Motrix下载,此时下载目录为[脚本配置](http://settings.shuma.ink)页的目录。 107 | 108 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix2.png) 109 | 110 | ![Motrix](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/Motrix3.png) 111 | 112 | ### 3. 手机 113 | 114 | #### Aria2NG:[点击下载](https://gitee.com/LoveGlaze/BaiduNetdiskTools/attach_files/860266/download/AriaNg%20GUI%20-%20KinhDown.apk) 115 | 116 | - 下载完毕后打开软件前往解析地址解析,也可以手动打开解析地址:https://baidu.kinh.cc 117 | 118 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/AriaS1.png)![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/AriaS2.png) 119 | 120 | ![](https://gitee.com/LoveGlaze/BaiduNetdiskTools/raw/master/images/AriaS3.png) 121 | 122 | ### 4. Linux 123 | 124 | #### Motrix:[点击下载](https://motrix.app) 125 | 126 | #### Aria2NG:[点击下载](http://aria2.baisheng999.com/) 127 | 128 | 129 | -------------------------------------------------------------------------------- /images/403错误.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/403错误.png -------------------------------------------------------------------------------- /images/Aria1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/Aria1.png -------------------------------------------------------------------------------- /images/AriaS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/AriaS1.png -------------------------------------------------------------------------------- /images/AriaS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/AriaS2.png -------------------------------------------------------------------------------- /images/AriaS3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/AriaS3.png -------------------------------------------------------------------------------- /images/IDM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/IDM1.png -------------------------------------------------------------------------------- /images/IDM2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/IDM2.png -------------------------------------------------------------------------------- /images/IDM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/IDM3.png -------------------------------------------------------------------------------- /images/IDM4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/IDM4.png -------------------------------------------------------------------------------- /images/KinhDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/KinhDown.png -------------------------------------------------------------------------------- /images/KinhDown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/KinhDown2.png -------------------------------------------------------------------------------- /images/Motrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/Motrix.png -------------------------------------------------------------------------------- /images/Motrix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/Motrix2.png -------------------------------------------------------------------------------- /images/Motrix3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/Motrix3.png -------------------------------------------------------------------------------- /images/ShuMa-IDM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/ShuMa-IDM.gif -------------------------------------------------------------------------------- /images/手动安装教程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/手动安装教程.png -------------------------------------------------------------------------------- /images/解析失败.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/解析失败.png -------------------------------------------------------------------------------- /images/重新登陆错误.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoveGlaze/BaiduNetdiskTools/5fbee64e436b2c79fd092ccae757fd462b1a8e6d/images/重新登陆错误.png --------------------------------------------------------------------------------