Jellyfin: Difference between revisions

Ardenet (talk | contribs)
Add tranlate tag exclude code parts
jellyfin-media-player was renamed to jellyfin-desktop and updated so it's no longer marked as insecure
 
(7 intermediate revisions by 3 users not shown)
Line 19: Line 19:
<strong>[https://jellyfin.org/ Jellyfin]</strong><ref name="jellyfin">Jellyfin Project, "Jellyfin: The Free Software Media System", Official Website, Accessed October 2025. https://jellyfin.org/</ref> is a free and open-source media server that enables users to manage and stream their personal media libraries across various devices. It consists of the Jellyfin Server and multiple client applications including Jellyfin Media Player and a web interface.
<strong>[https://jellyfin.org/ Jellyfin]</strong><ref name="jellyfin">Jellyfin Project, "Jellyfin: The Free Software Media System", Official Website, Accessed October 2025. https://jellyfin.org/</ref> is a free and open-source media server that enables users to manage and stream their personal media libraries across various devices. It consists of the Jellyfin Server and multiple client applications including Jellyfin Media Player and a web interface.


== Installation == <!--T:2-->
== Client Installation ==
 
Jellyfin is available both via the web interface, and through a desktop application.
 
If you would like to install the desktop application, use the following:
 
{{code|lang=nix|line=no|1={
  environment.systemPackages = [
    pkgs.jellyfin-desktop
  ];
}
}}
 
Alternatively, you can use the Jellyfin web client by using your preferred web browser to visit the server directly. See below on how to install the Jellyfin server.
 
== Server Installation == <!--T:2-->


<!--T:3-->
<!--T:3-->
Line 255: Line 270:
<!--T:31-->
<!--T:31-->
This triggers a rebuild of the Jellyfin package. After applying, select "Intel QuickSync (QSV)" in the Jellyfin settings for hardware-accelerated transcoding with minimal CPU load.
This triggers a rebuild of the Jellyfin package. After applying, select "Intel QuickSync (QSV)" in the Jellyfin settings for hardware-accelerated transcoding with minimal CPU load.
On NixOS 25.11 and newer (specifically since [https://github.com/NixOS/nixpkgs/pull/424061 this PR]), <code>vpl</code> support in FFmpeg is enabled by default, so there is no need to use an overlay.


<!--T:32-->
<!--T:32-->
Line 335: Line 352:
   })
   })
];
];
}
}}
}}