[OSX] Deluge AMC issues
Posted: 17 Oct 2015, 09:07
I am determined to get this to work!
I am running OSX and the newest version of Deluge.
I have deluge setup to call three scripts currently:
The first is this:
This is to test to make sure the execute plugin is actually working. It outputs EVERY SINGLE TIME, without fail it works.
The next script is the AMC script which looks like this:
This never runs, period. The log never gets generated or anything. However! If I run it manually replacing torrentpath/torrentname and torrentname with the actual file name and location, it works perfectly. That is what perplexed me to no end.
After beating my head against the keyboard for about 4 hours trying to get it to work, I added a third script:
Does not do anything. Not a thing.
if I run it manually, I get this:
So from this, I have concluded that for some reason its not triggering filebot when called inside of a script. Any ideas?
I am running OSX and the newest version of Deluge.
I have deluge setup to call three scripts currently:
The first is this:
Code: Select all
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
echo "Torrent Details: " $torrentname $torrentpath $torrentid >> ~/Desktop/FBTest/execute_script.log
The next script is the AMC script which looks like this:
Code: Select all
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
filebot -script fn:amc --output /Users/kmarriner/Desktop/FBTest/Media --log-file amc.log --action duplicate --conflict override -non-strict --def music=n artwork=n "ut_dir=torrentpath/torrentname" "ut_kind=multi" "ut_title= torrentname"
After beating my head against the keyboard for about 4 hours trying to get it to work, I added a third script:
Code: Select all
filebot -version > /Users/kmarriner/Desktop/FBTest/version.log 2>&1
if I run it manually, I get this:
Code: Select all
FileBot 4.6 (r3052) / Java(TM) SE Runtime Environment 1.8.0_60
So from this, I have concluded that for some reason its not triggering filebot when called inside of a script. Any ideas?