├── .editorconfig ├── .github ├── renovate.json └── workflows │ ├── _meta.yaml │ ├── build.yaml │ └── publish.yaml ├── .gitignore ├── .gitmodules ├── .markdownlint.yml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── docfx.json ├── general ├── about.md ├── administration │ ├── building.md │ ├── configuration.md │ ├── hardware-acceleration.md │ ├── install │ │ └── synology.md │ ├── installing.md │ ├── migrate.md │ └── troubleshooting.md ├── clients │ ├── codec-support.md │ ├── css-customization.md │ ├── index.md │ ├── kodi.md │ ├── mopidy.md │ └── web-config.md ├── community-standards.md ├── contributing │ ├── branding.md │ ├── development.md │ ├── index.md │ ├── issues.md │ ├── release-procedure.md │ ├── source-tree.md │ └── toc.yml ├── faq.md ├── getting-help.md ├── networking │ ├── apache.md │ ├── caddy.md │ ├── dlna.md │ ├── fail2ban.md │ ├── haproxy.md │ ├── index.md │ ├── letsencrypt.md │ ├── monitoring.md │ ├── nginx.md │ ├── traefik.md │ └── traefik2.md ├── quick-start.md ├── server │ ├── devices.md │ ├── libraries.md │ ├── live-tv │ │ ├── index.md │ │ ├── post-process.md │ │ └── setup-guide.md │ ├── media │ │ ├── books.md │ │ ├── comics.md │ │ ├── external-files.md │ │ ├── internet-radio.md │ │ ├── movies.md │ │ ├── music.md │ │ └── shows.md │ ├── notifications.md │ ├── plugins │ │ ├── index.md │ │ ├── open-subtitles.md │ │ └── tvheadend.md │ ├── quick-connect.md │ ├── settings.md │ ├── storage.md │ ├── tasks.md │ ├── transcoding.md │ └── users │ │ ├── adding-managing-users.md │ │ └── index.md ├── style-guides │ ├── index.md │ ├── javascript.md │ └── toc.yml └── toc.yml ├── images ├── branding-logo-no-below.png ├── branding-logo-yes-side.png ├── custom-css-bordercolor.png ├── custom-css-consolepanel.png ├── custom-css-customcssfield.png ├── custom-css-episodepreview.png ├── custom-css-floatingnowplaying.png ├── custom-css-full-header-mod.png ├── custom-css-generalcolor.png ├── custom-css-greenwatched.png ├── custom-css-hotdog-and-catsup.png ├── custom-css-minimallogin.png ├── custom-css-nopicturecast.png ├── custom-css-normalwatched.png ├── custom-css-rightheader.png ├── custom-css-stylizedcast.png ├── custom-css-transparenttopbarenlargedtabs.png ├── custom-css-transparentwatched.png ├── favicon.png ├── header-icon.svg ├── install-synology-1.png ├── install-synology-2.png ├── install-synology-3.png ├── install-synology-4.png ├── install-synology-5.png ├── install-synology-6.png ├── install-synology-7.png ├── install-synology-8.png ├── install-synology-9.png ├── live-tv-post-process_dvr-settings.png ├── live-tv-setup-channels1.png ├── live-tv-setup-channels2.png ├── live-tv-setup-guide1.png ├── live-tv-setup-hdhr_opt1.png ├── live-tv-setup-tuner1.png ├── live-tv-setup-tuner2.png ├── live-tv-setup-tuner3.png └── live-tv-setup-tuner4.png ├── index.md ├── plugin-api ├── .gitignore └── index.md └── toc.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/_meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.github/workflows/_meta.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/README.md -------------------------------------------------------------------------------- /docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/docfx.json -------------------------------------------------------------------------------- /general/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/about.md -------------------------------------------------------------------------------- /general/administration/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/building.md -------------------------------------------------------------------------------- /general/administration/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/configuration.md -------------------------------------------------------------------------------- /general/administration/hardware-acceleration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/hardware-acceleration.md -------------------------------------------------------------------------------- /general/administration/install/synology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/install/synology.md -------------------------------------------------------------------------------- /general/administration/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/installing.md -------------------------------------------------------------------------------- /general/administration/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/migrate.md -------------------------------------------------------------------------------- /general/administration/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/administration/troubleshooting.md -------------------------------------------------------------------------------- /general/clients/codec-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/codec-support.md -------------------------------------------------------------------------------- /general/clients/css-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/css-customization.md -------------------------------------------------------------------------------- /general/clients/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/index.md -------------------------------------------------------------------------------- /general/clients/kodi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/kodi.md -------------------------------------------------------------------------------- /general/clients/mopidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/mopidy.md -------------------------------------------------------------------------------- /general/clients/web-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/clients/web-config.md -------------------------------------------------------------------------------- /general/community-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/community-standards.md -------------------------------------------------------------------------------- /general/contributing/branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/branding.md -------------------------------------------------------------------------------- /general/contributing/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/development.md -------------------------------------------------------------------------------- /general/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/index.md -------------------------------------------------------------------------------- /general/contributing/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/issues.md -------------------------------------------------------------------------------- /general/contributing/release-procedure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/release-procedure.md -------------------------------------------------------------------------------- /general/contributing/source-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/source-tree.md -------------------------------------------------------------------------------- /general/contributing/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/contributing/toc.yml -------------------------------------------------------------------------------- /general/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/faq.md -------------------------------------------------------------------------------- /general/getting-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/getting-help.md -------------------------------------------------------------------------------- /general/networking/apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/apache.md -------------------------------------------------------------------------------- /general/networking/caddy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/caddy.md -------------------------------------------------------------------------------- /general/networking/dlna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/dlna.md -------------------------------------------------------------------------------- /general/networking/fail2ban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/fail2ban.md -------------------------------------------------------------------------------- /general/networking/haproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/haproxy.md -------------------------------------------------------------------------------- /general/networking/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/index.md -------------------------------------------------------------------------------- /general/networking/letsencrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/letsencrypt.md -------------------------------------------------------------------------------- /general/networking/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/monitoring.md -------------------------------------------------------------------------------- /general/networking/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/nginx.md -------------------------------------------------------------------------------- /general/networking/traefik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/traefik.md -------------------------------------------------------------------------------- /general/networking/traefik2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/networking/traefik2.md -------------------------------------------------------------------------------- /general/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/quick-start.md -------------------------------------------------------------------------------- /general/server/devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/devices.md -------------------------------------------------------------------------------- /general/server/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/libraries.md -------------------------------------------------------------------------------- /general/server/live-tv/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/live-tv/index.md -------------------------------------------------------------------------------- /general/server/live-tv/post-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/live-tv/post-process.md -------------------------------------------------------------------------------- /general/server/live-tv/setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/live-tv/setup-guide.md -------------------------------------------------------------------------------- /general/server/media/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/books.md -------------------------------------------------------------------------------- /general/server/media/comics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/comics.md -------------------------------------------------------------------------------- /general/server/media/external-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/external-files.md -------------------------------------------------------------------------------- /general/server/media/internet-radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/internet-radio.md -------------------------------------------------------------------------------- /general/server/media/movies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/movies.md -------------------------------------------------------------------------------- /general/server/media/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/music.md -------------------------------------------------------------------------------- /general/server/media/shows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/media/shows.md -------------------------------------------------------------------------------- /general/server/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/notifications.md -------------------------------------------------------------------------------- /general/server/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/plugins/index.md -------------------------------------------------------------------------------- /general/server/plugins/open-subtitles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/plugins/open-subtitles.md -------------------------------------------------------------------------------- /general/server/plugins/tvheadend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/plugins/tvheadend.md -------------------------------------------------------------------------------- /general/server/quick-connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/quick-connect.md -------------------------------------------------------------------------------- /general/server/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/settings.md -------------------------------------------------------------------------------- /general/server/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/storage.md -------------------------------------------------------------------------------- /general/server/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/tasks.md -------------------------------------------------------------------------------- /general/server/transcoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/transcoding.md -------------------------------------------------------------------------------- /general/server/users/adding-managing-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/users/adding-managing-users.md -------------------------------------------------------------------------------- /general/server/users/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/server/users/index.md -------------------------------------------------------------------------------- /general/style-guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/style-guides/index.md -------------------------------------------------------------------------------- /general/style-guides/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/style-guides/javascript.md -------------------------------------------------------------------------------- /general/style-guides/toc.yml: -------------------------------------------------------------------------------- 1 | - uid: style-guides-javascript -------------------------------------------------------------------------------- /general/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/general/toc.yml -------------------------------------------------------------------------------- /images/branding-logo-no-below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/branding-logo-no-below.png -------------------------------------------------------------------------------- /images/branding-logo-yes-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/branding-logo-yes-side.png -------------------------------------------------------------------------------- /images/custom-css-bordercolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-bordercolor.png -------------------------------------------------------------------------------- /images/custom-css-consolepanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-consolepanel.png -------------------------------------------------------------------------------- /images/custom-css-customcssfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-customcssfield.png -------------------------------------------------------------------------------- /images/custom-css-episodepreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-episodepreview.png -------------------------------------------------------------------------------- /images/custom-css-floatingnowplaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-floatingnowplaying.png -------------------------------------------------------------------------------- /images/custom-css-full-header-mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-full-header-mod.png -------------------------------------------------------------------------------- /images/custom-css-generalcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-generalcolor.png -------------------------------------------------------------------------------- /images/custom-css-greenwatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-greenwatched.png -------------------------------------------------------------------------------- /images/custom-css-hotdog-and-catsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-hotdog-and-catsup.png -------------------------------------------------------------------------------- /images/custom-css-minimallogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-minimallogin.png -------------------------------------------------------------------------------- /images/custom-css-nopicturecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-nopicturecast.png -------------------------------------------------------------------------------- /images/custom-css-normalwatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-normalwatched.png -------------------------------------------------------------------------------- /images/custom-css-rightheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-rightheader.png -------------------------------------------------------------------------------- /images/custom-css-stylizedcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-stylizedcast.png -------------------------------------------------------------------------------- /images/custom-css-transparenttopbarenlargedtabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-transparenttopbarenlargedtabs.png -------------------------------------------------------------------------------- /images/custom-css-transparentwatched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/custom-css-transparentwatched.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/header-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/header-icon.svg -------------------------------------------------------------------------------- /images/install-synology-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-1.png -------------------------------------------------------------------------------- /images/install-synology-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-2.png -------------------------------------------------------------------------------- /images/install-synology-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-3.png -------------------------------------------------------------------------------- /images/install-synology-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-4.png -------------------------------------------------------------------------------- /images/install-synology-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-5.png -------------------------------------------------------------------------------- /images/install-synology-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-6.png -------------------------------------------------------------------------------- /images/install-synology-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-7.png -------------------------------------------------------------------------------- /images/install-synology-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-8.png -------------------------------------------------------------------------------- /images/install-synology-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/install-synology-9.png -------------------------------------------------------------------------------- /images/live-tv-post-process_dvr-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-post-process_dvr-settings.png -------------------------------------------------------------------------------- /images/live-tv-setup-channels1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-channels1.png -------------------------------------------------------------------------------- /images/live-tv-setup-channels2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-channels2.png -------------------------------------------------------------------------------- /images/live-tv-setup-guide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-guide1.png -------------------------------------------------------------------------------- /images/live-tv-setup-hdhr_opt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-hdhr_opt1.png -------------------------------------------------------------------------------- /images/live-tv-setup-tuner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-tuner1.png -------------------------------------------------------------------------------- /images/live-tv-setup-tuner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-tuner2.png -------------------------------------------------------------------------------- /images/live-tv-setup-tuner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-tuner3.png -------------------------------------------------------------------------------- /images/live-tv-setup-tuner4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/images/live-tv-setup-tuner4.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/index.md -------------------------------------------------------------------------------- /plugin-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/plugin-api/.gitignore -------------------------------------------------------------------------------- /plugin-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/plugin-api/index.md -------------------------------------------------------------------------------- /toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin-archive/jellyfin-docs/HEAD/toc.yml --------------------------------------------------------------------------------