1.0.1 • Published 3 years ago

homebridge-jellyfin v1.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Homebridge Jellyfin

This Homebridge plugin can expose occupancy sensor(s) in Home app what will trigger occupancy whenever a session on a Jellyfin server meets your filtering requirements. Thanks to the unlimited filtering criterias, occupancy events can be controlled based on several different attributes (e.g.: username, device names, media types, genres, clients).

Installation

If you don't have a Homebridge installation yet, head over to the project documentation for more information.

The best and easiest way to install and configure this plugin is through Homebridge UI.

However, if you would like to you can do it through terminal:

npm install homebridge-jellyfin

Or, you can install it for root but please be aware of the security risks:

sudo npm install -g --unsafe-perm homebridge-jellyfin

Configuration

The easiest way to configure this plugin is through Homebridge UI.

Available options:

Property nameOptional/RequiredTypeDescription
namerequiredStringThis is the name of the platform, doesn't really show up anywhere but it's required.
platformrequiredStringMust be Jellyfin.
sensorsrequiredArrayAt least one sensor should be exposed.
sensors.namerequiredStringThis is how the occupancy sensor will show up in Home app.
sensors.filtersoptionalArrayFilter rulesets. For the specified sensor to be activated, all the given path-value pairs in the ruleset must found in Jellyfin's Session payload. In case multiple rulesets have been given, at least one ruleset of path-value pairs must found in the payload.
serverrequiredObjectThe configuration for you Jellyfin server
server.api_keyrequiredStringThe API key from your Jellyfin server
server.addressrequiredStringThe address of your Jellyfin server
server.portrequiredNumberThe port of your Jellyfin server
server.checkIntervaloptionalNumberHow often to check Jellyfin
verboseoptionalBooleanFor debugging purposes. With verbose logging the plugin will log Jellyfin's payload and path-value pair matching information into the Homebridge logs.

Simple config with one filter:

{
  "platforms": [
    {
      "name": "Jellyfin Platform",
      "platform": "Jellyfin",
      "server": {
        "api_key": "---------------------",
        "port": 8096,
        "address": "XXX.XXX.XXX.XXX",
        "checkInterval": 50
      },
      "sensors": [
        {
          "name": "Apple TV Watching",
          "filters": [
            [
              {
                "path": "DeviceName",
                "value": "Apple TV"
              }
            ]
          ]
        }
      ]
    }
  ]
}

Advanced config with multiple sensors and filters with verbose logging:

{
  "platforms": [
    {
      "name": "Jellyfin Platform",
      "platform": "Jellyfin",
      "verbose": true,
      "server": {
        "api_key": "---------------------",
        "port": 8096,
        "address": "XXX.XXX.XXX.XXX",
        "checkInterval": 50
      },
      "sensors": [
        {
          "name": "LJ Watching",
          "filters": [
            [
              {
                "path": "UserName",
                "value": "LJ"
              }
            ]
          ]
        },
        {
          "name": "LJ Watching on Apple TV",
          "filters": [
            [
              {
                "path": "DeviceName",
                "value": "Apple TV"
              },
              [
                {
                  "path": "UserName",
                  "value": "LJ"
                }
              ]
            ]
          ]
        }
      ]
    }
  ]
}

Credits

1.0.1

3 years ago

1.0.0

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago