├── .gitignore ├── README.md ├── bark.py ├── doc ├── Emby_Notifier.drawio ├── Emby_Notifier.drawio.png ├── bark.jpg ├── template-emby-episode.json ├── template-emby-movie.json ├── template-jelly-movie.json ├── template-jellyfin-episode.json ├── wechat_emby.jpg ├── wechat_jelly.jpg ├── 启用通知.png ├── 接受测试消息.png ├── 添加webhooks.png ├── 添加通知.png ├── 设置webhook.png ├── 选择generic_destination.png ├── 选择事件.png ├── 通知设置.png ├── 配置.png └── 配置notifier.png ├── docker-compose.yml ├── dockerfile ├── dockerfile-aarch64 ├── log.py ├── main.py ├── media.py ├── my_httpd.py ├── my_utils.py ├── sender.py ├── tgbot.py ├── tmdb_api.py ├── tvdb_api.py └── wxapp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/README.md -------------------------------------------------------------------------------- /bark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/bark.py -------------------------------------------------------------------------------- /doc/Emby_Notifier.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/Emby_Notifier.drawio -------------------------------------------------------------------------------- /doc/Emby_Notifier.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/Emby_Notifier.drawio.png -------------------------------------------------------------------------------- /doc/bark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/bark.jpg -------------------------------------------------------------------------------- /doc/template-emby-episode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/template-emby-episode.json -------------------------------------------------------------------------------- /doc/template-emby-movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/template-emby-movie.json -------------------------------------------------------------------------------- /doc/template-jelly-movie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/template-jelly-movie.json -------------------------------------------------------------------------------- /doc/template-jellyfin-episode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/template-jellyfin-episode.json -------------------------------------------------------------------------------- /doc/wechat_emby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/wechat_emby.jpg -------------------------------------------------------------------------------- /doc/wechat_jelly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/wechat_jelly.jpg -------------------------------------------------------------------------------- /doc/启用通知.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/启用通知.png -------------------------------------------------------------------------------- /doc/接受测试消息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/接受测试消息.png -------------------------------------------------------------------------------- /doc/添加webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/添加webhooks.png -------------------------------------------------------------------------------- /doc/添加通知.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/添加通知.png -------------------------------------------------------------------------------- /doc/设置webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/设置webhook.png -------------------------------------------------------------------------------- /doc/选择generic_destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/选择generic_destination.png -------------------------------------------------------------------------------- /doc/选择事件.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/选择事件.png -------------------------------------------------------------------------------- /doc/通知设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/通知设置.png -------------------------------------------------------------------------------- /doc/配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/配置.png -------------------------------------------------------------------------------- /doc/配置notifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/doc/配置notifier.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/dockerfile -------------------------------------------------------------------------------- /dockerfile-aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/dockerfile-aarch64 -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/log.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/main.py -------------------------------------------------------------------------------- /media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/media.py -------------------------------------------------------------------------------- /my_httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/my_httpd.py -------------------------------------------------------------------------------- /my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/my_utils.py -------------------------------------------------------------------------------- /sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/sender.py -------------------------------------------------------------------------------- /tgbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/tgbot.py -------------------------------------------------------------------------------- /tmdb_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/tmdb_api.py -------------------------------------------------------------------------------- /tvdb_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/tvdb_api.py -------------------------------------------------------------------------------- /wxapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ccccx159/Emby_Notifier/HEAD/wxapp.py --------------------------------------------------------------------------------