Error with script with qBittorent + Filebot

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
negative101
Posts: 4
Joined: 30 Sep 2018, 18:40

Error with script with qBittorent + Filebot

Post by negative101 »

Hi there,

First of all, sorry if I am asking about an already solved issue or if the error is way too obvious but I am not very tech-savvy and I haven't been able to find the answer to my issue.

Recently I wanted to migrate from μTorrent to qBittorent, the problem is that the script is not working at all and I am not being able to find what is exactly wrong. I would be really grateful if you can help me to solve the problem.

Script

Code: Select all

filebot -script fn:amc --output "F:/Completed" --action copy --conflict skip -non-strict --log-file "F:/Torrents/amc.log" --def movieFormat="I:/Movies/{n} ({y})/{n} ({y}){' CD'+pi}{'.'+lang}" seriesFormat="G:/TV Shows/{n}/Season {s.pad(2)}/{n} - {s00e00} - {t}" plex=host:xxxxxxxxxxxxxxxxxx unsorted=y music=n artwork=y subtitles=en,es clean=y "ut_label=%L" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
I am using Filebot from the Windows Store

Error Log

Code: Select all

Run script [fn:amc] at [Wed Oct 13 19:44:51 ART 2021]
Parameter: movieFormat = I:/Movies/{n} ({y})/{n} ({y}){' CD'+pi}{'.'+lang}
Parameter: seriesFormat = G:/TV Shows/{n}/Season {s.pad(2)}/{n} - {s00e00} - {t}
Parameter: plex = *****
Parameter: unsorted = y
Parameter: music = n
Parameter: artwork = y
Parameter: subtitles = en,es
Parameter: clean = y
Parameter: ut_label = 
Parameter: ut_state = %S
Parameter: ut_title = The.Movies.That.Made.Us.S03E03.1080p.HEVC.x265-MeGusta[eztv.re].mkv[eztv]
Parameter: ut_kind = %K
Parameter: ut_file = F:\Torrents\The.Movies.That.Made.Us.S03E03.1080p.HEVC.x265-MeGusta[eztv.re].mkv
Parameter: ut_dir = F:\Torrents
Bad ut_state value: %S
Bad ut_kind value: %K
The filename, directory name, or volume label syntax is incorrect
java.io.IOException: The filename, directory name, or volume label syntax is incorrect
	at java_io_File$getCanonicalFile$1.call(Unknown Source)
	at Script1.run(Script1.groovy:133)
	at net.filebot.cli.ScriptShell.evaluate(Unknown Source)
	at net.filebot.cli.ScriptShell.runScript(Unknown Source)
	at net.filebot.cli.ArgumentProcessor.runScript(Unknown Source)
	at net.filebot.cli.ArgumentProcessor.run(Unknown Source)
	at net.filebot.Main.main(Unknown Source)
qBitorrent v4.3.8 config
Image

Thanks for your support!
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Error with script with qBittorent + Filebot

Post by rednoah »

This is wrong:

Code: Select all

Parameter: ut_label = 
Parameter: ut_state = %S
Parameter: ut_title = The.Movies.That.Made.Us.S03E03.1080p.HEVC.x265-MeGusta[eztv.re].mkv[eztv]
Parameter: ut_kind = %K
Parameter: ut_file = F:\Torrents\The.Movies.That.Made.Us.S03E03.1080p.HEVC.x265-MeGusta[eztv.re].mkv
Parameter: ut_dir = F:\Torrents

:idea: Please follow the qBT instructions verbatim, and make sure not to use the uT instructions for qBT:
viewtopic.php?p=9774#p9774


e.g. qBT

Code: Select all

--def "ut_label=%L" "ut_title=%N" "ut_kind=multi" "ut_dir=%F"
e.g. uT

Code: Select all

--def "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
:idea: Please read the FAQ and How to Request Help.
negative101
Posts: 4
Joined: 30 Sep 2018, 18:40

Re: Error with script with qBittorent + Filebot

Post by negative101 »

Thanks a lot for your support rednoah! That solved my problems!

Thanks again!
Post Reply