Search found 8 matches
- 03 Feb 2017, 22:55
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
And here's a single file: john@john-Latitude-E6420 ~/.scripts $ sh -x ./deluge-postprocess.sh "n/a" "The Grand Tour-S01E06.mp4" "/home/john/Torrent_download" + ARG_PATH=/home/john/Torrent_download/The Grand Tour-S01E06.mp4 + ARG_NAME=The Grand Tour-S01E06.mp4 + ARG_LABEL=N/A + CONFIG_OUTPUT=/home ...
- 03 Feb 2017, 22:44
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
Before change ran from terminal: john@john-Latitude-E6420 ~/.scripts $ sh -x ./deluge-postprocess.sh "n/a" "Schitts.Creek.S02E08.DVDRip.x264-SPRiNTER" "/home/john/Torrent_download" + ARG_PATH=/home/john/Torrent_download + ARG_NAME=Schitts.Creek.S02E08.DVDRip.x264-SPRiNTER + ARG_LABEL=N/A + CONFIG ...
- 03 Feb 2017, 22:17
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
I can confirm on two different machines with Filebot 4.7.7/Deluge 1.3.13 that the updated script works for both single file and muti-file(folder) to give the desired effect of only processing the single torrent passed to filebot.
Thanks for your time.
Thanks for your time.
- 03 Feb 2017, 17:33
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
I just had a Google of Deluge execute output.
http://dev.deluge-torrent.org/wiki/Plugins/Execute
Relevant info:
http://dev.deluge-torrent.org/wiki/Plugins/Execute
Relevant info:
Code: Select all
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
echo "Torrent Details: " $torrentname $torrentpath $torrentid >> /tmp/execute_script.log
- 03 Feb 2017, 17:28
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
I never found documentation on the outputs of Deluge although I didn't look that hard. I simply had Deluge execute a script that echoed the outputs to a text file for me. I've used both Transmission and then switched to Deluged for it's plugins so I'm quite familiar with both. $1 Passes the hash for ...
- 03 Feb 2017, 04:37
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
ARG_PATH="$3" is the base folder Deluge saves to. I had a look at the transmission-postprocess.sh and it appears to be accounted for with essentially what I deduced earlier: # Input Parameters ARG_PATH="$TR_TORRENT_DIR/$TR_TORRENT_NAME" ARG_NAME="$TR_TORRENT_NAME" ARG_LABEL="N/A" I think deluge ...
- 02 Feb 2017, 20:45
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
Re: deluge-postprocess.sh processed entire folder
Hey Rednoah. Thanks for the reply. I didn't include log files because there really isn't anything relevant in them. Here's what I did. I ran a test rig with filebot. I've got my download folder with many movies and TV shows in it. I want deluge-postprocess.sh to only process the single file passed ...
- 02 Feb 2017, 18:43
- Forum: Ubuntu & Desktop Linux
- Topic: deluge-postprocess.sh processed entire folder
- Replies: 12
- Views: 7451
deluge-postprocess.sh processed entire folder
Hey rednoah, great piece of work and I hope you've benefited from it as much as we have. I've got a minor annoyance that I'd like to correct if I could. I'm using a slight variant of your Github sh script posted here https://github.com/filebot/plugins/blob/master/bash/deluge-postprocess.sh . Variant ...