基于网盘挂载的emby服务端并实现直链播放
侧边栏壁纸
  • 累计撰写 17 篇文章
  • 累计收到 519 条评论

基于网盘挂载的emby服务端并实现直链播放

syqman
2022-06-03 / 475 评论 / 6,758 阅读 / 正在检测是否收录...
2024.4.9补充说明

随着emby版本和alist版本的更新,本文的脚本不具备一定及时性,由于这篇文章一直热度还算可以,为了使兄弟们少走弯路,有一定动手能力的,请移步作者脚本主页 emby2Alist ,聪明的朋友其实只要替换下conf.d目录下的脚本,然后按提示做修改即可,本文后续不在更新,因为笔者不玩直链好久了 😂 。

前言

  国内网盘通过rclone挂载搭建的emby服务端本身速度尚可,如果你的服务器是家里的nas,这方案算是比较合适的方案。为啥要用网盘搭建emby影视库,因为网盘提供了家里硬盘所没有的大容量,如果你的影视资源比较多的话,网盘挂载应该是你的选择。
  这里我提供了另一个思路,rclone挂载国内网盘,实现emby的直链播放,什么意思呢,即实现播放电影走的是网盘的cdn服务器,不走服务器流量,这样你播放电影不受限于家里nas的上传带宽,或者不影响vps的流量额度,此外由于是国内直链播放,速度相当的快,如果emby服务端是放在vps,vps到你家里的速度影响的只是前端的速度,即海报刷新的速度,不影响视频播放的速度。
  当然,要实现这个方案,离不开大佬的智慧结晶,我这里其实起了一个抛砖引玉的作用,贴一下群里 bpking大佬的脚本及教程,写得比较简单,适合稍微有点基础的人。我这里记录下我自己的折腾过程,本文内容可能会比较长,请做好心里准备 表情

原理

搭建 alist多种存储的目录文件列表程序 ,将需要挂载的网盘添加上去,如阿里云盘,世纪互联等,然后使用 nginx 及其 njs 模块将 emby 视频播放地址劫持到 alist 直链。

准备工作

准备一台vps,系统推荐 Debian11 ,并搭建好 emby 服务端,解决 rclone 挂载国内网盘,这里不再赘述,网上教程很多。最终访问 http://vps-ip:8096/ ,可以正常访问 emby 并正常播放视频,视为完成准备工作。

1. 安装alist并创建网盘列表

alsit 项目地址: alist项目
参照 alist文档 的安装教程,我这里采用直装版。
安装完成后,打开 http://vps-ip:5244/ ,输入密码,进入后台,选择账号-添加:

l3xtl27v.png
这边我rclone挂载的是名为 sp01 的世纪互联 sharepoint ,参考我的设置,其 中客户端ID , 客户端密钥, 刷新令牌(refresh token) 均可以在 rclone 配置中找到, sharepoint站点ID ,填你创建的site id,如果你不知道这个是什么的话,访问 获取SharePoint网站site-id
完成设置后,点击右下角的首页,进入 sp01 目录:
l3xtzhyr.png
随便点击一部电影并试试播放速度:
l3xu0xo2.png
速度不错,并且 vps 无瞬时的大流量上传的话, alist 安装完成。

2. 安装nginx

如果你的 nginx 无其他用途,仅用来反代 emby ,推荐用 前言 大佬教程里的 docker版 ,省却了很多折腾步骤,这里我决定采用安装版。要求 nginx 版本大于 1.20 ,如果你已经安装过 nginx ,可以通过以下命令查看版本:

nginx -v

版本如大于 1.20 即可,但是由于 debian 默认的 nginx 源版本往往比较低,所以我们要采用官方的安装方式: nginx官方最新版debian安装教程 。安装过程不重复了,自行参照下官网步骤。
安装njs模块

apt install nginx-module-njs

安装完成后,进入 nginx 的配置目录:

cd /etc/nginx/conf.d

创建你域名的配置,如 yourdomain.com.conf ,添加如下内容

# Load the njs script
js_path /etc/nginx/conf.d/;
js_import emby2Pan from emby.js;
#Cache images                            
proxy_cache_path /var/cache/nginx/emby levels=1:2 keys_zone=emby:100m max_size=1g inactive=30d use_temp_path=off;
proxy_cache_path /var/cache/nginx/emby/subs levels=1:2 keys_zone=embysubs:10m max_size=1g inactive=30d use_temp_path=off;
server{
    gzip on;
    listen 80;
    server_name yourdomain.com;
    # aliDrive direct stream need no-referrer
    add_header 'Referrer-Policy' 'no-referrer';
    set $emby http://127.0.0.1:8096;  #emby address
    
    # Proxy sockets traffic for jellyfin-mpv-shim and webClient
    location ~ /(socket|embywebsocket) {
        # Proxy Emby Websockets traffic
        proxy_pass $emby;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Protocol $scheme;
        proxy_set_header X-Forwarded-Host $http_host;
    }

    # Redirect the stream to njs
    location ~* /videos/(\d+)/stream {             
        js_content emby2Pan.redirect2Pan;
    }
    # for webClient download ,android is SyncService api
    location ~* /Items/(\d+)/Download {
        js_content emby2Pan.redirect2Pan;
    }

     #Cache the Subtitles
    location ~* /videos/(.*)/Subtitles {
        proxy_pass $emby;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Protocol $scheme;
        proxy_set_header X-Forwarded-Host $http_host;

        proxy_cache embysubs;
        proxy_cache_revalidate on;
        proxy_cache_lock_timeout 10s;
        proxy_cache_lock on;
        proxy_cache_valid 200 30d;
        proxy_cache_key $proxy_host$uri;
        #add_header X-Cache-Status $upstream_cache_status; # This is only to check if cache is working
    }
    
    # Cache the images
    location ~ /Items/(.*)/Images {
        proxy_pass $emby;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Protocol $scheme;
        proxy_set_header X-Forwarded-Host $http_host;

        proxy_cache emby;
        proxy_cache_revalidate on;
        proxy_cache_lock_timeout 10s;  
        proxy_cache_lock on; 
        # add_header X-Cache-Status $upstream_cache_status; # This is only to check if cache is working
    }

    location / {
        # Proxy main Emby traffic
        proxy_pass $emby;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Protocol $scheme;
        proxy_set_header X-Forwarded-Host $http_host;
        # Disable buffering when the nginx proxy gets very resource heavy upon streaming
        proxy_buffering off;
    }
}

同目录下创建 emby.js ,添加如下内容:

//查看日志: "docker logs -f -n 10 emby-nginx 2>&1  | grep js:"
async function redirect2Pan(r) {
    //下面4个设置,通常来说保持默认即可,根据实际情况修改
    const embyHost = 'http://127.0.0.1:8096'; //这里默认emby的地址是宿主机,要注意iptables给容器放行端口
    const embyMountPath = '/mnt';  // rclone 的挂载目录, 例如将od, gd挂载到/mnt目录下:  /mnt/onedrive  /mnt/gd ,那么这里就填写 /mnt  
    const alistPwd = 'alist';      //alist password
    const alistApiPath = 'http://127.0.0.1:5244/api/public/path'; //访问宿主机上5244端口的alist api, 要注意iptables给容器放行端口

    //fetch mount emby file path
    const itemId = /[\d]+/.exec(r.uri)[0];
    const mediaSourceId = r.args.MediaSourceId;
    const api_key = r.args.api_key;
    //infuse用户需要填写下面的api_key, 感谢@amwamw968
    if ((api_key === null) || (api_key === undefined)) {
        api_key = 'b19cde886a384fc097750b412345678';//这里填自己的API KEY
        r.error(`api key for Infuse: ${api_key}`);
    }

    const itemInfoUri = `${embyHost}/emby/Items/${itemId}/PlaybackInfo?api_key=${api_key}`;
    r.error(`itemInfoUri: ${itemInfoUri}`);
    const embyRes = await fetchEmbyFilePath(itemInfoUri, mediaSourceId);
    if (embyRes.startsWith('error')) {
        r.error(embyRes);
        r.return(500, embyRes);
        return;
    }
    r.error(`mount emby file path: ${embyRes}`);

    //fetch alist direct link
    const alistFilePath = embyRes.replace(embyMountPath, '');
    const alistRes = await fetchAlistPathApi(alistApiPath, alistFilePath, alistPwd);
    if (!alistRes.startsWith('error')) {
        r.error(`redirect to: ${alistRes}`);
        r.return(302, alistRes);
        return;
    }
    if (alistRes.startsWith('error401')) {
        r.error(alistRes);
        r.return(401, alistRes);
        return;
    }
    if (alistRes.startsWith('error404')) {
        const filePath = alistFilePath.substring(alistFilePath.indexOf('/', 1));
        const foldersRes = await fetchAlistPathApi(alistApiPath, '/', alistPwd);
        if (foldersRes.startsWith('error')) {
            r.error(foldersRes);
            r.return(500, foldersRes);
            return;
        }
        const folders = foldersRes.split(',').sort();
        for (let i = 0; i < folders.length; i++) {
            r.error(`try to fetch alist path from /${folders[i]}${filePath}`);
            const driverRes = await fetchAlistPathApi(alistApiPath, `/${folders[i]}${filePath}`, alistPwd);
            if (!driverRes.startsWith('error')) {
                r.error(`redirect to: ${driverRes}`);
                r.return(302, driverRes);
                return;
            }
        }
        r.error(alistRes);
        r.return(404, alistRes);
        return;
    }
    r.error(alistRes);
    r.return(500, alistRes);
    return;
}

async function fetchAlistPathApi(alistApiPath, alistFilePath, alistPwd) {
    const alistRequestBody = {
        "path": alistFilePath,
        "password": alistPwd
    }
    try {
        const response = await ngx.fetch(alistApiPath, {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json;charset=utf-8'
            },
            max_response_body_size: 65535,  
            body: JSON.stringify(alistRequestBody)
        })
        if (response.ok) {
            const result = await response.json();
            if (result === null || result === undefined) {
                return `error: alist_path_api response is null`;
            }
            if (result.message == 'success') {
                if (result.data.type == 'file') {
                    return result.data.files[0].url;
                }
                if (result.data.type == 'folder') {
                    return result.data.files.map(item => item.name).join(',');
                }
            }
            if (result.code == 401) {
                return `error401: alist_path_api ${result.message}`;
            }
            if (result.message.includes('account')) {
                return `error404: alist_path_api ${result.code} ${result.message}`;
            }
            if (result.message == 'path not found') {
                return `error404: alist_path_api ${result.message}`;
            }
            return `error: alist_path_api ${result.code} ${result.message}`;
        }
        else {
            return `error: alist_path_api ${response.status} ${response.statusText}`;
        }
    } catch (error) {
        return (`error: alist_path_api fetchAlistFiled ${error}`);
    }
}

async function fetchEmbyFilePath(itemInfoUri, mediaSourceId) {
    try {
        const res = await ngx.fetch(itemInfoUri, { max_response_body_size: 65535 });
        if (res.ok) {
            const result = await res.json();
            if (result === null || result === undefined) {
                return `error: emby_api itemInfoUri response is null`;
            }
            const mediaSource = result.MediaSources.find(m => m.Id == mediaSourceId);
            if (mediaSource === null || mediaSource === undefined) {
                return `error: emby_api mediaSourceId ${mediaSourceId} not found`;
            }
            return mediaSource.Path;
        }
        else {
            return (`error: emby_api ${res.status} ${res.statusText}`);
        }
    }
    catch (error) {
        return (`error: emby_api fetch mediaItemInfo failed,  ${error}`);
    }
}

export default { redirect2Pan };

根据注释的地方自行调整相应的配置。
修改 /etc/nginx/nginx.conf ,在首行添加如下内容:

load_module modules/ngx_http_js_module.so;

验证 nginx 配置是否问题:

nginx -c /etc/nginx/nginx.conf
nginx -t

如无报错,重启 nginx

nginx -s reload

打开上述 nginx 配置的域名,如http://yourdomain.com , 注意这里不要访问默认的 8096 端口,如果能正常访问 emby 界面, nginx 安装工作完成。

3. 验证直链播放是否成功

随机打开一部电影,验证播放、拖曳速度。
查看 nginx js 日志:

tail -f -n 10 /var/log/nginx/access.log /var/log/nginx/error.log  | grep js:

如出现以下直链地址,表示直链成功,并且此时流量不经过 vps 服务器。
l3xvie2i.png

4. 关于直链成功的一些补充说明

这里直接引用 @bpking 大哥的原话

直链播放不支持转码,转码的话只能走emby server
所以最好 在emby设置中将 播放 –> 视频 –> 互联网质量 设置为最高 ,并且将用户的转码权限关掉,确保走直链
web端各大浏览器对音频和视频编码支持情况不一,碰到不支持的情况emby会强制走转码而不会走直链 ``
3

评论 (475)

取消
  1. 头像
    翔翎
    Android · Google Chrome

    好!很棒的笔记记录!表情

    回复
  2. 头像
    青菜
    Android · Google Chrome

    学习一下,谢谢大佬

    回复
    1. 头像
      芹菜
      Windows 10 · Google Chrome
      @ 青菜

      表情学习一下~

      回复
  3. 头像
    学习小猫
    MacOS · Google Chrome

    学习一下直连。我现在都搭建完了,就是挂载不上

    回复
    1. 头像
      syqman 作者
      Windows 10 · Google Chrome
      @ 学习小猫

      挂载可以看下rclone笔记那篇的一键脚本

      回复
      1. 头像
        Android · Google Chrome
        @ syqman

        6

        回复
  4. 头像
    lazyman
    MacOS · Safari

    学习一下!!表情

    回复
  5. 头像
    Miko
    Windows 10 · Google Chrome

    感谢大佬

    回复
  6. 头像
    启明星
    Android · Google Chrome

    大佬,这个适合jellyfin么?

    回复
  7. 头像
    zuij
    Windows 10 · Google Chrome

    最近刚好需要谢谢

    回复
  8. 头像
    xyhux
    Windows 10 · Google Chrome

    来大佬这学习看看

    回复
  9. 头像
    jj
    Windows 10 · Google Chrome

    学习学习!

    回复
  10. 头像
    Cncan
    Windows 10 · Google Chrome

    研究下emby直链,感谢大神分享

    回复
  11. 头像
    shikasa
    Windows 10 · Google Chrome

    学习ing

    回复
  12. 头像
    a
    iPhone · Safari

    学习一下

    回复
  13. 头像
    do
    Windows 10 · Google Chrome

    学习一下,找下自己问题出在哪

    回复
  14. 头像
    Hazard
    Windows 10 · Google Chrome

    学习一下

    回复
  15. 头像
    lin
    Windows 10 · FireFox

    学习一下

    回复
  16. 头像
    dous
    Windows 10 · FireFox

    学习一下

    回复
  17. 头像
    白菜
    MacOS · Google Chrome

    观摩

    回复
  18. 头像
    xianxian
    iPhone · Safari

    学习下经验

    回复
  19. 头像
    1321
    Windows 10 · Google Chrome

    感谢分享

    回复
  20. 头像
    zktree
    Windows 10 · Google Chrome

    学习下表情

    回复
  21. 头像
    easn
    Windows 10 · Google Chrome

    膜拜大佬

    回复
  22. 头像
    zzzz
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  23. 头像
    1
    Windows 10 · Google Chrome

    鼠标轨迹看的难受

    回复
  24. 头像
    Seey6
    Linux · FireFox

    不错

    回复
  25. 头像
    学习三人组
    MacOS · Google Chrome

    现在被速度折磨的难受,试试您的方案

    回复
  26. 头像
    qwmush
    Windows 10 · Google Chrome

    6666666

    回复
  27. 头像
    ll22
    Windows 10 · Google Chrome

    谢谢大佬的教程

    回复
  28. 头像
    dfadf
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  29. 头像
    lnmf
    Windows 7 · Google Chrome

    学习一下,谢谢大佬

    回复
  30. 头像
    喜喜
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  31. 头像
    112
    Android · FireFox

    学习相关11

    回复
  32. 头像
    li
    MacOS · Safari

    谢谢作者的分享

    回复
  33. 头像
    xiba
    MacOS · Google Chrome

    不错的笔记,很详细,正好要用。

    回复
  34. 头像
    iyao
    Windows 10 · Google Chrome

    感谢大佬,终于不用耗费vps,希望开通捐赠表情

    回复
  35. 头像
    jo
    MacOS · Google Chrome

    好文章~

    回复
  36. 头像
    喵喵喵
    Android · Google Chrome

    本来想反代的,现在好像直链舒服一点

    回复
  37. 头像
    喜喜
    Windows 10 · Google Chrome

    巧了~感谢有你,解决我的 问题

    回复
  38. 头像
    阿斯弗
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  39. 头像
    罗布
    Windows 10 · Google Chrome

    感谢!表情

    回复
  40. 头像
    test
    Windows 10 · FireFox

    学习学习!

    回复
  41. 头像
    long
    Windows 10 · Google Chrome

    非常感谢.

    回复
  42. 头像
    abc233
    MacOS · Google Chrome

    真的可以?

    回复
  43. 头像
    皇杰斯
    Windows 10 · Google Chrome

    向大佬学习

    回复
  44. 头像
    小小飞
    MacOS · Google Chrome

    很棒的笔记

    回复
  45. 头像
    看看
    MacOS · Google Chrome

    谢谢~~~~~~~

    回复
  46. 头像
    11
    Android · Google Chrome

    感谢分享

    回复
  47. 头像
    ☆≈逍遥≈☆
    Windows 10 · Google Chrome

    回复学习一下表情

    回复
  48. 头像
    noob
    MacOS · Safari

    帮大忙了

    回复
  49. 头像
    noob
    Linux · FireFox

    学生优惠的阿里云服务器只有1M带宽,这个真的救命了

    回复
  50. 头像
    lanmao09
    Windows 10 · Google Chrome

    前来学习表情

    回复
  51. 头像
    xxx
    Windows 10 · Google Chrome

    6666

    回复
  52. 头像
    啊啊
    Windows 10 · Google Chrome

    辛苦了

    回复
  53. 头像
    mig
    Windows 10 · Google Chrome

    感谢分享!

    回复
  54. 头像
    gk4589
    MacOS · Google Chrome

    来看看怎么样

    回复
  55. 头像
    boweic
    iPhone · Safari

    学习一下

    回复
  56. 头像
    boweic
    MacOS · Google Chrome

    很棒,继续学习

    回复
  57. 头像
    nobody
    MacOS · Safari

    大佬,emby.js里的infuse api_key在哪里找,我想用infuse直链

    回复
  58. 头像
    6666666
    Windows 10 · Google Chrome

    666666666

    回复
  59. 头像
    BBK
    Windows 10 · Google Chrome

    很棒的教程 这就试试

    回复
  60. 头像
    vvx
    Windows 10 · Google Chrome

    牛逼牛逼

    回复
  61. 头像
    dean
    MacOS · Safari

    画图

    回复
  62. 头像
    boweic
    MacOS · Google Chrome

    学习学习

    回复
  63. 头像
    eureka
    Windows 10 · Google Chrome

    看一看

    回复
  64. 头像
    11
    Windows 10 · Google Chrome

    表情

    回复
  65. 头像
    sonder
    MacOS · Google Chrome

    好帅的笔记

    回复
  66. 头像
    luyi
    Windows 10 · Google Chrome

    正好需要这个

    回复
  67. 头像
    伟大哥
    Windows 10 · Google Chrome

    学习一下,正在研究哈哈哈

    回复
  68. 头像
    vector
    MacOS · Google Chrome

    好!很棒的笔记记录!表情

    回复
  69. 头像
    土豆泥
    iPhone · Safari

    学习学习表情

    回复
  70. 头像
    11111
    Windows 10 · Google Chrome

    下载链接过期

    回复
  71. 头像
    zkai
    Windows 10 · Google Chrome

    好!很棒的笔记记录

    回复
  72. 头像
    666
    Windows 10 · Google Chrome

    优秀

    回复
  73. 头像
    kufei
    iPhone · Safari

    看看怎么弄的

    回复
  74. 头像
    lucidan
    Windows 10 · Google Chrome

    学习一下

    回复
  75. 头像
    啊啊
    Windows 10 · Google Chrome

    可以

    回复
  76. 头像
    啊啊
    Windows 10 · Google Chrome

    这个方法已经失效了

    回复
  77. 头像
    阿萨
    Windows 10 · Google Chrome

    看看还能不能用

    回复
  78. 头像
    wzshjyy
    Windows 10 · Google Chrome

    666666666666666

    回复
  79. 头像
    111111
    Windows 10 · Google Chrome

    学习一下直链

    回复
  80. 头像
    xian
    Android · Google Chrome

    学习学习

    回复
  81. 头像
    hdxhcd
    Windows 10 · Google Chrome

    厉害,这就去试试

    回复
  82. 头像
    小白
    Windows 10 · FireFox

    学习一下直连.问问alist直链那里可以换成rclone serve的吗?

    回复
  83. 头像
    SakuraPY
    Windows 10 · Google Chrome

    alist v3怎么办呢,大佬?

    回复
  84. 头像
    天鱼
    Windows 10 · Google Chrome

    研究研究

    回复
  85. 头像
    试过很多次没有成功
    iPhone · Safari

    试了很多次没有成功,不知道是不是阿里网盘改策略来

    回复
  86. 头像
    好很好
    MacOS · Google Chrome

    学习

    回复
  87. 头像
    xx
    MacOS · Google Chrome

    学习一下,谢谢大佬

    回复
  88. 头像
    emilia
    Linux · Google Chrome

    来了

    回复
  89. 头像
    111
    Windows 10 · Google Chrome

    555555555555555555555

    回复
  90. 头像
    aliesz
    Windows 10 · Google Chrome

    学习到了,谢谢大佬

    回复
  91. 头像
    aliesz
    Windows 10 · Google Chrome

    大佬想问下 如果alist挂载gd或者od的话这样也能获取到alist配置的代理地址播放么

    回复
  92. 头像
    aliesz
    Windows 10 · Google Chrome

    表情

    回复
  93. 头像
    小白菜
    iPhone · Safari

    厉害了!

    回复
  94. 头像
    kaith
    Windows 10 · Google Chrome

    学习学习

    回复
  95. 头像
    ass
    Windows 10 · Google Chrome

    學一下

    回复
  96. 头像
    automan
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  97. 头像
    揽景楼
    Android · Google Chrome

    谢谢分享看看 vu

    回复
  98. 头像
    啊啊啊
    Windows 10 · Google Chrome

    谢谢分享啊

    回复
  99. 头像
    哼唧
    Windows 7 · Google Chrome

    很好的教程

    回复
  100. 头像
    Matrix
    Windows 10 · Google Chrome

    学习以下

    回复
  101. 头像
    102304768
    Android · Google Chrome

    非常受教

    回复
  102. 头像
    楠天
    Android · Google Chrome

    好!很棒的笔记记录!

    回复
  103. 头像
    楠天
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  104. 头像
    白菜
    Windows 10 · Google Chrome

    学习一下核心技术emby.js怎么实现的

    回复
  105. 头像
    wxhwz
    Windows 10 · Google Chrome

    学习以下

    回复
  106. 头像
    jarmo
    Windows 10 · FireFox

    学习一下,谢谢大佬

    回复
  107. 头像
    oowap
    iPhone · Safari

    非常好的技术文章

    回复
  108. 头像
    ntrman
    Windows 10 · Google Chrome

    hao,feichanghao

    回复
  109. 头像
    sda
    Windows 10 · Google Chrome

    学习一下

    回复
  110. 头像
    11223
    Windows 10 · Google Chrome

    啊啊啊啊啊啊

    回复
  111. 头像
    ericironwood
    Windows 10 · Google Chrome

    感谢大佬的指路,这对我真的帮助很大

    回复
  112. 头像
    thjjj
    Android · Google Chrome

    学习下

    回复
  113. 头像
    helloworld
    Windows 10 · Google Chrome

    看看行不行

    回复
  114. 头像
    thasd
    Android · Google Chrome

    学习一下

    回复
  115. 头像
    crusher
    MacOS · Safari

    这个好,最近正需要

    回复
  116. 头像
    丹丹
    Android · UC Browser

    学习一下

    回复
  117. 头像
    楠天
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  118. 头像
    thjjj
    Android · Google Chrome

    windows版本的有教程吗?

    回复
  119. 头像
    帆帆
    Windows 10 · Google Chrome

    学习一下

    回复
  120. 头像
    awd
    Windows 10 · Google Chrome

    感谢楼主!另外想问一下大佬的世纪互联是在哪买的~

    回复
  121. 头像
    楠天
    Windows 7 · Google Chrome

    好!很棒的笔记记录!

    回复
  122. 头像
    sodaer
    Windows 10 · Google Chrome

    我找了好多地方 在学习 ,只有这里有

    回复
  123. 头像
    qq人
    Windows 10 · Google Chrome

    太强了。学习学习

    回复
  124. 头像
    Juiciness5399
    MacOS · FireFox

    好!很棒的笔记记录!

    回复
  125. 头像
    rack
    Windows 10 · Google Chrome

    感谢大佬

    回复
  126. 头像
    sda
    Windows 10 · Google Chrome

    das

    回复
  127. 头像
    左←
    Android · Google Chrome

    学习了

    回复
  128. 头像
    jj
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  129. 头像
    landou
    Windows 10 · Google Chrome

    牛逼牛逼,学习试试

    回复
  130. 头像
    希希
    Windows 10 · Google Chrome

    很棒的笔记!Mark一下。硬盘不够用的时候就试一下。

    回复
  131. 头像
    br
    Windows 10 · Google Chrome

    plex是不是同理能实现?

    回复
  132. 头像
    Wilson
    MacOS · Google Chrome

    666666

    回复
  133. 头像
    YL
    Android · Google Chrome

    大佬牛逼,整起来

    回复
  134. 头像
    yl
    MacOS · Google Chrome

    学习了大佬

    回复
  135. 头像
    admin
    Windows 10 · Google Chrome

    1111

    回复
  136. 头像
    努力学习
    iPhone · Safari

    这个是值支持web播放吗?emby或者infuse支持吗

    回复
  137. 头像
    xaxa
    Windows 10 · Google Chrome

    感谢分享

    回复
  138. 头像
    sda
    Windows 10 · Google Chrome

    //查看日志: "docker logs -f -n 10 emby-nginx 2>&1 | grep js:"
    async function redirect3Pan(r) {
    //下面4个设置,通常来说保持默认即可,根据实际情况修改
    const embyHost = 'http://127.0.0.1:8096'; //这里默认emby的地址是宿主机,要注意iptables给容器放行端口
    const embyMountPath = '/'; // rclone 的挂载目录, 例如将od, gd挂载到/mnt目录下: /mnt/onedrive /mnt/gd ,那么这里就填写 /mnt
    const alistToken = ''; //alist Token
    const alistApiPath = 'http://127.0.0.1:5244/api/fs/get'; //访问宿主机上5244端口的alist api, 要注意iptables给容器放行端口

    //fetch mount emby file path
    const itemId = /[\d]+/.exec(r.uri)[0];
    const mediaSourceId = r.args.MediaSourceId;
    const api_key = r.args.api_key;
    //infuse用户需要填写下面的api_key, 感谢@amwamw968
    if ((api_key === null) || (api_key === undefined)) {
    api_key = 'b19cde886a384fc097750b412345678';//这里填自己的API KEY
    r.error(`api key for Infuse: ${api_key}`);
    }

    const itemInfoUri = `${embyHost}/emby/Items/${itemId}/PlaybackInfo?api_key=${api_key}`;
    r.error(`itemInfoUri: ${itemInfoUri}`);
    const embyRes = await fetchEmbyFilePath(itemInfoUri, mediaSourceId);
    if (embyRes.startsWith('error')) {
    r.error(embyRes);
    r.return(500, embyRes);
    return;
    }
    r.error(`mount emby file path: ${embyRes}`);
    //fetch alist direct link
    const alistFilePath = embyRes.replace(embyMountPath, '');
    const alistRes = await fetchAlistPathApi(alistApiPath, alistFilePath, alistToken);
    if (!alistRes.startsWith('error')) {
    r.error(`redirect to: ${alistRes}`);
    r.return(302, alistRes);
    return;
    }
    if (alistRes.startsWith('error401')) {
    r.error(alistRes);
    r.return(401, alistRes);
    return;
    }
    if (alistRes.startsWith('error404')) {
    const filePath = alistFilePath.substring(alistFilePath.indexOf('/', 1));
    const foldersRes = await fetchAlistPathApi(alistApiPath, '/', alistToken);
    if (foldersRes.startsWith('error')) {
    r.error(foldersRes);
    r.return(500, foldersRes);
    return;
    }
    const folders = foldersRes.split(',').sort();
    for (let i = 0; i < folders.length; i++) {
    r.error(`try to fetch alist path from /${folders[i]}${filePath}`);
    const driverRes = await fetchAlistPathApi(alistApiPath, `/${folders[i]}${filePath}`, alistToken);
    if (!driverRes.startsWith('error')) {
    r.error(`redirect to: ${driverRes}`);
    r.return(302, driverRes);
    return;
    }
    }
    r.error(alistRes);
    r.return(404, alistRes);
    return;
    }
    r.error(alistRes);
    r.return(500, alistRes);
    return;
    }

    async function fetchAlistPathApi(alistApiPath, alistFilePath, alistToken) {
    const alistRequestBody = {
    "path": alistFilePath,
    "password": ""
    }
    try {
    const response = await ngx.fetch(alistApiPath, {
    method: 'POST',
    headers: {
    'Content-Type': 'application/json;charset=utf-8',
    'Authorization': alistToken
    },
    max_response_body_size: 65535,
    body: JSON.stringify(alistRequestBody)
    })
    if (response.ok) {
    const result = await response.json();
    if (result === null || result === undefined) {
    return `error: alist_path_api response is null`;
    }
    if (result.message == 'success') {
    if (result.data.type == 2) {
    return result.data.raw_url;
    }
    else {
    return 'error502: alist_path_api type_error!'
    }
    }
    if (result.code == 401) {
    return `error401: alist_path_api ${result.message}`;
    }
    if (result.message.includes('account')) {
    return `error404: alist_path_api ${result.code} ${result.message}`;
    }
    if (result.message == 'path not found') {
    return `error404: alist_path_api ${result.message}`;
    }
    return `error: alist_path_api ${result.code} ${result.message}`;
    }
    else {
    return `error: alist_path_api ${response.status} ${response.statusText}`;
    }
    } catch (error) {
    return (`error: alist_path_api fetchAlistFiled ${error}`);
    }
    }

    async function fetchEmbyFilePath(itemInfoUri, mediaSourceId) {
    try {
    const res = await ngx.fetch(itemInfoUri, { max_response_body_size: 65535 });
    if (res.ok) {
    const result = await res.json();
    if (result === null || result === undefined) {
    return `error: emby_api itemInfoUri response is null`;
    }
    const mediaSource = result.MediaSources.find(m => m.Id == mediaSourceId);
    if (mediaSource === null || mediaSource === undefined) {
    return `error: emby_api mediaSourceId ${mediaSourceId} not found`;
    }
    return mediaSource.Path;
    }
    else {
    return (`error: emby_api ${res.status} ${res.statusText}`);
    }
    }
    catch (error) {
    return (`error: emby_api fetch mediaItemInfo failed, ${error}`);
    }
    }
    export default { redirect3Pan};
    自己稍微修改了下,适用于alist v3版本

    回复
    1. 头像
      11
      MacOS · Safari
      @ sda

      不错~

      回复
    2. 头像
      南渡
      Windows 10 · Google Chrome
      @ sda

      alistToken哪里获取?

      回复
      1. 头像
        热心网友
        MacOS · Google Chrome
        @ 南渡

        就是密码

        回复
      2. 头像
        sda
        Windows 10 · Google Chrome
        @ 南渡

        你的alist 令牌 在管理面板->设置->其他里面

        回复
  139. 头像
    11
    Windows 10 · Google Chrome

    学习一下

    回复
  140. 头像
    jkd2022
    MacOS · Safari

    学习一下,谢谢大佬

    回复
  141. 头像
    aa
    MacOS · Google Chrome

    看看

    回复
  142. 头像
    test
    Windows 10 · Google Chrome

    学习下

    回复
  143. 头像
    T
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  144. 头像
    爱你
    Windows 10 · Google Chrome

    感谢分享

    回复
  145. 头像
    试试水
    Windows 10 · Google Chrome

    学习学习,生命在于折腾

    回复
  146. 头像
    sss
    Windows 10 · Google Chrome

    最近刚好需要谢谢

    回复
  147. 头像
    小白
    Windows 10 · Google Chrome

    谢谢大佬

    回复
  148. 头像
    南渡
    Windows 10 · Google Chrome

    插个锚点

    回复
  149. 头像
    王小波
    Windows 10 · Google Chrome

    学习一下

    回复
  150. 头像
    胡思
    Windows 10 · Google Chrome

    学习一下

    回复
  151. 头像
    哈哈哈
    Windows 10 · Google Chrome

    学习学习.感谢

    回复
  152. 头像
    南渡
    Windows 10 · Google Chrome

    你好,8095端口播放,日志报错[error] 20#20: *847 js: error500: alist_path_api 401 Guest user is disabled, login please是哪里问题呢

    回复
  153. 头像
    T
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  154. 头像
    你妈死了
    MacOS · Safari

    谢谢博主

    回复
  155. 头像
    Error
    Windows 10 · Google Chrome

    谢谢大佬

    回复
  156. 头像
    老王
    Windows 10 · Google Chrome

    谢谢分享,学习一下

    回复
  157. 头像
    Windows 10 · Google Chrome

    学习一下

    回复
  158. 头像
    kuci
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  159. 头像
    1
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  160. 头像
    Niki
    Windows 10 · Google Chrome

    谢谢分享

    回复
  161. 头像
    gseekleely
    Windows 10 · Google Chrome

    好!很棒的笔记记录

    回复
  162. 头像
    zhujay
    MacOS · Google Chrome

    谢谢大佬,谢谢

    回复
  163. 头像
    cx
    MacOS · Google Chrome

    学习一下

    回复
  164. 头像
    大头
    Windows 10 · Google Chrome

    感谢大佬

    回复
  165. 头像
    aibocai
    Windows 10 · Google Chrome

    我挂载完了,看到大佬的笔记,真是不错!

    回复
  166. 头像
    匿名
    MacOS · Safari

    谢谢分享

    回复
  167. 头像
    blanco
    iPhone · Safari

    学习学习

    回复
  168. 头像
    blanco
    Windows 7 · Google Chrome

    好文章 学习学习

    回复
  169. 头像
    woaibocai
    Windows 10 · Google Chrome

    mark!学习学习

    回复
  170. 头像
    良·
    Windows 10 · Google Chrome

    学习一下

    回复
  171. 头像
    xianshiping
    Windows 10 · Google Chrome

    学习

    回复
  172. 头像
    niko
    Android · Google Chrome

    感觉有点难

    回复
  173. 头像
    Jerry
    MacOS · Google Chrome

    看看看看

    回复
  174. 头像
    dooki
    Android · Google Chrome

    感谢大佬

    回复
  175. 头像
    fanta299
    MacOS · Google Chrome

    8888888

    回复
  176. 头像
    zipl1985
    Windows 10 · FireFox

    学习一下了,谢谢

    回复
  177. 头像
    [email protected]
    MacOS · Google Chrome

    没想到还有这种操作,学习一下

    回复
  178. 头像
    dk
    Windows 10 · Google Chrome

    表情

    回复
  179. 头像
    tkxz
    Android · Google Chrome

    学习一下,感谢大佬!

    回复
  180. 头像
    msttkx
    Windows 10 · Google Chrome

    学习学习

    回复
  181. 头像
    dd
    MacOS · Google Chrome

    查看隐藏内容

    回复
  182. 头像
    学习学
    Windows 10 · Google Chrome

    学习学

    回复
  183. 头像
    帅气逼人
    Windows 10 · Google Chrome

    6666表情

    回复
  184. 头像
    xxxx
    Windows 10 · Google Chrome

    感谢分享

    回复
  185. 头像
    比吧
    Windows 10 · Google Chrome

    感谢好大哥的详细介绍

    回复
  186. 头像
    阿萨德
    Windows 10 · Google Chrome

    学习一下

    回复
  187. 头像
    比吧
    Windows 10 · Google Chrome

    头像
    xxxx
    Windows 10 · Google Chrome
    感谢分享

    回复
  188. 头像
    爱好者博客
    Windows 10 · Google Chrome

    一句话,大佬牛逼 请问plex能实现直链播放吗?

    回复
  189. 头像
    fby
    Android · Google Chrome

    表情

    回复
  190. 头像
    qi
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  191. 头像
    shan
    iPhone · Safari

    学习

    回复
  192. 头像
    裸红
    Android · Google Chrome

    宝塔安装的nginx有修改方法嘛,求教

    回复
  193. 头像
    33344
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  194. 头像
    DSD
    Windows 10 · Google Chrome

    很棒的笔记

    回复
  195. 头像
    Gabriel
    MacOS · Safari

    报错emby_api 400 Bad Request

    回复
  196. 头像
    Alot
    Android · Google Chrome

    谢谢大佬,学习了

    回复
  197. 头像
    fddd
    Windows 10 · Google Chrome

    学习一下

    回复
  198. 头像
    idn
    Windows 10 · Google Chrome

    这正是我想要的

    回复
  199. 头像
    ldad
    Windows 10 · Google Chrome

    头像
    翔翎
    Android · Google Chrome
    好!很棒的笔记记录!表情

    回复
  200. 头像
    Aaron
    MacOS · Google Chrome

    学习一下

    回复
  201. 头像
    sax
    Windows 10 · Google Chrome

    学习一下

    回复
  202. 头像
    admin@sakxkxaa
    Windows 10 · Google Chrome

    学习一下

    回复
  203. 头像
    dda
    iPhone · Safari

    感谢分享

    回复
  204. 头像
    呃呃呃
    Windows 10 · Google Chrome

    学习

    回复
  205. 头像
    ccz
    Windows 10 · Google Chrome

    这就很叼了,大佬的智慧就是NB

    回复
  206. 头像
    ALot
    Windows 10 · Google Chrome

    表情表情表情表情

    回复
  207. 头像
    huiiikl
    Windows 10 · FireFox

    ψ(`∇´)ψ

    回复
  208. 头像
    daye
    Windows 10 · Google Chrome

    感谢楼主!!!

    回复
  209. 头像
    nsnb
    Windows 10 · Google Chrome

    看一下,就看一下

    回复
  210. 头像
    111
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  211. 头像
    qi
    Windows 10 · Google Chrome

    大佬这个是什么问题呢:2023/05/02 19:27:30 [error] 27924#27924: *1668 js: error: alist_path_api fetchAlistFiled SyntaxError: Unexpected token at position 0

    回复
  212. 头像
    qinfengge
    Windows 10 · Google Chrome

    画图

    回复
  213. 头像
    谢谢
    MacOS · Safari

    谢谢作者!

    回复
  214. 头像
    来了,老铁
    Windows 10 · Google Chrome

    看看,学习一下!

    回复
  215. 头像
    tql
    MacOS · Google Chrome

    太强了

    回复
  216. 头像
    1111
    MacOS · Google Chrome

    sfsdfds

    回复
  217. 头像
    wjy
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  218. 头像
    coursing
    Windows 10 · Google Chrome

    学习!大佬愿意的话帮我,我付费搭建一个!

    回复
  219. 头像
    leo
    MacOS · Google Chrome

    前来学习一下。表情

    回复
  220. 头像
    wxy
    Android · Google Chrome

    感谢感谢

    回复
  221. 头像
    aaa
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  222. 头像
    qq
    Android · Google Chrome

    看看

    回复
  223. 头像
    alex
    Windows 10 · Google Chrome

    真不错呢

    回复
  224. 头像
    alex
    Windows 10 · Google Chrome

    很棒哦

    回复
  225. 头像
    实习
    Windows 10 · Google Chrome

    看看啊

    回复
  226. 头像
    jackma
    Windows 10 · Google Chrome

    感谢分享,楼主真是这个世界上不可多得的好人啊!表情

    回复
  227. 头像
    icaicai
    Windows 10 · Google Chrome

    棒棒

    回复
  228. 头像
    my
    Windows 10 · Google Chrome

    学习看看

    回复
  229. 头像
    啊啊
    Windows 10 · Google Chrome

    学习

    回复
  230. 头像
    ghanfc
    Windows 10 · Google Chrome

    感谢,学习一下

    回复
  231. 头像
    啊啊
    Windows 10 · Google Chrome

    ....再次学习

    回复
  232. 头像
    wxy
    Android · Google Chrome

    谢谢

    回复
  233. 头像
    william
    Windows 10 · Google Chrome

    我来学习了 谢谢分享!

    回复
  234. 头像
    William
    Windows 10 · Google Chrome

    来学习了 多谢1

    回复
  235. 头像
    路人来了
    Windows 10 · Google Chrome

    就想试试看

    回复
  236. 头像
    sodaer
    Windows 10 · Google Chrome

    学习一下哈

    回复
  237. 头像
    vfx
    Windows 10 · Google Chrome

    感谢大佬

    回复
  238. 头像
    kunba
    Windows 10 · Google Chrome

    谢谢大佬

    回复
  239. 头像
    cheney
    Windows 10 · Google Chrome

    感谢分享

    回复
  240. 头像
    wsxjh
    Android · Google Chrome

    苦笑看一下

    回复
  241. 头像
    wdsd
    Windows 10 · Google Chrome

    kdhsdhhd

    回复
  242. 头像
    alot
    Windows 10 · Google Chrome

    谢谢楼主

    回复
  243. 头像
    gk4589
    Windows 10 · Google Chrome

    老看看

    回复
  244. 头像
    tk
    iPhone · Safari

    回复学习

    回复
  245. 头像
    小白
    Windows 10 · Google Chrome

    666

    回复
  246. 头像
    纯小白
    MacOS · Google Chrome

    感谢

    回复
  247. 头像
    虎斑
    Windows 10 · Google Chrome

    好!很棒的笔记记录

    回复
  248. 头像
    CooleR
    Windows 10 · Google Chrome

    感谢分享

    回复
  249. 头像
    213
    Windows 10 · Google Chrome

    ss

    回复
  250. 头像
    咕咕
    MacOS · Google Chrome

    感谢分享

    回复
  251. 头像
    归人过客
    Android · Google Chrome

    5555555555555555

    回复
  252. 头像
    江澈
    Android · Google Chrome

    学习一下,谢谢大佬

    回复
  253. 头像
    chakra
    MacOS · Google Chrome

    学习一下直连。我现在都搭建完了,就是挂载不上

    回复
  254. 头像
    ryan
    Windows 10 · Google Chrome

    学到了

    回复
  255. 头像
    xixi
    Windows 10 · Google Chrome

    找了很久的方式,感谢楼主分享

    回复
  256. 头像
    萝卜
    Windows 10 · Google Chrome

    学习一下,谢谢分享

    回复
  257. 头像
    谈谈
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  258. 头像
    额我热温热
    Windows 10 · Google Chrome

    er儿童热帖

    回复
  259. 头像
    008
    Android · Google Chrome

    点赞

    回复
  260. 头像
    ghfanc
    Windows 10 · Google Chrome

    学习一下,

    回复
  261. 头像
    tutunihao
    Windows 10 · Google Chrome

    感谢分享!

    回复
  262. 头像
    tapivip576
    Windows 10 · Google Chrome

    试一下, 希望成功

    回复
  263. 头像
    haig233
    Windows 10 · Google Chrome

    很棒的记录,学习下

    回复
  264. 头像
    憨憨
    MacOS · Google Chrome

    学习了

    回复
  265. 头像
    小辉
    Windows 10 · Google Chrome

    还能用吗?折腾一下试试

    回复
  266. 头像
    l
    MacOS · Google Chrome

    学习一下,谢谢大佬

    回复
  267. 头像
    11
    Windows 10 · Google Chrome

    学习一下大佬

    回复
  268. 头像
    pdz
    Windows 10 · FireFox

    画图

    回复
  269. 头像
    xixiix
    Windows 10 · Google Chrome

    谢谢分享

    回复
  270. 头像
    落脚点
    Android · Google Chrome

    感谢大佬教程

    回复
  271. 头像
    13313
    Windows 10 · FireFox

    kk12131

    回复
  272. 头像
    wk
    Windows 10 · Google Chrome

    不容易,正需要这个

    回复
  273. 头像
    wk
    Windows 10 · Google Chrome

    看看这个方法能不能实现直连

    回复
  274. 头像
    123
    Windows 10 · Google Chrome

    6666

    回复
  275. 头像
    HHH哈哈
    Windows 10 · FireFox

    好!很棒的笔记记录!表情

    回复
  276. 头像
    kimmy
    MacOS · Google Chrome

    感谢大佬,试试看

    回复
  277. 头像
    表现
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  278. 头像
    古奇拉
    Windows 10 · Google Chrome

    学习一下,这个问题一直想搞清楚

    回复
  279. 头像
    123456
    Windows 10 · Google Chrome

    太好了,感谢分享!!!

    回复
  280. 头像
    123
    Android · Google Chrome

    6666

    回复
  281. 头像
    stvyu
    iPhone · Safari

    多谢分享

    回复
  282. 头像
    Bryan
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  283. 头像
    111
    Windows 10 · FireFox

    学习一下,谢谢大佬

    回复
  284. 头像
    豆腐
    MacOS · Google Chrome

    学习一下,谢谢大佬

    回复
  285. 头像
    学无止境
    Windows 10 · Google Chrome

    学习一下

    回复
  286. 头像
    test
    Windows 10 · Google Chrome

    学习一下

    回复
  287. 头像
    不蒋道理
    Android · Google Chrome

    学习学习

    回复
  288. 头像
    111
    MacOS · Safari

    坎坎坷坷

    回复
  289. 头像
    werewrwe
    Windows 10 · Google Chrome

    wqeewrewrewrwe

    回复
  290. 头像
    aasad
    Windows 10 · Google Chrome

    asdsadasd

    回复
  291. 头像
    MJJ
    Windows 10 · Google Chrome

    Kangkan

    回复
  292. 头像
    MJJ
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  293. 头像
    999aa
    Windows 10 · Google Chrome

    感谢分享,学习一下

    回复
  294. 头像
    11
    MacOS · Google Chrome

    请问有支持直链且大容量的国内网盘推荐吗?谢谢博主

    回复
  295. 头像
    苹果
    Windows 10 · Google Chrome

    支持一下

    回复
  296. 头像
    鲍茨
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  297. 头像
    none
    MacOS · Google Chrome

    不错,试试看

    回复
  298. 头像
    odd
    Windows 10 · Google Chrome

    学习下~~~~~~表情

    回复
  299. 头像
    晴天
    iPhone · Safari

    好!很棒的笔记记录!

    回复
  300. 头像
    老牛
    Windows 10 · Google Chrome

    画图

    回复
  301. 头像
    Hugehard
    Windows 10 · Google Chrome

    来了来了

    回复
  302. 头像
    haredasdas
    Windows 10 · Google Chrome

    hao1

    回复
  303. 头像
    MJJ
    Windows 10 · Google Chrome

    MJJ前来围观

    回复
  304. 头像
    神滑稽
    Windows 10 · Google Chrome

    感谢分享

    回复
  305. 头像
    adan
    Windows 10 · Google Chrome

    下次试试

    回复
  306. 头像
    Ambitious
    MacOS · Google Chrome

    学习一下

    回复
  307. 头像
    酸菜杠
    Windows 10 · Google Chrome

    很棒的笔记,学习学习

    回复
  308. 头像
    1
    Windows 10 · Google Chrome

    感谢大佬

    回复
  309. 头像
    1231
    Windows 10 · Google Chrome

    看看。。。。。。

    回复
  310. 头像
    chenling
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  311. 头像
    tasumi
    Windows 10 · Google Chrome

    学习一下

    回复
  312. 头像
    回溯
    Windows 10 · Google Chrome

    很好,一直再找这个

    回复
  313. 头像
    dyffg
    MacOS · Safari

    谢谢大佬

    回复
  314. 头像
    小深深
    iPhone · Safari

    厉害了大哥!

    回复
  315. 头像
    lovexl
    Windows 10 · Google Chrome

    太棒了

    回复
  316. 头像
    lovexl
    MacOS · Google Chrome

    太棒了,找了很久了

    回复
  317. 头像
    Zel
    Windows 10 · Google Chrome

    学习一下

    回复
  318. 头像
    thjjj
    Android · Google Chrome

    666

    回复
  319. 头像
    111
    Windows 10 · Google Chrome

    zanxanzanznaz

    回复
  320. 头像
    423热
    Windows 10 · Google Chrome

    132124人

    回复
  321. 头像
    dameng
    Windows 10 · Google Chrome

    看看

    回复
  322. 头像
    xxoo
    Windows 10 · Google Chrome

    lock

    回复
  323. 头像
    苟富贵
    Windows 10 · Google Chrome

    感谢帆帆帆帆

    回复
  324. 头像
    galaxy
    MacOS · Google Chrome

    haoye~~

    回复
  325. 头像
    12
    Windows 10 · Google Chrome

    支持 非常好的学习

    回复
  326. 头像
    y11
    Windows 10 · Google Chrome

    非常好 学习了 感谢

    回复
  327. 头像
    sora
    Windows 10 · Google Chrome

    thanks

    回复
  328. 头像
    reed
    MacOS · Google Chrome

    学习一下

    回复
  329. 头像
    s0910
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  330. 头像
    于心
    Windows 10 · Google Chrome

    学习一下

    回复
  331. 头像
    八个红米
    Windows 10 · Google Chrome

    大佬给力,谢谢

    回复
  332. 头像
    CGG
    Windows 10 · Google Chrome

    感谢大佬

    回复
  333. 头像
    gamayo8418@vinth
    MacOS · Google Chrome
    回复
  334. 头像
    wwwww
    Windows 10 · Google Chrome

    666666666666666666

    回复
  335. 头像
    EscapeU
    Windows 10 · Google Chrome

    学习学习

    回复
  336. 头像
    Alanmaster
    Windows 10 · Google Chrome

    学习一下

    回复
  337. 头像
    jexxan
    Windows 7 · Google Chrome

    感谢感谢

    回复
  338. 头像
    谢谢分享,没有成功不知道怎么讨教
    iPhone · Safari

    谢谢分享,没有成功不知道怎么讨教

    回复
  339. 头像
    路人
    MacOS · Safari

    good

    回复
  340. 头像
    test
    Windows 10 · Google Chrome

    good

    回复
  341. 头像
    xiaocao
    Windows 10 · Google Chrome

    学习一下

    回复
  342. 头像
    姜。。
    Android · Google Chrome

    路过看看

    回复
  343. 头像
    zhi
    Android · Google Chrome

    感谢分享

    回复
  344. 头像
    DD
    Windows 10 · Google Chrome

    头大了

    回复
  345. 头像
    666
    Windows 10 · FireFox

    66666666666666666

    回复
  346. 头像
    GSFA
    Windows 10 · Google Chrome

    无可奈何

    回复
  347. 头像
    lochou
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  348. 头像
    ADSu
    Windows 10 · Google Chrome

    虽然不是很懂,慢慢学慢慢看

    回复
  349. 头像
    西瓜
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  350. 头像
    去额外企鹅、
    MacOS · Safari

    好!很棒的笔记记录!

    回复
  351. 头像
    rgrg
    Windows 10 · Google Chrome

    我学学

    回复
  352. 头像
    VERYGOOD
    Windows 10 · Google Chrome

    GOOD~~~~~~~~~~~~~~~GOOD~~~~~~~~~~~~~~~~~!!!

    回复
  353. 头像
    Vienna
    Windows 10 · Google Chrome

    很棒的笔记

    回复
  354. 头像
    nobody
    MacOS · Google Chrome

    厉害

    回复
  355. 头像
    wii
    Windows 10 · Google Chrome

    谢谢

    回复
  356. 头像
    luob
    Windows 10 · Google Chrome

    感谢分享

    回复
  357. 头像
    nnnn
    Android · Google Chrome

    g感谢分享

    回复
  358. 头像
    过客
    Android · Google Chrome

    学习一下

    回复
  359. 头像
    rain
    Windows 10 · Google Chrome

    找了很久

    回复
  360. 头像
    adou
    Windows 10 · Google Chrome

    学习

    回复
  361. 头像
    萝卜
    MacOS · Google Chrome

    看看好不好用

    回复
  362. 头像
    黑咕隆咚
    Windows 10 · Google Chrome

    感谢分享

    回复
  363. 头像
    萝莉大叔
    Windows 10 · Google Chrome

    学习一下

    回复
  364. 头像
    把阿
    Android · Google Chrome

    学习一下

    回复
  365. 头像
    1
    Windows 10 · Google Chrome

    画图

    回复
  366. 头像
    tutu
    Windows 10 · Google Chrome

    感谢分享!!

    回复
  367. 头像
    1
    Windows 10 · FireFox

    试试

    回复
  368. 头像
    656457
    Windows 10 · Google Chrome

    6666666666

    回复
  369. 头像
    xxx
    MacOS · Google Chrome

    学习下

    回复
  370. 头像
    Guoweiyi
    Windows 10 · Google Chrome

    谢谢大佬

    回复
  371. 头像
    Davin
    Windows 10 · Google Chrome

    很棒

    回复
  372. 头像
    1
    MacOS · Google Chrome

    111

    回复
  373. 头像
    十三
    MacOS · Google Chrome

    想請問一下大佬,前言的docker版本的地址可以貼一個出來嗎?表情

    回复
  374. 头像
    102304768
    Android · Google Chrome

    感谢感谢,就差这个教程了

    回复
  375. 头像
    白菜
    MacOS · Safari

    66666

    回复
  376. 头像
    阿雷
    Windows 10 · Google Chrome

    谢谢

    回复
  377. 头像
    小白
    MacOS · Google Chrome

    特意来学习一下

    回复
  378. 头像
    lady
    Windows 10 · Google Chrome

    哈哈

    回复
  379. 头像
    嘿嘿
    Windows 10 · FireFox

    感谢分享

    回复
  380. 头像
    sunlion
    Windows 10 · Google Chrome

    好!很棒的笔记记录!

    回复
  381. 头像
    STSTST
    Windows 10 · Google Chrome

    学习一个

    回复
  382. 头像
    66666
    Windows 10 · Google Chrome

    6666666

    回复
  383. 头像
    Learning
    Windows 10 · Google Chrome

    感谢感谢!!!!!!!!!!!

    回复
  384. 头像
    qwa
    Windows 10 · Google Chrome

    66666

    回复
  385. 头像
    xiaomeng
    Windows 10 · Google Chrome

    那个api key是个什么东西啊,大佬

    回复
  386. 头像
    xiaomeng
    Windows 10 · Google Chrome

    大佬,我这个按照你的配置,虽然80端口能访问进去,但是依旧不是直链访问,是alist那边需要什么配置吗

    回复
  387. 头像
    柠檬
    Windows 10 · Google Chrome

    学习学习

    回复
  388. 头像
    Eddie
    Windows 10 · Google Chrome

    学习一下

    回复
  389. 头像
    122
    Windows 10 · Google Chrome

    看看内容。学习

    回复
  390. 头像
    dark
    MacOS · Google Chrome

    学习一下

    回复
  391. 头像
    abc
    Windows 10 · Google Chrome

    谢谢分享

    回复
  392. 头像
    KG
    MacOS · Google Chrome

    学习学习

    回复
  393. 头像
    小草
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  394. 头像
    哲学哈哈哈
    Android · Google Chrome

    棒👍🏻

    回复
  395. 头像
    世界加钱可及
    Windows 10 · Google Chrome

    学习学习。

    回复
  396. 头像
    1
    Windows 10 · Google Chrome

    1

    回复
  397. 头像
    tt
    MacOS · Google Chrome

    66666

    回复
  398. 头像
    guxmy
    Android · Google Chrome

    写的详细,我试试

    回复
  399. 头像
    guxmy
    Windows 10 · Google Chrome

    很好,谢谢楼主分享

    回复
  400. 头像
    Moguii
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  401. 头像
    tt
    MacOS · Google Chrome

    66666

    回复
  402. 头像
    nn
    Android · Google Chrome

    学习学习

    回复
  403. 头像
    114514
    Windows 10 · Google Chrome

    nih

    回复
  404. 头像
    lv
    Android · Google Chrome

    谢谢

    回复
  405. 头像
    lv
    Windows 10 · Google Chrome

    感谢教程

    回复
  406. 头像
    zuo
    Windows 10 · Google Chrome

    6666支持

    回复
  407. 头像
    Android · Google Chrome

    可以,试试看

    回复
  408. 头像
    4444
    Linux · Google Chrome

    444

    回复
  409. 头像
    Eddie
    Windows 10 · Google Chrome

    看看隐藏

    回复
  410. 头像
    bnmbn
    Linux · Google Chrome

    nmbbnm

    回复
  411. 头像
    巴伯
    Windows 10 · Google Chrome

    回复
  412. 头像
    可口
    MacOS · Google Chrome

    回复
  413. 头像
    aa
    Windows 10 · Google Chrome

    谢谢分享

    回复
  414. 头像
    我是小赖
    iPhone · Safari

    很好的文章

    回复
  415. 头像
    doeasy
    MacOS · Google Chrome

    学习过程是枯燥的,,

    回复
  416. 头像
    嘿嘿嘿
    iPhone · Safari

    非常好👍谢谢

    回复
  417. 头像
    aa
    Windows 10 · Google Chrome

    谢谢分享

    回复
  418. 头像
    23423
    Windows 10 · Google Chrome

    123

    回复
  419. 头像
    12312412@qq,com
    MacOS · Google Chrome

    6666

    回复
  420. 头像
    pepe
    Windows 10 · Google Chrome

    给楼主点赞

    回复
  421. 头像
    rxk
    Windows 10 · Google Chrome

    非常好!

    回复
  422. 头像
    111
    Windows 10 · Google Chrome

    回复

    回复
  423. 头像
    学习
    MacOS · Safari

    好!很棒的笔记记录!表情好!很棒的笔记记录!表情

    回复
  424. 头像
    laiquab
    Windows 10 · Google Chrome

    非常好!

    回复
  425. 头像
    aLOT
    Windows 10 · Google Chrome

    现在还能用吗

    回复
  426. 头像
    alott
    Windows 10 · Google Chrome

    怎么又看不到回复了

    回复
  427. 头像
    hojom
    Windows 10 · Google Chrome

    学习一下

    回复
  428. 头像
    wohehehehe
    MacOS · Safari

    先学习一下,刘备后用

    回复
  429. 头像
    世界加钱可及
    Windows 10 · Google Chrome

    学习学习

    回复
  430. 头像
    666
    Windows 10 · Google Chrome

    回复
  431. 头像
    asdasd
    Windows 10 · Google Chrome

    asdasdasd

    回复
  432. 头像
    MM
    Windows 10 · Google Chrome

    学习一下

    回复
  433. 头像
    M
    iPhone · Safari

    学习学习

    回复
  434. 头像
    SummerTail
    Windows 10 · Google Chrome

    感谢大佬的教程

    回复
  435. 头像
    哈哈哈
    Windows 10 · Google Chrome

    这么牛

    回复
  436. 头像
    liang
    MacOS · Google Chrome

    很好,学习一下配置

    回复
  437. 头像
    1111
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  438. 头像
    min
    MacOS · Safari

    学习了

    回复
  439. 头像
    cscs
    Windows 10 · Google Chrome

    厉害

    回复
  440. 头像
    666
    Windows 10 · Google Chrome

    好!很棒的笔记记录

    回复
  441. 头像
    菜鸟
    Windows 10 · Google Chrome

    感谢大佬

    回复
  442. 头像
    cainiao
    Windows 10 · Google Chrome

    感谢大脑

    回复
  443. 头像
    xiaowai
    MacOS · Google Chrome

    学习

    回复
  444. 头像
    SummerTail
    Windows 10 · Google Chrome

    感谢大佬

    回复
  445. 头像
    世界加钱可及
    iPhone · Safari

    再来学习学习

    回复
  446. 头像
    世界加钱可及
    Windows 10 · Google Chrome

    学习学习

    回复
  447. 头像
    771245492
    Windows 10 · Google Chrome

    正在找直链播放的教程

    回复
  448. 头像
    Cyrix
    Windows 10 · Google Chrome

    大佬牛B,但为什么我建好后nginx显示错误
    js: error: alist_path_api fetchAlistFiled Error: connect failed

    回复
  449. 头像
    GGBOND
    Android · Google Chrome

    谢谢,学习一下

    回复
  450. 头像
    sunb
    Windows 10 · Google Chrome

    学习一下~

    回复
  451. 头像
    水果捞
    Windows 10 · Google Chrome

    感谢,试下群晖能不能用

    回复
  452. 头像
    绿茶
    Windows 10 · Google Chrome

    学习一下,谢谢大佬

    回复
  453. 头像
    爱学习的后妈
    Windows 10 · Google Chrome

    好!很棒的笔记记录!表情

    回复
  454. 头像
    hed
    Windows 10 · Google Chrome

    不错啊

    回复
  455. 头像
    E
    MacOS · Google Chrome

    画图

    回复
  456. 头像
    emby小学僧
    MacOS · Safari

    学习一下,谢谢博主

    回复
  457. 头像
    emby小学生
    Windows 10 · Google Chrome

    学习学习

    回复
  458. 头像
    菠菜
    Windows 10 · Google Chrome

    学习一下!!

    回复
  459. 头像
    Nick
    MacOS · Google Chrome

    谢谢大佬

    回复
  460. 头像
    比比
    MacOS · Google Chrome

    好!很棒的笔记记录!表情

    回复
  461. 头像
    萝卜
    Windows 10 · Google Chrome

    感谢分享!!!!!

    回复
  462. 头像
    东东
    MacOS · Google Chrome

    好!很棒的笔记记录!

    回复
  463. 头像
    夸克
    Windows 10 · Google Chrome

    很好

    回复
  464. 头像
    zifeiyi
    Android · Google Chrome

    赞👍

    回复
  465. 头像
    minik
    Windows 10 · Google Chrome

    学习学习

    回复
  466. 头像
    花舞
    Windows 10 · Google Chrome

    学习一下

    回复
  467. 头像
    GGBond
    Android · Google Chrome

    学习直接链接的方法

    回复
  468. 头像
    waynesg
    MacOS · Google Chrome

    感谢分享....

    回复