File monitor, auto-indexer and subtitles downloader (using subliminal) for Synology DiskStation NAS. Supports push notifications like Pushover and Pushbullet.
- Install Python (if you haven't already) from the DiskStation package manager.
- SSH into your DiskStation as root (e.g. ssh root@192.168.1.10)
- Download and unpack ZIP file:
wget https://github.com/smartycoder/DSVideoMonitor/archive/master.zip
unzip master.zip
- Copy files to
/var/packages/dsvideomonitor/
:
cp -r DSVideoMonitor-master/* /var/packages/dsvideomonitor/
- Run setup:
python /var/packages/dsvideomonitor/setup.py install
- Copy file
/var/packages/dsvideomonitor/S99dsvideomonitor.sh
to/usr/syno/etc/rc.d/
cp /var/packages/dsvideomonitor/S99dsvideomonitor.sh /usr/syno/etc/rc.d/
- Run command:
chmod +x /usr/syno/etc/rc.d/S99dsvideomonitor.sh
- Run command:
/usr/syno/etc/rc.d/S99dsvideomonitor.sh start
Modify dsvideomonitor.py
and set your own settings.
video_folder = "/volume1/video/"
patterns = [".avi", ".mkv"]
languages = ["slv", "eng"]
run_indexer = True
notifier = PushbulletClient()
notifier.set_api_key("YOUR_KEY")