Write log within directory / Ignore certain folders ?
Write log within directory / Ignore certain folders ?
I run FileBot via WebConsole on my Synology NAS
At present I run the "utorrent-postprocess" script and am happy with it's results, *when* it matches the move / tv show correctly.
If a correct match does not occur, I find it tricky going through the log (when processing BIG batches) each time to find the previous name of the file to find out what it was originally called. Would it be possible for FileBot to right a 'mini-log' within the newly created renamed directory detailing the original paths/names of the files within that directory?
This would be great also if an incorrect match is missed due to human error, then when it is noticed later on the log will be there to look at.
Also, once determining that FileBot does not match a specific movie/TV show, is there a way to have FileBot ignore that folder 'automatically' (ie. not having to remember ourselves that this move/tv show doesn't match). Maybe having a specific file within the directory that if FileBot sees then it ignores the directory, eg. maybe a blank "FILEBOT IGNORE.TXT" file?
This would be extremely useful if in the future you want to run another filebot batch run on already renamed directories (for example, if in the future you want to change the directory structure of your [already FileBot sorted] library)
Many thanks
At present I run the "utorrent-postprocess" script and am happy with it's results, *when* it matches the move / tv show correctly.
If a correct match does not occur, I find it tricky going through the log (when processing BIG batches) each time to find the previous name of the file to find out what it was originally called. Would it be possible for FileBot to right a 'mini-log' within the newly created renamed directory detailing the original paths/names of the files within that directory?
This would be great also if an incorrect match is missed due to human error, then when it is noticed later on the log will be there to look at.
Also, once determining that FileBot does not match a specific movie/TV show, is there a way to have FileBot ignore that folder 'automatically' (ie. not having to remember ourselves that this move/tv show doesn't match). Maybe having a specific file within the directory that if FileBot sees then it ignores the directory, eg. maybe a blank "FILEBOT IGNORE.TXT" file?
This would be extremely useful if in the future you want to run another filebot batch run on already renamed directories (for example, if in the future you want to change the directory structure of your [already FileBot sorted] library)
Many thanks
Re: Write log within directory / Ignore certain folders ?
Just to clarify on my second query, I meant is there a way to have FileBot ignore that folder automatically *in the future* - the incorrect match being determined and putting such a file such as "FILEBOT IGNORE.TXT" is a manual process, which is fine.
Another thought I had was if FileBot asked the user if the match it believes is correct is ok for the user. So if giving FileBot 50 movies, FileBot runs through each of the 50 inputs asking if the match it believes is correct is ok? Then if user says no to any of them then FileBot ignores the input directory and places the "FILEBOT IGNORE.TXT" within it too.
Another thought I had was if FileBot asked the user if the match it believes is correct is ok for the user. So if giving FileBot 50 movies, FileBot runs through each of the 50 inputs asking if the match it believes is correct is ok? Then if user says no to any of them then FileBot ignores the input directory and places the "FILEBOT IGNORE.TXT" within it too.
Re: Write log within directory / Ignore certain folders ?
0.
Please post any and all mismatches. That way I can check if the problem can be fixed or not.
On a related note. Since you've set -non-strict you open things up for possible mismatches, on the upside you get lots of positive matches.
Just don't set that flag and FileBot will ignore everyting that it's unsure about.
1.
There's a history, and there's multiple examples that show you how to read it... but since apparently nobody is doing that i added it online so you can just do:
That'll print the rename history, now you can just egrep for the info you're looking for. Just modify that mini-script if you want full paths instead of just filenames.
e.g.
2.
You can find and modify this function, make it ignore certain files, if there is certain files like IGNORE.txt in that folder, etc up to you:
By default it'll just ignore everything if certain labels are set.
3.
Well, the whole point of the script is to run unattended, as best as possible. You probably need a different approach if you want a wizard-like tool that helps you go through your data. Someone else can come up with a script for that.
4.
You can use nfo files with IMDb/TMDb/TVDb IDs to help with matching movie correctly.
Please post any and all mismatches. That way I can check if the problem can be fixed or not.
On a related note. Since you've set -non-strict you open things up for possible mismatches, on the upside you get lots of positive matches.

1.
There's a history, and there's multiple examples that show you how to read it... but since apparently nobody is doing that i added it online so you can just do:
Code: Select all
filebot -script fn:history
e.g.
Code: Select all
filebot -script fn:history | egrep "Name"
You can find and modify this function, make it ignore certain files, if there is certain files like IGNORE.txt in that folder, etc up to you:
Code: Select all
forceIgnore(f) {
/** YOUR OWN IGNORE LOGIC **/
}
3.
Well, the whole point of the script is to run unattended, as best as possible. You probably need a different approach if you want a wizard-like tool that helps you go through your data. Someone else can come up with a script for that.
4.
You can use nfo files with IMDb/TMDb/TVDb IDs to help with matching movie correctly.
Re: Write log within directory / Ignore certain folders ?
Thanks rednoah.
Will try and give this stuff a go. Bit of a FileBot newb so hopefully I can work it out :-/
Is there a separate thread to post mismatches, or directly msg them to you?
Will try and give this stuff a go. Bit of a FileBot newb so hopefully I can work it out :-/
Is there a separate thread to post mismatches, or directly msg them to you?
Re: Write log within directory / Ignore certain folders ?
Posts like this are always helpful:
http://filebot.sourceforge.net/forums/v ... =345#p2415
http://filebot.sourceforge.net/forums/v ... =345#p2415
Re: Write log within directory / Ignore certain folders ?
hi i have a question does anyone know why utorrent doesn't process the end part of my parameter?
it works on standalone usage though,any suggestions.
Code: Select all
2>&1 >> "E:/filebotlog.txt"
Re: Write log within directory / Ignore certain folders ?
Have you tried Redirecting output in the cmd? I''m pretty sure in Windows cmd the 2>&1 part has to be after the > file part.
Re: Write log within directory / Ignore certain folders ?
yes,and works fine. ive tried like this:
if all else fail can you suggest a script for it?to save the output on a file and ignore file renaming or sorting if ut_state is not complete
edit: nvm it suddenly work,the redirecting the output part
and guys is this correct? to ignore incomplete torrents to be processed and transfer or is there any cleaner or correct codes i can use.
Code: Select all
>> "E:/filebotlog.txt" 2>&1
>> "E:/filebotlog.txt"
edit: nvm it suddenly work,the redirecting the output part
and guys is this correct? to ignore incomplete torrents to be processed and transfer or is there any cleaner or correct codes i can use.
Code: Select all
def forceIgnore(f) {
tryQuietly{ ut_label } =~ /^(?i:Music|Audio|Ebook|other|what.cd|waffles.fm|Game)/
tryQuietly{ ut_state } =~ /^(?i:1|2|3|6|9|12|13)/
}
Re: Write log within directory / Ignore certain folders ?
Nope, what you're doing is not a good solution. All state flags are encoded into bits of that one integer value. Check docs on uTorrent and google for help on bit flags.
But why would you need that? uTorrent will only call it on download complete anyway, so that's a given.
But why would you need that? uTorrent will only call it on download complete anyway, so that's a given.
Re: Write log within directory / Ignore certain folders ?
will do some studying and it was for testing purposes.
thank you,
thank you,
-
- Posts: 9
- Joined: 18 Feb 2016, 00:16
Re: Write log within directory / Ignore certain folders ?
Hello, rednoah!
First i would like to thank you for the work you have put into this. It is the absolute best organizing tool for everything!
Now to my problem... I have successfully installed (after many failed attempts) FileBot Node on my synology ds414j. Not being a java/script/coding wiz really wasn't helpful
and i got the following errors. Could you help me troubleshoot the problem? Why this is happening?
this happens when running:
filebot -script 'fn:amc' /volume1/video/seriale --output /volume1/Media --action move -non-strict --conflict auto --lang ro --def 'ut_label=tv' 'music=y' 'unsorted=y' 'artwork=y' 'subtitles=ron' 'clean=y' 'deleteAfterExtract=y' 'seriesFormat=Series/{n}/{'\''Season '\''+s}/{n} - {sxe} - {t}' 'animeFormat=Anime/{n}/{'\''Season '\''+s}/{n} - {sxe} - {t}' 'movieFormat=Movies/{n} {y}/{n}' 'musicFormat=Music/{artist}/({y}) {album}/{pi.pad(2)+'\''. '\''} {artist} - {t}' 'excludeList=.excludes' --log all --log-file '/volume1/@appstore/filebot-node/filebot.log'
and then it fails...
Thank you!
First i would like to thank you for the work you have put into this. It is the absolute best organizing tool for everything!
Now to my problem... I have successfully installed (after many failed attempts) FileBot Node on my synology ds414j. Not being a java/script/coding wiz really wasn't helpful

this happens when running:
filebot -script 'fn:amc' /volume1/video/seriale --output /volume1/Media --action move -non-strict --conflict auto --lang ro --def 'ut_label=tv' 'music=y' 'unsorted=y' 'artwork=y' 'subtitles=ron' 'clean=y' 'deleteAfterExtract=y' 'seriesFormat=Series/{n}/{'\''Season '\''+s}/{n} - {sxe} - {t}' 'animeFormat=Anime/{n}/{'\''Season '\''+s}/{n} - {sxe} - {t}' 'movieFormat=Movies/{n} {y}/{n}' 'musicFormat=Music/{artist}/({y}) {album}/{pi.pad(2)+'\''. '\''} {artist} - {t}' 'excludeList=.excludes' --log all --log-file '/volume1/@appstore/filebot-node/filebot.log'
Code: Select all
Ignore hidden folder: /volume1/video/seriale/MASH.Complet.Series.DVDrip-No.Grp/Season 9/@eaDir
Ignore hidden folder: /volume1/video/seriale/Arrow/Arrow.S01.HDTV.x264.RoSubbed-FL/@eaDir
Ignore hidden folder: /volume1/video/seriale/Arrow/Arrow.S03.HDTV.x264-LOL/@eaDir
Ignore hidden folder: /volume1/video/seriale/Arrow/Arrow.S02.HDTV.x264-FiLELiST/@eaDir
Read archive [house.s06.dvdrip.xvid-reward.subpack.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e20.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e02.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e17.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e04.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e21.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e13.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e19.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e15.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e11.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e10.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e06.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e09.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e07.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e11.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e08.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e04.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e02.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e21.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e16.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e18.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e01.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e03.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e05.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e14.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e12.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e08.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e07.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e10.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e06.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e12.dvdrip.xvid-reward.rar, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e03.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e09.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e05.dvdrip.xvid-reward.idx, /volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e01.dvdrip.xvid-reward.idx]
Read archive [house.s06e02.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e02.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e02.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e02.dvdrip.xvid-reward.sub]
Read archive [house.s06e04.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e04.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e04.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e04.dvdrip.xvid-reward.sub]
Read archive [house.s06e21.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e21.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e21.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e21.dvdrip.xvid-reward.sub]
Read archive [house.s06e09.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e09.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e09.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e09.dvdrip.xvid-reward.sub]
Exception in thread "Thread-43" Read archive [house.s06e07.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e07.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e07.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e07.dvdrip.xvid-reward.sub]
java.lang.OutOfMemoryError: Java heap space
at com.github.junrar.unpack.ppm.SubAllocator.startSubAllocator(SubAllocator.java:146)
at com.github.junrar.unpack.ppm.ModelPPM.decodeInit(ModelPPM.java:215)
at com.github.junrar.unpack.Unpack.readTables(Unpack.java:652)
at com.github.junrar.unpack.Unpack.unpack29(Unpack.java:161)
at com.github.junrar.unpack.Unpack.doUnpack(Unpack.java:116)
at com.github.junrar.Archive.doExtractFile(Archive.java:501)
at com.github.junrar.Archive.extractFile(Archive.java:443)
at com.github.junrar.Archive$1.run(Archive.java:474)
at java.lang.Thread.run(Thread.java:745)
Exception in thread "Thread-44" java.lang.OutOfMemoryError: Java heap space
at com.github.junrar.unpack.ppm.SubAllocator.startSubAllocator(SubAllocator.java:146)
at com.github.junrar.unpack.ppm.ModelPPM.decodeInit(ModelPPM.java:215)
at com.github.junrar.unpack.Unpack.readTables(Unpack.java:652)
at com.github.junrar.unpack.Unpack.unpack29(Unpack.java:161)
at com.github.junrar.unpack.Unpack.doUnpack(Unpack.java:116)
at com.github.junrar.Archive.doExtractFile(Archive.java:501)
at com.github.junrar.Archive.extractFile(Archive.java:443)
at com.github.junrar.Archive$1.run(Archive.java:474)
at java.lang.Thread.run(Thread.java:745)
Read archive [house.s06e11.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e11.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e11.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e11.dvdrip.xvid-reward.sub]
Exception in thread "Thread-45" java.lang.OutOfMemoryError: Java heap space
at com.github.junrar.unpack.Unpack.init(Unpack.java:93)
at com.github.junrar.Archive.doExtractFile(Archive.java:497)
at com.github.junrar.Archive.extractFile(Archive.java:443)
at com.github.junrar.Archive$1.run(Archive.java:474)
at java.lang.Thread.run(Thread.java:745)
Read archive [house.s06e01.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e01.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e01.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e01.dvdrip.xvid-reward.sub]
Exception in thread "Thread-46" java.lang.OutOfMemoryError: Java heap space
at com.github.junrar.unpack.Unpack.init(Unpack.java:93)
at com.github.junrar.Archive.doExtractFile(Archive.java:497)
at com.github.junrar.Archive.extractFile(Archive.java:443)
at com.github.junrar.Archive$1.run(Archive.java:474)
at java.lang.Thread.run(Thread.java:745)
Read archive [house.s06e03.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e03.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e03.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e03.dvdrip.xvid-reward.sub]
Exception in thread "Thread-47" java.lang.OutOfMemoryError: Java heap space
Read archive [house.s06e05.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e05.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e05.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e05.dvdrip.xvid-reward.sub]
Exception in thread "Thread-48" java.lang.OutOfMemoryError: Java heap space
Read archive [house.s06e08.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e08.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e08.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e08.dvdrip.xvid-reward.sub]
Exception in thread "Thread-49" java.lang.OutOfMemoryError: Java heap space
Read archive [house.s06e10.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e10.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e10.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e10.dvdrip.xvid-reward.sub]
Exception in thread "Thread-50" java.lang.OutOfMemoryError: Java heap space
Read archive [house.s06e06.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e06.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e06.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e06.dvdrip.xvid-reward.sub]
Exception in thread "Thread-51" java.lang.OutOfMemoryError: Java heap space
Read archive [house.s06e12.dvdrip.xvid-reward.rar] and extract to [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e12.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD]
Extracting files [/volume1/video/seriale/House M.D/House.S01-S06.DVDRip.XviD.RoSub-MultiGRP/House.Season.6.DVDRip.XviD-REWARD/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06.dvdrip.xvid-reward.subpack/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e12.dvdrip.xvid-reward/House.S06.SUBPACK.DVDRip.XviD-REWARD/house.s06e12.dvdrip.xvid-reward.sub]
Exception in thread "Thread-52" java.lang.OutOfMemoryError: Java heap space
Thank you!
Re: Write log within directory / Ignore certain folders ?
OutOfMemoryError: Java heap space
This means that you don't have enough memory to run filebot. On devices with 512 MB or more it should just work.
If you only have 256 MB you may be able to make it work by setting -Xmx200m (or something that is high enough, since the default max memory won't be).
What does the sysinfo script say? If Java/FileBot is not allowed to use at least 256 MB of memory (slightly less might be ok, more is preferably) it won't work well, especially the amc script.
This means that you don't have enough memory to run filebot. On devices with 512 MB or more it should just work.
If you only have 256 MB you may be able to make it work by setting -Xmx200m (or something that is high enough, since the default max memory won't be).
What does the sysinfo script say? If Java/FileBot is not allowed to use at least 256 MB of memory (slightly less might be ok, more is preferably) it won't work well, especially the amc script.
-
- Posts: 9
- Joined: 18 Feb 2016, 00:16
Re: Write log within directory / Ignore certain folders ?
It does have 512mb or RAM, but as far as i can tell it only uses 118mb? Could you please tell me where to run that '-Xmx200m' command?
Code: Select all
filebot -script 'fn:sysinfo'
------------------------------------------
FileBot 4.6.1 (r3315)
JNA Native: 4.0.1
MediaInfo: MediaInfoLib - v0.7.73
Apache Commons VFS: [zip, ftps, rar, ftp, tar, tgz, tbz2, sftp]
Chromaprint: fpcalc version 1.2.0 (/usr/local/chromaprint/bin/fpcalc)
Extended Attributes: OK
Groovy Engine: 2.4.5
JRE: Java(TM) SE Runtime Environment 1.8.0_65 (headless)
JVM: 32-bit Java HotSpot(TM) Client VM
CPU/MEM: 2 Core / 118 MB Max Memory / 10 MB Used Memory
OS: Linux (arm)
Package: SPK
Data: /volume1/@appstore/filebot/data/admin
uname: Linux ARCTIP 3.2.40 #5644 SMP Wed Jan 20 22:38:46 CST 2016 armv7l GNU/Linux synology_comcerto2k_ds414j
Done ヾ(@⌒ー⌒@)ノ
------------------------------------------
[Process completed]
Re: Write log within directory / Ignore certain folders ?
You would have to modify the filebot.sh startup script, or define $JAVA_OPTS.
Google "Java xmx" for help on how to use the max memory option.
Google "Java xmx" for help on how to use the max memory option.
-
- Posts: 9
- Joined: 18 Feb 2016, 00:16
Re: Write log within directory / Ignore certain folders ?
Hello!
I return with a (late) reply. After much, MUCH browsing through the internet (as stated i am NO computer wiz by any means) i have stumbled into things and warnings that say when accessing root files and stuff like that might break the darn thing.
So i am respectfully asking for a fix from you. Could you do it so that FileBot Node automatically allocates itself 256mb of RAM if it is not much trouble, so i can be spared of eventually having to spend days or worse trying to fix something i might break in the process of doing it myself?
Thank you again for your support and hope you can help me with this one.
I return with a (late) reply. After much, MUCH browsing through the internet (as stated i am NO computer wiz by any means) i have stumbled into things and warnings that say when accessing root files and stuff like that might break the darn thing.
So i am respectfully asking for a fix from you. Could you do it so that FileBot Node automatically allocates itself 256mb of RAM if it is not much trouble, so i can be spared of eventually having to spend days or worse trying to fix something i might break in the process of doing it myself?
Thank you again for your support and hope you can help me with this one.
Re: Write log within directory / Ignore certain folders ?
1.
Try not enabling the extract feature. Compressed RAR files are not well supported and may lead to memory problems.
2.
Trying to make it work by forcing -Xmx256m is merely an option. It may work, it may not work. If you can't do some basic shell tasks, then this possible solution is not an option for you and I shouldn't even have brought it up.
EDIT:
Next release of FileBot Node will try to set Java/FileBot max. memory to 70% of physical memory:
https://github.com/filebot/filebot-node ... a90b9de16b
Try not enabling the extract feature. Compressed RAR files are not well supported and may lead to memory problems.
2.
Trying to make it work by forcing -Xmx256m is merely an option. It may work, it may not work. If you can't do some basic shell tasks, then this possible solution is not an option for you and I shouldn't even have brought it up.
EDIT:
Next release of FileBot Node will try to set Java/FileBot max. memory to 70% of physical memory:
https://github.com/filebot/filebot-node ... a90b9de16b