my request is a little different.
did you think it can be possible to implement periscope as a subtitle searcher inside Sabnzbd ?
I imagine somthing like a button near each item in the download history to call Sabnzbd to search the subtitle using periscope.
possibility to define specified parameters to periscope in the configration page like a box for seting personal options of subtitles search
(-l fr -l en)
Actually i use it with my post processing script for tv shows
Code: Select all
#!/bin/sh
echo "Running TV Script."
# Remove Samples
echo "Removing Samples Files"
rm -rf "$1/*sample*"
# Checking For Subtitles
echo "Checking For Subtitles"
periscope "$1/*.avi" -l fr -l en
# Setting Permissions
echo "Setting Permissions"
chown -R nobody:nogroup "$1/.."
echo "chown -R nobody:nogroup $1/.."
return 0
it can be fine to have it with the 0.6.0 release due to the integration of
an option to change ownership/group of downloaded files. (Ticket #220)
Regards,
P.S. I apologize for my english if i made too much mistakes.