Skip to content
sjtuross edited this page Feb 4, 2025 · 29 revisions

Emby神医助手

安装

  1. 下载 StrmAssistant.dll 放入配置目录中的 plugins 目录
  2. 重启Emby
  3. 至插件页面检查版本及设置

注意:

  1. Emby最低版本要求 4.8.5.0
  2. 群晖套件安装参考矿神的文章 https://imnks.com/11166.html
  3. Lite版说明看 https://github.com/sjtuross/StrmAssistant/issues/62

更新

插件通过计划任务实现自动更新,默认周期为每周随机时间点,也可以手工运行立刻更新。更新成功后会有Emby原生提示重启生效。

注意

  1. dll的权限和所有者须跟其他插件dll一致,否则自动更新可能因无写入权限而失败。
  2. 因GitHub API有限流阈值,如频繁遇到Forbidden更新错误或其他网络错误,可手工配置插件目录中的配置文件configuration\Strm Assistant.json中的如下配置项。GitHubToken用于解决更新检测遇到Forbidden的问题,至 https://github.com/settings/tokens 创建一个tokens (classic),无需任何权限。GitHubProxy用于解决一般网络问题。
"GitHubToken": "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"GitHubProxy": "https://ghproxy.cc",

日志

linux

tail -f -n 30 /你自己的路径/logs/embyserver.txt | grep 'Strm Assistant:'

win

Get-Content -Path "$env:AppData\Emby-Server\programdata\logs\embyserver.txt" -Tail 30 -Wait | Where-Object { $_ -match "Strm Assistant:" }

Purpose

  1. Improve initial playback start speed
  2. Solve potential no progress bar issue
  3. Capture image for video without poster
  4. Playback behavior-based intro and credits detection

Install

  1. Download StrmAssistant.dll to the plugins folder
  2. Restart Emby
  3. Go to the Plugins page and check the plugin version and settings

Note

Suggest removing InfuseSync plugin if installed. It might have thread-safe bug which could cause Emby to crash when media info extraction runs concurrently on some CPU platforms. For details, refer to known issue.

Clone this wiki locally