Search found 33 matches

by SuperDOS
24 Aug 2016, 08:30
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

Re: keep original movie nfo

Thanks I'll try the new version when it's out.

Also I'm amazed that you are able to answer so quickly here, really appreciate it!
by SuperDOS
24 Aug 2016, 05:58
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

Re: keep original movie nfo

correct.

tried some more and it didn't work now either, file in use.
Guess it reads the nfo at some point and doesn't always have time to close it.

Is there some way you can disable filebot to read the nfo?
by SuperDOS
23 Aug 2016, 20:51
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

Re: keep original movie nfo

I'm think you're right, removed (f.isMovie() so it's only: // process only media files input = input.findAll{ f -> (f.isVideo() && !tryQuietly{ f.hasExtension('iso') && !f.isDisk() }) || f.hasExtension('nfo') ||f.isSubtitle() || (f.isDirectory() && f.isDisk()) || (music &...
by SuperDOS
23 Aug 2016, 14:08
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

Re: keep original movie nfo

weird, nothing is using these files, monitored with procmon but couldn't find anything off.
There's no torrent client using these files or any other files I've tried with.

filebot works perfectly if I don't include nfo so Is my modification of the groovy.amc correct?
by SuperDOS
23 Aug 2016, 07:03
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

Re: keep original movie nfo

here's the log with some test files: Run script [amc.groovy] at [Tue Aug 23 08:56:16 CEST 2016] Parameter: music = n Parameter: artwork = n Parameter: extras = n Parameter: skipExtract = n Parameter: clean = y Parameter: subtitles = en Parameter: deleteAfterExtract = y Parameter: seriesFormat = TV-S...
by SuperDOS
22 Aug 2016, 21:05
Forum: Feature Requests and Bug Reports
Topic: Plex Notify - 401 Unauthorized
Replies: 4
Views: 5210

Re: Plex Notify - 401 Unauthorized

thanks for this, just ran into this trouble :D
by SuperDOS
22 Aug 2016, 20:50
Forum: Scripting and Automation
Topic: keep original movie nfo
Replies: 10
Views: 4866

keep original movie nfo

Hi, I'm trying to keep the original release nfo when renaming movies and after editing amc.groovy as below // process only media files input = input.findAll{ f -> (f.isVideo() && !tryQuietly{ f.hasExtension('iso') && !f.isDisk() }) || (f.isMovie() && f.hasExtension('nfo')) ||...
by SuperDOS
22 Aug 2016, 03:44
Forum: Windows
Topic: no output in CLI
Replies: 3
Views: 2618

Re: no output in CLI

thanks, removed the exe-files and jar then re-rerun the setup again.
works now. Probably updated the files with the portable version before, didn't know it didn't had no console.
by SuperDOS
21 Aug 2016, 21:56
Forum: Windows
Topic: no output in CLI
Replies: 3
Views: 2618

no output in CLI

Hi, not sure what happened but I no longer get any output in my command prompt when running commands.
just a blank line.

Not even filebot.exe -help shows anything

If I send it to a file I can get the information, filebot.exe -help > help.txt

running windows 10 and filebot x64 4.7.2
by SuperDOS
02 Aug 2016, 18:43
Forum: Scripting and Automation
Topic: Update Kodi no longer works
Replies: 19
Views: 7801

Re: Update Kodi no longer works

great, will this be included in the next release and until then I need to run dev:amc?

thanks!
by SuperDOS
02 Aug 2016, 15:27
Forum: Scripting and Automation
Topic: Update Kodi no longer works
Replies: 19
Views: 7801

Re: Update Kodi no longer works

correct telnet not working, tried with your code but nothing is put out to the console.

the dev:amc works though :)

From logs:
GET: http://192.1.1.25:9090/jsonrpc?request= ... %22%3A1%7D
by SuperDOS
02 Aug 2016, 12:04
Forum: Scripting and Automation
Topic: Update Kodi no longer works
Replies: 19
Views: 7801

Re: Update Kodi no longer works

precisely :)
used it to debug but doesn't work for some reason.
Would have been a different story if a regular telnet connection wouldn't work.

saw that there was a new version of Filebot, so tried 4.7.1 as well, no luck.
by SuperDOS
02 Aug 2016, 11:42
Forum: Scripting and Automation
Topic: Update Kodi no longer works
Replies: 19
Views: 7801

Re: Update Kodi no longer works

i've tried running telnet('192.1.1.25', 9090) { writer, reader -> writer.println("""{"jsonrpc":"2.0","method":"VideoLibrary.Scan","id":1}""") } telnet 192.1.1.25 9090 works so I don't understad why using Filebot doesn't.
by SuperDOS
02 Aug 2016, 10:12
Forum: Scripting and Automation
Topic: Update Kodi no longer works
Replies: 19
Views: 7801

Update Kodi no longer works

Hi, Not sure what's wrong but since I updated to 4.7 of filebot my amc script don't update the library on my kodi server, the plex server is updated fine (installed on the same server) use --def kodi=192.1.1.25 and --def plex=192.1.1.25 The remote settings of Kodi is correct since I'm allowed to upd...
by SuperDOS
19 Jan 2015, 21:40
Forum: Scripting and Automation
Topic: Include nfo file for movies but not for tv-shows
Replies: 3
Views: 2812

Re: Include nfo file for movies but not for tv-shows

Correct. I've added: // process only media files input = input.findAll{ f -> (f.isVideo() && !tryQuietly{ f.hasExtension('iso') && !f.isDisk() }) || f.isSubtitle() || f.hasExtension('nfo') || (f.isDirectory() && f.isDisk()) || (music && f.isAudio()) } But need to add ...
by SuperDOS
19 Jan 2015, 16:46
Forum: Scripting and Automation
Topic: Include nfo file for movies but not for tv-shows
Replies: 3
Views: 2812

Re: Include nfo file for movies but not for tv-shows

BUMP

This is still something I'd like to achieve, save the NFO for movies but skip them for TV-show.
by SuperDOS
19 Jan 2015, 09:35
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

All right thanks,
will this be included in the regular release or do I need to run the dev?
by SuperDOS
18 Jan 2015, 22:33
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

Yes that seems to work, thanks! Is there a default behavior that it extract to a subfolder? This is the folder tree: V:. └───Subs └───Subs └───the.matrix.1999-coolgroup └───Subs Couldn't it just extract to the same folder as the archive? Parameter: music = n Parameter: artwork = n Parameter: deleteA...
by SuperDOS
18 Jan 2015, 11:09
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

Ok, here's the log with untouched amc.groovy file Parameter: music = n Parameter: artwork = n Parameter: deleteAfterExtract = n Argument: V:\test Read archive [Subs.rar] and extract to [V:\test\the.matrix.1999-coolgroup\Subs\Subs\Subs] Extracting files [V:\test\the.matrix.1999-coolgroup\Subs\Subs\Su...
by SuperDOS
17 Jan 2015, 18:26
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

I'm resurrecting my old thread.
Using the latest amc.groovy I can't get nested archives to work.

Anyone has a suggestion?

Thanks
by SuperDOS
26 Aug 2014, 13:23
Forum: Scripting and Automation
Topic: Include nfo file for movies but not for tv-shows
Replies: 3
Views: 2812

Include nfo file for movies but not for tv-shows

Hi, I'm trying to modify amc.groovy so that it will keep the original nfo-file for movies but not for tv-shows. I've succeded to include the nfo file by adding f.hasExtension('nfo') as inputfile, but how can I get it to ignore for tv-shows? tried to add if (forceSeries) { input = input.findAll{ f ->...
by SuperDOS
07 Jun 2013, 21:41
Forum: Scripting and Automation
Topic: Pushover output
Replies: 0
Views: 1994

Pushover output

Hi, I wonder how I can make pushover only send me the movie title and year for movies and for tv-show all the renamed episodes. For example like this: New Files Processed by FileBot: Movie 1 (2011) Movie 2 (2012) Movie 3 (2013) TV-Show 1 - 01x01 - Episode TV-Show 2 - 02x01 - Episode The code I use t...
by SuperDOS
10 Apr 2013, 19:20
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

I've got the latest version of Filebot and the AMC-script.

and think I know what the mistake is... :oops:

I'd commented out: input += tempFiles :roll:

But I still don't understand why the nested archive is extracted to the --output directory, the idx file is extracted to the right path.
by SuperDOS
10 Apr 2013, 06:31
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

:D Made a dummy-structure to test with. \_new\_unpack\the.matrix.1999-coolgroup \_new\_unpack\the.matrix.1999-coolgroup\the.matrix.1999-coolgroup.sfv \_new\_unpack\the.matrix.1999-coolgroup\Subs \_new\_unpack\the.matrix.1999-coolgroup\Sample \_new\_unpack\the.matrix.1999-coolgroup\Screens \_new\_unp...
by SuperDOS
10 Apr 2013, 05:26
Forum: Scripting and Automation
Topic: Extract subtitles
Replies: 24
Views: 10375

Re: Extract subtitles

Ok I've logged and the nested archive is extracted but not in the right folder!
It ends up in the root dir above where the movies is copied to.(!?)

The extraction of the first file (.idx file ) ends up at the right place.

Movie.sub
--MOVIES
|
----MOVIE 1
|
----MOVIE 2