Page 1 of 1

Could not find a file provider that can handle file: ISO

Posted: 31 Oct 2016, 06:29
by Achandab
Output below

There are video files in the directory that are completely ignored.

Code: Select all

filebot -script fn:amc "/volumeUSB1/usbshare/Completed Downloads" -non-strict --output "/volume1/Media" --def subtitles=en,ar music=y clean=y --action move --conflict override --def deleteAfterExtract=y

Code: Select all

Run script [fn:amc] at [Mon Oct 31 17:24:16 AEDT 2016]
Parameter: subtitles = en,ar
Parameter: music = y
Parameter: clean = y
Parameter: deleteAfterExtract = y
Argument[0]: /volumeUSB1/usbshare/Completed Downloads
Skip short video: /volumeUSB1/usbshare/Completed Downloads/Finding Dory 2016/Finding Dory  2016 720p BrRip x264 - LEGi0N.wmv
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/Fitoor (2016)/(sample) Fitoor (2016) HQ 1080p Bluray x264 DTS-HDMA 7.1 ESub [DDR-Exclusive].mkv
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/X-Men Apocalypse (2016) HQ 1080p Blu-ray x264 DTS-HD EN - DTS Fr MSubs -DDR/sample-X-Men Apocalypse (2016) HQ 1080p Blu-ray x264 DTS-HD EN - DTS Fr MSubs -DDR.mkv
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/The.Departed.2006/The.Departed.Extras-Grym@BTNET
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/The.Purge-Election.Year.2016.Bluray.1080p.DTS-HD.x264-Grym/The.Purge-Election.Year.Extras-Grym
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/The.Chronicles.of Narnia.Prince.Caspian/Sample
Ignore extra: /volumeUSB1/usbshare/Completed Downloads/The.Good.Neighbor.2016.HDRip.XviD.AC3-EVO/sample.avi
Could not find a file provider that can handle file "file:///volumeUSB1/usbshare/Completed Downloads/Microsoft Windows 10 Home and Pro x64 Clean ISO/en_windows_10_multiple_editions_x64_dvd_6846432.iso".
org.apache.commons.vfs2.FileSystemException: Could not find a file provider that can handle file "file:///volumeUSB1/usbshare/Completed Downloads/Microsoft Windows 10 Home and Pro x64 Clean ISO/en_windows_10_multiple_editions_x64_dvd_6846432.iso".
        at org.apache.commons.vfs2.impl.DefaultFileSystemManager.createFileSystem(DefaultFileSystemManager.java:1038)
        at net.filebot.archive.ApacheVFS.<init>(ApacheVFS.java:35)
        at net.filebot.archive.Archive$Extractor.newInstance(Archive.java:32)
        at net.filebot.archive.Archive.open(Archive.java:39)
        at net.filebot.media.MediaDetection.isVideoDiskFile(MediaDetection.java:104)
        at net.filebot.cli.ScriptShellMethods.isDisk(ScriptShellMethods.java:105)
        at Script1.acceptFile(Script1.groovy:246)
        at Script1$_resolveInput_closure91.doCall(Script1.groovy:281)
        at net.filebot.cli.ScriptShellMethods.listFiles(ScriptShellMethods.java:76)
        at Script1.resolveInput(Script1.groovy:281)
        at Script1$_resolveInput_closure92.doCall(Script1.groovy:281)
        at Script1.resolveInput(Script1.groovy:281)
        at Script1$_run_closure50.doCall(Script1.groovy:294)
        at Script1.run(Script1.groovy:294)
        at net.filebot.cli.ScriptShell.evaluate(ScriptShell.java:62)
        at net.filebot.cli.ScriptShell.runScript(ScriptShell.java:72)
        at net.filebot.cli.ArgumentProcessor.runScript(ArgumentProcessor.java:113)
        at net.filebot.cli.ArgumentProcessor.run(ArgumentProcessor.java:28)
        at net.filebot.Main.main(Main.java:124)

Re: Filebot stopped working

Posted: 31 Oct 2016, 08:08
by rednoah
This file is crashing the script:

Code: Select all

Could not find a file provider that can handle file "file:///volumeUSB1/usbshare/Completed Downloads/Microsoft Windows 10 Home and Pro x64 Clean ISO/en_windows_10_multiple_editions_x64_dvd_6846432.iso"
Please remove the offending file, or upgrade to the latest beta.


PS: ISO archives are not supported on your platform, so you might as well exclude them all with the --def ignore option.

Re: Filebot stopped working

Posted: 01 Nov 2016, 10:31
by Achandab
Thanks that fixed it. Is there anyway to delete the sample or extra files? they usually contain the word "sample" or "extra" in the filename

Re: Filebot stopped working

Posted: 01 Nov 2016, 10:36
by rednoah
Yes. But if it crashes or doesn't process any files it probably won't execute the cleaner step.

@see viewtopic.php?f=4&t=5#p1341

Re: Filebot stopped working

Posted: 01 Nov 2016, 11:00
by Achandab
excellent. Thanks mate! donation coming your way again!

Re: Filebot stopped working

Posted: 01 Nov 2016, 11:06
by Achandab
okay just had a look, you can define the extensions correct? but the sample files are the same extension as the movie files. Can we define filenames?

Re: Filebot stopped working

Posted: 01 Nov 2016, 11:12
by rednoah
Yes, the terms option:
rednoah wrote:--def exts=pattern override default pattern for what extensions will be cleansed
--def terms=pattern override default pattern for for what paths will be cleansed

Re: Filebot stopped working

Posted: 01 Nov 2016, 11:34
by Achandab
excellent, i thought paths meant the actual directory path. Thanks!