From 19fb37b2bf84c320b64b092af1acfb6944899616 Mon Sep 17 00:00:00 2001 From: lead2gold Date: Sun, 4 Mar 2018 21:17:30 -0500 Subject: [PATCH] Created Notify_emby (markdown) --- Notify_emby.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Notify_emby.md diff --git a/Notify_emby.md b/Notify_emby.md new file mode 100644 index 0000000..dfc9270 --- /dev/null +++ b/Notify_emby.md @@ -0,0 +1,31 @@ +## Emby Notifications +* **Source**: https://emby.media +* **Icon Support**: No +* **Message Format**: Text +* **Message Limit**: 32768 Characters per message + +### Syntax +Valid syntaxes are as follows: +* **emby**://**{hostname}** +* **emby**://**{hostname}**:**{port}** +* **emby**://**{userid}**:**{password}**@**{hostname}**:**{port}** +* **embys**://**{hostname}** +* **embys**://**{hostname}**:**{port}** +* **embys**://**{userid}**:**{password}**@**{hostname}**:**{port}** + +Secure connections (via https) should be referenced using **embys://** where as insecure connections (via http) should be referenced via **emby://**. + +### Parameter Breakdown +| Variable | Required | Description +| ----------- | -------- | ----------- +| hostname | Yes | The server Emby is listening on. +| port | No | The port Emby is listening on. By default the port is **8096** for both **emby://** and **embys://** references. +| userid | Yes | The account login to your Emby server. +| password | No | The password associated with your Emby Server. + +#### Example +Send a Emby notification to our server listening on port 8096: +```bash +# Assuming our {hostname} is emby.server.local +notify emby://emby.server.local +```