# jellyfin

## Via DNF (current)
Installed via package manager (in RPM Fusion repo)

Config are store in two location:

### `/etc/jellyfin/*.xml`

default values

### `/etc/sysconfig/jellyfin`

`JELLYFIN_FFMPEG_OPT="--ffmpeg=/opt/ffmpeg-jellyfin/ffmpeg"`

### FFMPEG custom
source: [https://github.com/jellyfin/jellyfin-ffmpeg/releases](https://github.com/jellyfin/jellyfin-ffmpeg/releases)

untar dans `/opt/ffmpeg-jellyfin/` en root

## Podman way (not current)

```bash
podman run \
                                         --detach \
                                         --label "io.containers.autoupdate=registry" \
                                         --name jellyfin-prod \
                                         --publish 127.0.0.1:8096:8096/tcp \
                                         --rm \
                                         --user $(id -u):$(id -g) \
                                         --userns keep-id \
                                         --volume /srv/jellyfin/cache:/cache:Z \
                                         --volume /srv/jellyfin/config:/config:Z \
                                         --volume /data/media/video/film:/media/film \
                                         --volume /data/media/video/series:/media/series \
                                         --volume /data/media/video/animes:/media/animes \
                                         --security-opt label=disable \
                                         docker.io/jellyfin/jellyfin:latest
```