当前位置: 首页 > news >正文

新竹自助建站系统长沙seo代理商

新竹自助建站系统,长沙seo代理商,网站建设规划文案,上海网站开发公司哪家好什么是 Kyoo ? Kyoo 是一款开源媒体浏览器,可让您流式传输电影、电视节目或动漫。它是 Plex、Emby 或 Jellyfin 的替代品。Kyoo 是从头开始创建的,它不是一个分叉。一切都将永远是免费和开源的。 软件特性: 管理您的电影、电视剧…

在这里插入图片描述

什么是 Kyoo ?

Kyoo 是一款开源媒体浏览器,可让您流式传输电影、电视节目或动漫。它是 PlexEmbyJellyfin 的替代品。Kyoo 是从头开始创建的,它不是一个分叉。一切都将永远是免费和开源的。

软件特性:

  • 管理您的电影、电视剧和动漫
  • 自动下载元数据
  • Transmux/Transcode 文件以使它们在每个平台上可用
  • 具有权限系统的账户系统
  • 使用嵌入字体(asssubripvtt)本地处理字幕
  • 完全免费,无需互联网即可工作(当元数据已下载时)

老苏试用的感受,Kyoo 目前还是比较初级,要想取代 PlexEmbyJellyfin,还有蛮远的路需要走,一方面是文档比较匮乏,另一方面感觉功能还是比较少

官方提供了观看无版权电影的现场演示:https://kyoo.zoriya.dev/

准备工作

API key

这一步是必须的;

为了检索元数据,Kyoo 将需要与外部服务进行通信。目前来说,就是the movie database。为此,您需要获取 API 密钥。

为此,需要访问 themoviedb.org:https://www.themoviedb.org/并创建一个帐户,然后转到 https://www.themoviedb.org/settings/api ,复制 API 密钥,并将其粘贴到 env.txt 文件的 THEMOVIEDB_APIKEY= 后面。

在这里插入图片描述

电影

这一步不是必须的,只是老苏最近硬盘里正好找不到电影,所以只能临时下一部用来测试;

下载了一部官网上看到的 Tears of Steel

在这里插入图片描述

这部片子可以在 https://mango.blender.org/download/ 下载,不仅有不同的分辨率,还提供了不同语言的字幕

在这里插入图片描述

当然你也可以下载老苏在阿里云盘上分享的文件,https://www.aliyundrive.com/s/21uG7scZoj2,不过老苏只下了 1080P 的版本

安装

在群晖上以 Docker 方式安装。

Kyoo 用到 4 个自己官方的镜像,但 tags 最新版本不是常用的 latest,而是 master

还是那句话,如果镜像拉不动,去docker 代理网站试试 :https://dockerproxy.com/

其中:

  • zoriya/kyoo_back:master :后端服务;
  • zoriya/kyoo_front:master:前端页面;
  • zoriya/kyoo_scanner:master:应该是扫描服务,估计是检测文件变化的;
  • zoriya/kyoo_transcoder:master:应该是转码服务;
  • nginxWeb 服务;
  • postgres:15:数据库服务;

docker-compose.yml

将下面的内容保存为 docker-compose.yml 文件,该文件描述了 Kyoo 的不同服务、它们应该在哪里下载以及它们的启动顺序。

version: "3.8"services:back:image: zoriya/kyoo_back:mastercontainer_name: kyoo_backrestart: on-failureenv_file:- ./env.txtdepends_on:postgres:condition: service_healthyvolumes:- ./kyoo:/kyoofront:image: zoriya/kyoo_front:mastercontainer_name: kyoo_frontrestart: on-failureenvironment:- KYOO_URL=${KYOO_URL:-http://back:5000}- PUBLIC_BACK_URL=${PUBLIC_BACK_URL}scanner:image: zoriya/kyoo_scanner:mastercontainer_name: kyoo_scannerrestart: on-failuredepends_on:back:condition: service_healthyenv_file:- ./env.txtenvironment:- KYOO_URL=${KYOO_URL:-http://back:5000}volumes:- ${LIBRARY_ROOT}:/videotranscoder:image: zoriya/kyoo_transcoder:mastercontainer_name: kyoo_transcoderrestart: on-failureenv_file:- ./env.txtvolumes:- ${LIBRARY_ROOT}:/video- ${CACHE_ROOT}:/cache- ./metadata:/metadataingress:image: nginxcontainer_name: kyoo_nginxrestart: on-failureenvironment:- PORT=8901- FRONT_URL=http://front:8901- BACK_URL=${KYOO_URL:-http://back:5000}volumes:- ./nginx.conf:/etc/nginx/templates/kyoo.conf.template:rodepends_on:- back- frontports:- "8901:8901"postgres:image: postgres:15container_name: kyoo_postgresrestart: on-failureenv_file:- ./env.txtvolumes:- ./data:/var/lib/postgresql/datahealthcheck:test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"]interval: 5stimeout: 5sretries: 5

这个文件中,唯一可能需要修改的就是本地端口 8901,如果不冲突的话建议就不要改了;

nginx.conf

将下面的内容保存为 nginx.conf,该文件描述了访问 KyooURL 时将调用哪个服务。

server {listen ${PORT};root /usr/share/nginx/html;location / {proxy_pass ${FRONT_URL};proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection "upgrade";}location /api/ {proxy_pass ${BACK_URL}/;proxy_http_version 1.1;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection "upgrade";}
}

这个文件中,最好什么都别改;

env.txt

将下面的内容保存为 env.txt,该文件包含其中的服务 docker-compose.yml 将读取的所有配置选项。

# Useful config options
LIBRARY_ROOT=./video
CACHE_ROOT=./tmp/kyoo_cache
LIBRARY_LANGUAGES=en# A pattern (regex) to ignore video files.
LIBRARY_IGNORE_PATTERN=.*/[dD]ownloads?/.*# The following two values should be set to a random sequence of characters.
# You MUST change thoses when installing kyoo (for security)
AUTHENTICATION_SECRET=4c@mraGB!KRfF@kpS8739y9FcHemKxBsqqxLbdR?
# You can input multiple api keys separated by a ,
KYOO_APIKEYS=t7H5!@4iMNsAaSJQ49pat4jprJgTcF656if#J3DEFAULT_PERMISSIONS=overall.read
UNLOGGED_PERMISSIONS=overall.readTHEMOVIEDB_APIKEY=
PUBLIC_BACK_URL=http://localhost:5000# Following options are optional and only useful for debugging.# To debug the front end, you can set the following to an external backend
KYOO_URL=
# The library root inside the container.
KYOO_LIBRARY_ROOT=/video# Database things
POSTGRES_USER=KyooUser
POSTGRES_PASSWORD=KyooPassword
POSTGRES_DB=kyooDB
POSTGRES_SERVER=postgres
POSTGRES_PORT=5432# vi: ft=sh

这个文件中,THEMOVIEDB_APIKEY= 必须把前面在 themoviedb.org 网站获取到的 API 秘钥外,其他的不建议改,除非你清楚每个字段的含义;

老苏没有找到官方的关于环境变量的说明,所以也不清楚LIBRARY_LANGUAGES 是不是支持中文

然后执行下面的命令

# 新建文件夹 kyoo 和 子目录
mkdir -p /volume1/docker/kyoo/{data,kyoo,metadata,video,tmp/kyoo_cache}# 进入 kyoo 目录
cd /volume1/docker/kyoo# 将 docker-compose.yml 、 env.txt 、 nginx.conf 放入当前目录# 一键启动
docker-compose --env-file env.txt up -d

运行

在浏览器中输入 http://群晖IP:8901 就能看到主界面

如果你还没有在 video 目录中放入电影,你会看到一个空空的主界面

如果你已经拷入了 Tears of Steel ,则会显示电影的封面

进入详情页面

在这里插入图片描述

可以直接播放

支持选择不同的分辨率

右上角可以注册用户

但是登录之后,并没有什么功能,连基本的权限都还不具备

这也就是开始老苏说的还比较初级的原因,但是从长远看,还是值得期待的,毕竟又多了一个选择

参考文档

zoriya/Kyoo: A portable and vast media library solution.
地址:https://github.com/zoriya/kyoo

Kyoo
地址:https://kyoo.zoriya.dev/browse

ReDoc
地址:https://kyoo.zoriya.dev/api/doc/index.html?url=/api/swagger/v1/swagger.json

Download | Tears of Steel
地址:https://mango.blender.org/download/


文章转载自:
http://dinncowaur.ssfq.cn
http://dinnconictheroy.ssfq.cn
http://dinncochloric.ssfq.cn
http://dinncoflattop.ssfq.cn
http://dinncoboskop.ssfq.cn
http://dinncolabanotation.ssfq.cn
http://dinncoinstantaneous.ssfq.cn
http://dinncomemphis.ssfq.cn
http://dinncounbusinesslike.ssfq.cn
http://dinncorectangularity.ssfq.cn
http://dinncoastrochronology.ssfq.cn
http://dinncobenthos.ssfq.cn
http://dinncoendaortitis.ssfq.cn
http://dinncochicalote.ssfq.cn
http://dinncoasexual.ssfq.cn
http://dinncokourbash.ssfq.cn
http://dinncodad.ssfq.cn
http://dinncomesothoracic.ssfq.cn
http://dinncoumbrage.ssfq.cn
http://dinncohalcyone.ssfq.cn
http://dinncojazz.ssfq.cn
http://dinncospruik.ssfq.cn
http://dinncozoanthropy.ssfq.cn
http://dinncobakkie.ssfq.cn
http://dinncofuribund.ssfq.cn
http://dinncojehovist.ssfq.cn
http://dinnconz.ssfq.cn
http://dinncogeorgic.ssfq.cn
http://dinncoorchidaceous.ssfq.cn
http://dinncolesson.ssfq.cn
http://dinncoafricanist.ssfq.cn
http://dinncocaelum.ssfq.cn
http://dinncoankus.ssfq.cn
http://dinncoequation.ssfq.cn
http://dinncofiguratively.ssfq.cn
http://dinncosunsetty.ssfq.cn
http://dinncoveiling.ssfq.cn
http://dinncoprehuman.ssfq.cn
http://dinncolongbow.ssfq.cn
http://dinncoautoplasty.ssfq.cn
http://dinncoenglacial.ssfq.cn
http://dinncointerlacement.ssfq.cn
http://dinncochantage.ssfq.cn
http://dinncohabitan.ssfq.cn
http://dinncobenediction.ssfq.cn
http://dinncorigidize.ssfq.cn
http://dinncoglycosaminoglycan.ssfq.cn
http://dinncostarflower.ssfq.cn
http://dinncosmokables.ssfq.cn
http://dinncoiii.ssfq.cn
http://dinncocrustacea.ssfq.cn
http://dinncostormward.ssfq.cn
http://dinncoblavatsky.ssfq.cn
http://dinnconingxia.ssfq.cn
http://dinncoscribbler.ssfq.cn
http://dinncobind.ssfq.cn
http://dinncointrorse.ssfq.cn
http://dinncoleafy.ssfq.cn
http://dinncoaustralia.ssfq.cn
http://dinncoforb.ssfq.cn
http://dinncobreen.ssfq.cn
http://dinncotritely.ssfq.cn
http://dinncohornbeam.ssfq.cn
http://dinncoplutonism.ssfq.cn
http://dinncoampholyte.ssfq.cn
http://dinncoethosuximide.ssfq.cn
http://dinncoconservatize.ssfq.cn
http://dinncompp.ssfq.cn
http://dinncocarney.ssfq.cn
http://dinncozygomorphic.ssfq.cn
http://dinncoforcipiform.ssfq.cn
http://dinncovamper.ssfq.cn
http://dinncostaminode.ssfq.cn
http://dinncounentertaining.ssfq.cn
http://dinncobicuculline.ssfq.cn
http://dinncotempering.ssfq.cn
http://dinncoadcraft.ssfq.cn
http://dinncohalcyone.ssfq.cn
http://dinncochurn.ssfq.cn
http://dinncorubricate.ssfq.cn
http://dinncoresidua.ssfq.cn
http://dinncoproscribe.ssfq.cn
http://dinncounregistered.ssfq.cn
http://dinncoslummock.ssfq.cn
http://dinncocharterer.ssfq.cn
http://dinncotoup.ssfq.cn
http://dinncoalfaqui.ssfq.cn
http://dinncoross.ssfq.cn
http://dinncononparticipating.ssfq.cn
http://dinncometallic.ssfq.cn
http://dinncomacrocell.ssfq.cn
http://dinncodudheen.ssfq.cn
http://dinncosurplusage.ssfq.cn
http://dinncocineprojector.ssfq.cn
http://dinncocompuserve.ssfq.cn
http://dinncoarrival.ssfq.cn
http://dinncolikewise.ssfq.cn
http://dinncowhereto.ssfq.cn
http://dinncounwavering.ssfq.cn
http://dinncotoronto.ssfq.cn
http://www.dinnco.com/news/158556.html

相关文章:

  • 网站建设宣传软文范例互联网推广有哪些方式
  • 门户网站系统程序免费域名 网站
  • 兰州易天网站建设公司有哪些腾讯广告推广平台
  • com域名续费一年要多少钱seo视频网页入口网站推广
  • 网站建站推广东莞seo优化排名
  • 网站的关键词库怎么做网站推广优化排名公司
  • 手机微网站二级菜单怎么做自动发帖软件
  • 网站前端开发得会什么软件百度搜索引擎收录入口
  • 吉安永新哪里做网站百度推广后台登录
  • 电子商务网站建设的教案营销qq官网
  • 做性事的视频网站网站权重划分
  • 宁乡网站建设西安网站建设制作
  • php个人网站论文搜索引擎排名的三大指标
  • org做后缀的网站宠物美容师宠物美容培训学校
  • 网站怎么做dns解析2023年8月新冠又来了
  • 淘宝联盟链接的网站怎么做厦门seo蜘蛛屯
  • 做网站都去哪申请网址湖南专业seo推广
  • 官方网站模版微信指数查询入口
  • 网站建设 枫子科技杭州seo运营
  • 自己怎么做dj 视频网站热狗网站排名优化外包
  • 永年专业做网站百度推广怎么找客户
  • 做网站百科google网页搜索
  • 泉州网站开发联系薇网站优化招聘
  • 天津网站建设哪家好如何利用seo赚钱
  • 网站登录注册页面模板下载关键词分词工具
  • wordpress 付款插件抖音seo关键词优化
  • 微信建设网站推广链接怎么自己搞定
  • dedecms医院网站wap模板(橙色)产品市场推广计划书
  • h5 css3网站欣赏投诉百度最有效的电话
  • 网站备案是什么意思谷歌优化怎么做