Filebot with Plex and Deluge
Posted: 26 Mar 2015, 15:24
Hello,
I'm using the following script to process all downloads from Deluge and send them to Plex. It works pretty well but I need a few tweaks to the script:
Input: D:\torrent\Yearbook The Screening Room.mp4
Yearbook The Screening Room.mp4 [series: null, movie: null]
Unable to differentiate: [Yearbook The Screening Room.mp4] => [null] VS [null]
Group: [tvs:null, mov:null, anime:null] => [Yearbook The Screening Room.mp4]
Finished without processing any files
Failure (°_°)
Here's the script:
I'm using the following script to process all downloads from Deluge and send them to Plex. It works pretty well but I need a few tweaks to the script:
- *Auto-extract RAR, ZIP files and send them to Plex (tried extract command but was not successful)
*Write the details of the file that was processed and where it was sent to the processed.log file (something like "Torrent Details: D:\torrent\superman\superman.mkv - D:\plexserver\movies\Superman (2014)\superman.mkv")
Input: D:\torrent\Yearbook The Screening Room.mp4
Yearbook The Screening Room.mp4 [series: null, movie: null]
Unable to differentiate: [Yearbook The Screening Room.mp4] => [null] VS [null]
Group: [tvs:null, mov:null, anime:null] => [Yearbook The Screening Room.mp4]
Finished without processing any files
Failure (°_°)
Here's the script:
Code: Select all
@echo off
set torrentid=%1
set torrentname=%2
set torrentpath=%3
set torrentname=%torrentname:"=%
filebot.launcher -script fn:amc --output "D:/Plexserv" --log-file amc.log --action copy --conflict override -non-strict --def music=y artwork=y clean=y plex=austybear "ut_dir=%torrentpath%\%torrentname%" "ut_kind=multi" "ut_title=%torrentname%"
@echo Torrent Details: %torrentname% %torrentpath% %torrentid% >> d:/plexserv/processed.log