home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
HTPC Projects
Software
Tools and other software
FileBot - The ultimate TV Renamer and Subtitle Downloader
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="kiwijunglist" data-source="post: 1001648" data-attributes="member: 76888"><p>Hello again,</p><p> </p><p>I have a script that makes thumbnails for tvrecordings and it uses filebot.jar, grab-fanart.groovy, and grab-tvthumb.groovy</p><p>It has stopped working, I tried updating to filebot3.6 latest portable installation.</p><p>Is there a problem with the scripting function for fanart + tvthumb at the moment?</p><p> </p><p>[code]MissingMethodException: No signature of method: Script4.fetchSeriesBanner() is a</p><p>pplicable for argument types: (java.lang.String, net.sourceforge.filebot.web.The</p><p>TVDBClient$TheTVDBSearchResult, java.lang.String, null, null, null) values: [D:\</p><p>TV Thumbnailer\Files\FileBot\Temp\Spartacus-fanart.jpg, ...]</p><p>groovy.lang.MissingMethodException: No signature of method: Script4.fetchSeriesB</p><p>anner() is applicable for argument types: (java.lang.String, net.sourceforge.fil</p><p>ebot.web.TheTVDBClient$TheTVDBSearchResult, java.lang.String, null, null, null)</p><p>values: [D:\TV Thumbnailer\Files\FileBot\Temp\Spartacus-fanart.jpg, ...]</p><p> at Script3.run(Script3.groovy:8)</p><p> at net.sourceforge.filebot.cli.ScriptShell.evaluate(Unknown Source)</p><p> at net.sourceforge.filebot.cli.ScriptShell.runScript(Unknown Source)</p><p> at net.sourceforge.filebot.cli.ArgumentProcessor.process(Unknown Source)</p><p> </p><p> at net.sourceforge.filebot.Main.main(Unknown Source)</p><p>Failure (░_░)[/code]</p><p> </p><p>FileBot.cmd filebot -script "grab-fanart.groovy" --q "%ShowName%" --output "%ShowName%-fanart.jpg"</p><p> </p><p>FileBot.cmd filebot -script "grab-tvthumb.groovy" --q "%ShowName%" --output "%ShowName%-tvthumb.jpg"</p><p> </p><p>Filebot.cmd</p><p>[code]</p><p>call "%Run_Java%" -Xmx256m -Dapplication.deployment=portable "-Dapplication.dir=%~dp0." "-Duser.home=%~dp0." "-Djava.io.tmpdir=%~dp0temp" "-Djna.library.path=%~dp0." "-Djava.library.path=%~dp0." -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -Djava.util.prefs.PreferencesFactory=net.sourceforge.tuned.prefs.FilePreferencesFactory "-Dnet.sourceforge.tuned.prefs.file=%~dp0prefs.properties" -jar "%~dp0FileBot.jar" %*[/code]</p><p> </p><p>grab-fanart.groovy</p><p>[code]// include http://filebot.sourceforge.net/scripts/lib/htpc.groovy</p><p>include('fn:lib/htpc')</p><p> </p><p>// use --q as query</p><p>def tvshows = TheTVDB.search(_args.query)</p><p> </p><p>// just grab artwork for the first result and save as --output</p><p>fetchSeriesBanner(_args.output, tvshows[0], 'fanart', null, null, null)[/code]</p><p> </p><p>grab-tvthumb.groovy[code]// include http://filebot.sourceforge.net/scripts/lib/htpc.groovy</p><p>include('fn:lib/htpc')</p><p> </p><p>// use --q as query</p><p>def tvshows = TheTVDB.search(_args.query)</p><p> </p><p>// just grab artwork for the first result and save as --output</p><p>fetchSeriesFanart(_args.output, tvshows[0], 'tvthumb', null, null)[/code]</p></blockquote><p></p>
[QUOTE="kiwijunglist, post: 1001648, member: 76888"] Hello again, I have a script that makes thumbnails for tvrecordings and it uses filebot.jar, grab-fanart.groovy, and grab-tvthumb.groovy It has stopped working, I tried updating to filebot3.6 latest portable installation. Is there a problem with the scripting function for fanart + tvthumb at the moment? [code]MissingMethodException: No signature of method: Script4.fetchSeriesBanner() is a pplicable for argument types: (java.lang.String, net.sourceforge.filebot.web.The TVDBClient$TheTVDBSearchResult, java.lang.String, null, null, null) values: [D:\ TV Thumbnailer\Files\FileBot\Temp\Spartacus-fanart.jpg, ...] groovy.lang.MissingMethodException: No signature of method: Script4.fetchSeriesB anner() is applicable for argument types: (java.lang.String, net.sourceforge.fil ebot.web.TheTVDBClient$TheTVDBSearchResult, java.lang.String, null, null, null) values: [D:\TV Thumbnailer\Files\FileBot\Temp\Spartacus-fanart.jpg, ...] at Script3.run(Script3.groovy:8) at net.sourceforge.filebot.cli.ScriptShell.evaluate(Unknown Source) at net.sourceforge.filebot.cli.ScriptShell.runScript(Unknown Source) at net.sourceforge.filebot.cli.ArgumentProcessor.process(Unknown Source) at net.sourceforge.filebot.Main.main(Unknown Source) Failure (░_░)[/code] FileBot.cmd filebot -script "grab-fanart.groovy" --q "%ShowName%" --output "%ShowName%-fanart.jpg" FileBot.cmd filebot -script "grab-tvthumb.groovy" --q "%ShowName%" --output "%ShowName%-tvthumb.jpg" Filebot.cmd [code] call "%Run_Java%" -Xmx256m -Dapplication.deployment=portable "-Dapplication.dir=%~dp0." "-Duser.home=%~dp0." "-Djava.io.tmpdir=%~dp0temp" "-Djna.library.path=%~dp0." "-Djava.library.path=%~dp0." -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -Djava.util.prefs.PreferencesFactory=net.sourceforge.tuned.prefs.FilePreferencesFactory "-Dnet.sourceforge.tuned.prefs.file=%~dp0prefs.properties" -jar "%~dp0FileBot.jar" %*[/code] grab-fanart.groovy [code]// include http://filebot.sourceforge.net/scripts/lib/htpc.groovy include('fn:lib/htpc') // use --q as query def tvshows = TheTVDB.search(_args.query) // just grab artwork for the first result and save as --output fetchSeriesBanner(_args.output, tvshows[0], 'fanart', null, null, null)[/code] grab-tvthumb.groovy[code]// include http://filebot.sourceforge.net/scripts/lib/htpc.groovy include('fn:lib/htpc') // use --q as query def tvshows = TheTVDB.search(_args.query) // just grab artwork for the first result and save as --output fetchSeriesFanart(_args.output, tvshows[0], 'tvthumb', null, null)[/code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
HTPC Projects
Software
Tools and other software
FileBot - The ultimate TV Renamer and Subtitle Downloader
Contact us
RSS
Top
Bottom