emby增加代理模式

This commit is contained in:
mtvpls
2026-01-09 22:42:54 +08:00
parent a41e69c387
commit f1707f8fa4
5 changed files with 58 additions and 23 deletions
+2
View File
@@ -22,6 +22,7 @@ interface EmbySourceConfig {
removeEmbyPrefix?: boolean;
appendMediaSourceId?: boolean;
transcodeMp4?: boolean;
proxyPlay?: boolean; // 视频播放代理开关
}
class EmbyManager {
@@ -182,6 +183,7 @@ export function migrateEmbyConfig(config: AdminConfig): AdminConfig {
removeEmbyPrefix: false,
appendMediaSourceId: false,
transcodeMp4: false,
proxyPlay: false,
}],
};
}