-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] - Emby Notify Script #118
Comments
When I last looked at it, I couldn’t find a way to do targeted scans. If you can find a way to do that and a link to some documentation, I’ll look into it. Because I wanted to implement the same thing for Jellyfin and Emby but couldn’t find a way to accomplish it… |
Would this API help? https://api.jellyfin.org/#tag/Items/operation/GetItems https://api.jellyfin.org/#tag/ItemRefresh I might take a look at this. I just wished that I had found your repo sooner before my work break lol. |
No, those don't help. There is a feature request for what is needed to make what your asking for possible... But as of now, as far as I can tell, the functionality doesn't exist: https://features.jellyfin.org/posts/1758/scan-specific-folders-from-a-larger-library |
#!/bin/bash NOW=$(date +"%d-%m-%Y %H:%M") if [ "${radarr_eventtype}" != "" ]; then (echo "${NOW} - [Emby Library Scan] Radarr Event Type is ${radarr_eventtype}, updating Emby Library for ${radarr_movie_title}."; cat ${LOG_FILE}) > ${TMP_FILE}; mv ${TMP_FILE} ${LOG_FILE} if [ "$radarr_eventtype" == "Download" ]; then if [ "${radarr_eventtype}" == "MovieDelete" ]; then if [ "$radarr_eventtype" == "Rename" ]; then
else fi write a status file with date of last run. Helps troubleshoot that cron task is running.echo "$(basename |
I have tried to implement it here, it seems to do the work for me :) |
Would it be possilbe to add an emby notify script such as plex notify? Or can plex notify be used for emby?
The text was updated successfully, but these errors were encountered: