• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iharosi/homebridge-plex-webhooks: Plex Webhooks Server plugin for Homebridge

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

iharosi/homebridge-plex-webhooks

开源软件地址:

https://github.com/iharosi/homebridge-plex-webhooks

开源编程语言:

JavaScript 100.0%

开源软件介绍:

Plex Webhooks Server plugin for Homebridge

verified-by-homebridge
license version downloads vulnerabilities
Donate

This Homebridge plugin can expose occupancy sensor(s) in Home app what will trigger occupancy when media starts playing through a Plex client. Thanks to the unlimited filtering criterias, occupancy events can be controlled based on several different attributes (e.g.: Plex servers, Plex clients, Plex users, media types, media metadata).

This plugin uses Plex's Webhooks feature which is the best available option at the moment to create quick and smooth automation experience.

Please note, Webhooks are a premium feature and requires an active Plex Pass Subscription for the Plex Media Server account. Based on past years experience, once or twice a year Plex Inc discounts its life time licence.
However, if you don't own or plan to buy Plex Pass, you can try this plugin instead, but please note I'm not planning to maintain this plugin anymore: homebridge-plex-v2

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-plex-webhooks

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

sudo npm install -g --unsafe-perm homebridge-plex-webhooks

Configuration

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

Available options:

Property name Optional/Required Type Description
name required String This is the name of the platform, doesn't really show up anywhere but it's required.
platform required String Must be PlexWebhooks.
sensors required Array At least one sensor should be exposed.
sensors.name required String This is how the occupancy sensor will show up in Home app.
sensors.filters optional Array Filter rulesets. For the specified sensor to be activated, all the given path-value pairs in the ruleset must found in Plex's payload. In case multiple rulesets have been given, at least one ruleset of path-value pairs must found in the payload. You will get ideas from the Webhooks support article.
server optional Object Listening port and IP address customization of the plugin's webhooks server.
server.port optional String Port can be given between 1024 and 65535. In case port is omitted, the default 32401 will be used.
server.address optional String The server can be forced to bind to the specified IP address. In case it's omitted, server will bind to the default interface.
verbose optional Boolean For debugging purposes. With verbose logging the plugin will log Plex's payload and path-value pair matching information into the Homebridge logs.

Simple config with one filter:

"platforms": [
  {
    "name": "Plex Webhooks Platform",
    "platform": "PlexWebhooks",
    "sensors": [
      {
        "name": "Plex Movie",
        "filters": [
          [
            {
              "path": "Metadata.type",
              "value": "movie"
            }
          ]
        ]
      }
    ]
  }
]

Advanced config with multiple sensors and filters with custom server options and verbose logging:

{
  "name": "Plex Webhooks Platform",
  "platform": "PlexWebhooks",
  "sensors": [
    {
      "name": "Plex Movie",
      "filters": [
        [
          {
            "path": "Account.title",
            "value": "User"
          }
        ],
        [
          {
            "path": "Metadata.type",
            "value": "movie"
          },
          {
            "path": "Player.title",
            "value": "Apple TV"
          }
        ]
      ]
    },
    {
      "name": "Plex Pre-roll",
      "filters": [
        [
          {
            "path": "Metadata.type",
            "value": "clip"
          },
          {
            "path": "Player.title",
            "value": "Apple TV"
          }
        ]
      ]
    },
    {
      "name": "Plex Show",
      "filters": [
        [
          {
            "path": "Metadata.type",
            "value": "episode"
          },
          {
            "path": "Player.title",
            "value": "Safari"
          }
        ]
      ]
    }
  ],
  "server": {
    "address": "192.168.88.100",
    "port": 32401
  },
  "verbose": true
}

Set up Plex Media Server

After you launch homebridge, look for the listening URL:

homebridge console

Add this URL as a webhook URL on your Plex Media Server Webhooks settings page:

pms webhooks settings

In case your Homebridge server and PMS server is not on the same network, must probably you need to use NAT.

Questions, issues, feature requests

Before you raise a ticket, try to run Homebridge with the --debug option or set verbose logging for the plugin and look for the payload in console. Make sure your config is valid and your filtering rules are correct. For easier debugging, please provide your config.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap