最近想用 emby-server + kodi 打造家庭播放平台, 在 gentoo 上面先尝试安装配置 emby-server.

首先, 使用 megacoffee 这个 overlay, 这个上面支持 systemd 前的最后版本是 media-tv/emby-server/emby-server-3.2.70.0-r1.ebuild. 但是这个 overlay 使用 mercurial, 所以使用以下命令: vim /etc/portage/package.use/layman

app-portage/layman mercurial

然后, 安装 layman

emerge layman

然后 添加 overlay

layman -f
layman -a megacoffee
layman -S

其中 Run layman -f once to update the repository list, run layman -S whenever you want to check for updates.

然后按照下面的内容, 对应添加到 package.use 中去:

# this disables libgdiplus support in mono as we don't use it
dev-lang/mono minimal

# picture format support: jpeg, png and webp are needed, everything else is optional and may depend on your photos file formats
media-gfx/imagemagick jpeg jpeg2k png webp tiff

# the q8 setting is optional and speeds up image processing, if you have other tools using imagemagick you might want to disable this
media-gfx/imagemagick q8

# these are some basic ffmpeg runtime options that should always be enabled for performance reasons
media-video/ffmpeg vdpau vpx threads

# here you should define spport for all codecs you have in your video collection!
media-video/ffmpeg aac mp3 pic theora vorbis x264 xvid webp

然后, 安装 emby-server

emerge -avND media-tv/emby-server

可以使用下面语句启动 emby-server

rc-service emby-server start

使用下面语句开机自启动 emby-server

rc-update add emby-server default

启动 emby-server 之后, 使用浏览器进行配置, 输入 http://localhost:8096/web/wizardstart.html 进入配置界面. 安装顺序配置完成之后, 使用 http://localhost:8096/web/home.html 进入主界面.

emby-server 配置好以后, 在客户端的 kodi 中也需要配置. kodi 中需要安装 emby 的插件. 安装Emby Server插件的办法: Add-ons -> Add-on browser -> Install from repository -> All repositories -> Video add-ons -> 往下翻到E开头,就会找到Emby, 然后等待安装完成即可.

标签: Gentoo

添加新评论