Page 1 of 1
[AMC] Ignore disk image error
Posted: 18 Oct 2017, 06:27
by N3mam
Hey there, sorry for probably noob question. I'am using filebot's amc script for years now without any issues, but recently i started downloading .ISO blu-ray movies and amc is ignoring these files, can't figure out why.
This is my sysinfo:
Code: Select all
FileBot 4.7.9 (r4984)
JNA Native: 5.1.0
MediaInfo: 0.7.93
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2017-05-15 (r500)
Groovy: 2.4.10
JRE: Java(TM) SE Runtime Environment 1.8.0_144
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 1 GB Max Memory / 9 MB Used Memory
OS: Windows 10 (amd64)
Package: MSI
Done ?(?????)?
uTorrent cmd:
Code: Select all
"C:\Program Files\FileBot\filebot.launcher.exe" -script fn:amc --output "E:/KODI" --action copy --conflict auto -non-strict --log-file amc.log --def unsorted=y music=n artwork=n "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
Log from amc:
Code: Select all
Run script [fn:amc] at [Mon Oct 16 14:34:33 CEST 2017]
Parameter: unsorted = y
Parameter: music = n
Parameter: artwork = n
Parameter: ut_label = Movies
Parameter: ut_state = 5
Parameter: ut_title = War.for.the.Planet.of.the.Apes.2017.BluRay.1080p.AVC.DTS-HD.MA7.1-CHDBits
Parameter: ut_kind = %K
Parameter: ut_file =
Parameter: ut_dir = D:\BORDEL\War.for.the.Planet.of.the.Apes.2017.BluRay.1080p.AVC.DTS-HD.MA7.1-CHDBits
Bad ut_kind value: %K
Ignore disk image: D:\BORDEL\War.for.the.Planet.of.the.Apes.2017.BluRay.1080p.AVC.DTS-HD.MA7.1-CHDBits\War.for.the.Planet.of.the.Apes.2017.BluRay.1080p.AVC.DTS-HD.MA7.1-CHDBits.iso
No files selected for processing
Done ヾ(@⌒ー⌒@)ノ
BDMV movie is working just fine, only iso files are ignored.
Thank you for any help
// I dont need to process these .iso files, is it possible to just copy it to one specific folder E:\KODI\Movies ? and if yes how ?
Re: [AMC] Ignore disk image error
Posted: 18 Oct 2017, 09:05
by rednoah
FileBot will only process ISO files that contain a certain file and folder structure, e.g. BDMV, HVDVD_TS, VIDEO_TS, etc.
What is the folder structure inside this particular ISO image?
Re: [AMC] Ignore disk image error
Posted: 18 Oct 2017, 16:39
by N3mam
Its classic BDMV structure
Inside BDMV folder is this

Re: [AMC] Ignore disk image error
Posted: 18 Oct 2017, 18:53
by rednoah
Strange. A MovieObject.bdmv entry should be enough of an indicator. I'll have a look.
Are these files in the root directory of the ISO or is there a folder in the root directory containing these files?
Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 04:40
by N3mam
In the root directory is BDMV and Certificate, inside BDMV are these files.

Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 08:13
by rednoah
Very strange. BDMV should work.
Please call filebot -extract /path/to/iso on the ISO file that doesn't work and post the output.
Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 16:50
by N3mam
OK, so it extracted hundreds of files, but not actual m2ts files, so whole extracted folder has 1,22MB
This is the output
Code: Select all
https://ybin.me/p/5b1b6ba75321a914#bRggaRd4I8WpZGQQYe3Yz6F4siw2kzs+9wgHND15TOY=
Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 18:31
by rednoah
That's probably the reason why it doesn't work. Somehow 7zip sees those files as contents of the ISO image, rather than what you see in Explorer when mounting the image.
Sorry. No idea. I have never seen this before. The files that are extracted look like Java code, which is probably part of the BluRay logic for rendering the menu and custom UI.
Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 19:20
by N3mam
Really weird, is there any way i can bypas it ? something like move whole iso to specific location without procesing it ?
Re: [AMC] Ignore disk image error
Posted: 19 Oct 2017, 19:25
by rednoah
Yes, of course you can do that. Since this ISO file won't be interpreted as video, it'll be processed as "unsorted" and the destination path of unsorted files is up to your custom unsorted format. So you can add an if-then-else just for ISO files there.
Re: [AMC] Ignore disk image error
Posted: 20 Oct 2017, 05:15
by N3mam
Thank you for great support @rednoah
I know you dont have time for this lame questions, but I'am total noob with scripts in general, can you please tell me how i will do this ? I dont know how to to write specific logic for moving ISO's

Or is there some manual for this ?
Re: [AMC] Ignore disk image error
Posted: 20 Oct 2017, 07:47
by rednoah
1.
This is the default unsorted format:
which can easily be modified to change the folder depending on the file extension:
Code: Select all
{ext == /iso/ ? 'ISO' : 'Unsorted'}/{file.structurePathTail}
@see
viewtopic.php?f=5&t=4191
2.
You can and should test formats in the GUI, which will make your life much easier:
viewtopic.php?f=3&t=2072
Re: [AMC] Ignore disk image error
Posted: 20 Oct 2017, 11:25
by N3mam
rednoah wrote: 20 Oct 2017, 07:47
Code: Select all
{ext == /iso/ ? 'ISO' : 'Unsorted'}/{file.structurePathTail}
Sweet, can you tell me, where do i insert this code ?
To the txt file ? or to the uT run program. Sorry I'm new to this

Re: [AMC] Ignore disk image error
Posted: 20 Oct 2017, 14:38
by rednoah
Please read
Change how files will be organized and renamed for details. You can use the
--def unsortedFormat option to pass in your own custom unsorted format.

Use the
@file syntax for reading command-line arguments from external text files. It's convenient for complex command-line arguments because won't need to escape the argument value.
It's good to understand what command-line arguments are first though.

Re: [AMC] Ignore disk image error
Posted: 21 Oct 2017, 21:26
by rednoah
So you have a command-line call. Adding an extra option like this should do the trick:
Code: Select all
--def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}"
e.g.
Code: Select all
filebot -script fn:amc --output "E:/KODI" --action copy --conflict auto -non-strict --log-file amc.log --def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}" --def unsorted=y music=n artwork=n "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
Re: [AMC] Ignore disk image error
Posted: 22 Oct 2017, 11:48
by N3mam
Thank you for the code rednoah
I bought filebot from windows store and now its different story...
sysinfo
Code: Select all
FileBot 4.7.13 (r5200)
JNA Native: 5.1.0
MediaInfo: 0.7.93
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2017-05-15 (r500)
Groovy: 2.4.12
JRE: Java(TM) SE Runtime Environment 1.8.0_144
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 1 GB Max Memory / 19 MB Used Memory
OS: Windows 10 (amd64)
Package: APPX
Done ?(?????)?
test
Code: Select all
filebot -script fn:amc --output "E:/KODI" --action test -non-strict "D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits" --log-file amc.log --def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}"
log
Code: Select all
C:\Users\n3mam>filebot -script fn:amc --output "E:/KODI" --action test -non-strict "D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits" --log-file amc.log --def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}"
Locking C:\Users\n3mam\AppData\Roaming\FileBot\logs\amc.log
Run script [fn:amc] at [Sun Oct 22 13:41:20 CEST 2017]
Parameter: unsortedFormat = {ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}
Argument[0]: D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits
Failed to read disk image: net.sf.sevenzipjbinding.SevenZipException: Archive file can't be opened with none of the registered codecs
Ignore disk image: D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits.iso
No files selected for processing
Done ?(?????)?
Re: [AMC] Ignore disk image error
Posted: 22 Oct 2017, 22:59
by rednoah
You'll probably need to enable unsorted behavior as well via --def unsorted=y.
Re: [AMC] Ignore disk image error
Posted: 23 Oct 2017, 04:47
by N3mam
Its same output with --def unsorted=y
Code: Select all
filebot -script fn:amc --output "E:/KODI" --action test -non-strict "D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits" --log-file amc.log --def unsorted=y --def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}"
Code: Select all
C:\Users\n3mam>filebot -script fn:amc --output "E:/KODI" --action test -non-strict "D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits" --log-file amc.log --def unsorted=y --def unsortedFormat="{ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}"
Locking C:\Users\n3mam\AppData\Roaming\FileBot\logs\amc.log
Run script [fn:amc] at [Mon Oct 23 06:45:00 CEST 2017]
Parameter: unsorted = y
Parameter: unsortedFormat = {ext == /iso/ ? 'ISO' : 'Unsorted'}/{fn}
Argument[0]: D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits
Failed to read disk image: net.sf.sevenzipjbinding.SevenZipException: Archive file can't be opened with none of the registered codecs
Ignore disk image: D:\BORDEL\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits\The.Dark.Tower.2017.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits.iso
No files selected for processing
Done ?(?????)?
Re: [AMC] Ignore disk image error
Posted: 24 Oct 2017, 17:22
by N3mam
Any idea what's wrong ? RAR archives working just fine, only ISO's (all iso files) are not working
Re: [AMC] Ignore disk image error
Posted: 24 Oct 2017, 18:40
by rednoah
Sorry, looks like ISO files are treated slightly special, and since they're ignored before any files are selected, they're not considered for processing, so neither sorted nor unsorted.
FileBot may not be able to do what you want it to do. If you want to treat ISO files special, then I recommend using a custom PowerShell / CMD command to deal with them before calling filebot.
Re: [AMC] Ignore disk image error
Posted: 25 Oct 2017, 05:44
by N3mam
Well then i must download only BDMV BD's i guess :/
Any chance to copy files without procesing them ? Like - if input = iso then copy "X location"
Re: [AMC] Ignore disk image error
Posted: 25 Oct 2017, 09:45
by rednoah
Yes, but not via the amc script.
e.g.
Code: Select all
filebot -rename -r /files --db xattr -non-strict --filter "ext =~ /iso/" --output /iso/files --format "{fn}"

A simple
find ... | mv ... would do the same. But this is a FileBot forum, not a PowerShell / Bash forum.

Re: [AMC] Ignore disk image error
Posted: 01 Nov 2017, 13:07
by destroyer4000
Hey,
Unfortunately I have the same problem. If I try to extract the iso file, there are many .class files, but not my BDMV structure. Opening with 7zip directly results in the same error.
Code: Select all
FileBot 4.7.9 (r4984)
JNA Native: 5.1.0
MediaInfo: 0.7.93
7-Zip-JBinding: 9.20
Chromaprint: 1.4.2
Extended Attributes: OK
Unicode Filesystem: OK
Script Bundle: 2017-10-30 (r508)
Groovy: 2.4.10
JRE: Java(TM) SE Runtime Environment 1.8.0_151
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 4 Core / 878 MB Max Memory / 14 MB Used Memory
OS: Windows 10 (amd64)
Package: MSI
Done ?(?????)?
Re: [AMC] Ignore disk image error
Posted: 04 Nov 2017, 12:07
by destroyer4000
*bump*
Is there now a solution fpr renaming ISO Fiels with AMC? Or instead use the smart detection function from filebot via cli? Because with the normal rename files, the iso renaming works, but it's not very powerful in the detection. AMC works much better. Would be very cool, tu solve this issue with 7zip. Is there a way to implement another extractor? For example winrar? It does read the iso format in the right way with the bdmv structure, what 7z, even with the normal installed version is not able to do.
Regards
Re: [AMC] Ignore disk image error
Posted: 04 Nov 2017, 12:22
by rednoah
If you have the
7z command-line tool installed, then you can configure FileBot to use that by passing in the following Java system property:
Code: Select all
-Dnet.filebot.Archive.extractor=SevenZipExecutable

Only tested on Linux. Not tested on Windows.
EDIT:
Main reason why I can't do anything here is because I can't test or reproduce the issue. Can anybody share one of the BD images for me?
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 10:19
by destroyer4000
Hey,
Thank You for your reply. I downloaded the 7za.exe, provided at
http://www.7-zip.de. If I use it then in command line manually with the command "l", to list the archive's content, some isos show the .class data. Some others cannot be opened because of an error: "Can not open file as archive". Example for the last behaviour is the following iso "Sintel-Bluray.iso":
http://download.blender.org/durian/movies/.
Examples for the .class problem are "kindergarten cop" or one of the "lord of the rings - the fellowship of the ring" Blu Ray Discs.
Content of the first lord of the rings disc provided by the "l" command using 7za:
Code: Select all
2011-06-01 10:09:21 D.... 0 0 a
2011-06-01 08:08:20 ....A 1839 758 a\a.class
2011-06-01 08:08:20 ....A 4218 2303 a\b.class
2011-06-01 08:08:20 ....A 875 433 a\c.class
2011-06-01 10:09:22 D.... 0 0 b
2011-06-01 08:08:20 ....A 2580 1245 b\a.class
2011-06-01 08:08:20 ....A 4768 1925 b\b.class
2011-06-01 08:08:20 ....A 4445 1878 b\c.class
2011-06-01 08:08:20 ....A 947 601 b\d.class
2011-06-01 08:08:20 ....A 10857 4245 b\e.class
2011-06-01 08:08:20 ....A 5529 2314 b\f.class
2011-06-01 08:08:20 ....A 2719 1442 b\g.class
2011-06-01 10:09:21 D.... 0 0 c
2011-06-01 08:08:20 ....A 7993 3511 c\a.class
2011-06-01 08:08:20 ....A 834 478 c\b.class
2011-06-01 08:08:20 ....A 1555 854 c\c.class
2011-06-01 08:08:20 ....A 1430 799 c\d.class
2011-06-01 10:09:21 D.... 0 0 com
2011-06-01 10:09:22 D.... 0 0 com\sony
2011-06-01 10:09:21 D.... 0 0 com\sony\dadc
2011-06-01 10:09:22 D.... 0 0 com\sony\dadc\bdj
2011-06-01 08:08:20 ....A 1548 741 com\sony\dadc\bdj\a.class
2011-06-01 08:08:20 ....A 1830 933 com\sony\dadc\bdj\b.class
2011-06-01 10:09:22 ....A 336 199 com\sony\dadc\bdj\bluray.Main.perm
2011-06-01 08:08:20 ....A 1772 905 com\sony\dadc\bdj\c.class
2011-06-01 08:08:20 ....A 991 498 com\sony\dadc\bdj\d.class
2011-06-01 08:08:20 ....A 10867 5005 com\sony\dadc\bdj\DefaultBDJApp.class
2011-06-01 08:08:20 ....A 5526 2649 com\sony\dadc\bdj\e.class
2011-06-01 08:08:20 ....A 351 235 com\sony\dadc\bdj\Main.class
2011-06-01 10:09:22 D.... 0 0 com\sony\dadc\bdj\media
2011-06-01 08:08:20 ....A 4988 1924 com\sony\dadc\bdj\media\a.class
2011-06-01 08:08:20 ....A 2485 1178 com\sony\dadc\bdj\media\MyAddedValueVideo.class
2011-06-01 08:08:20 ....A 1662 843 com\sony\dadc\bdj\media\MyEndWarningVideo.class
2011-06-01 08:08:20 ....A 2737 1466 com\sony\dadc\bdj\media\MyFeatureVideo.class
2011-06-01 10:09:22 D.... 0 0 com\sony\dadc\bdj\utility
2011-06-01 08:08:20 ....A 4317 1699 com\sony\dadc\bdj\utility\a.class
2011-06-01 08:08:20 ....A 6242 3124 com\sony\dadc\bdj\utility\b.class
2011-06-01 08:08:20 ....A 529 341 com\sony\dadc\bdj\utility\c.class
2011-06-01 08:08:20 ....A 3783 1776 com\sony\dadc\bdj\utility\d.class
2011-06-01 08:08:20 ....A 9039 4147 com\sony\dadc\bdj\utility\e.class
2011-06-01 08:08:20 ....A 729 421 com\sony\dadc\bdj\utility\MyPopupTimer.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj
2011-06-01 08:08:20 ....A 3719 2031 com\sony\spe\bdj\a.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj\animation
2011-06-01 08:08:20 ....A 1502 691 com\sony\spe\bdj\animation\a.class
2011-06-01 08:08:20 ....A 1950 1045 com\sony\spe\bdj\animation\aa.class
2011-06-01 08:08:20 ....A 842 497 com\sony\spe\bdj\animation\ab.class
2011-06-01 08:08:20 ....A 4446 2297 com\sony\spe\bdj\animation\Animation.class
2011-06-01 08:08:20 ....A 121 115 com\sony\spe\bdj\animation\b.class
2011-06-01 08:08:20 ....A 2473 1194 com\sony\spe\bdj\animation\c.class
2011-06-01 08:08:20 ....A 4192 1664 com\sony\spe\bdj\animation\d.class
2011-06-01 08:08:20 ....A 1781 1048 com\sony\spe\bdj\animation\e.class
2011-06-01 08:08:20 ....A 1426 712 com\sony\spe\bdj\animation\f.class
2011-06-01 08:08:20 ....A 382 256 com\sony\spe\bdj\animation\g.class
2011-06-01 08:08:20 ....A 1046 544 com\sony\spe\bdj\animation\h.class
2011-06-01 08:08:20 ....A 2444 1087 com\sony\spe\bdj\animation\i.class
2011-06-01 08:08:20 ....A 218 162 com\sony\spe\bdj\animation\j.class
2011-06-01 08:08:20 ....A 288 191 com\sony\spe\bdj\animation\k.class
2011-06-01 08:08:20 ....A 292 195 com\sony\spe\bdj\animation\l.class
2011-06-01 08:08:20 ....A 283 216 com\sony\spe\bdj\animation\m.class
2011-06-01 08:08:20 ....A 289 219 com\sony\spe\bdj\animation\n.class
2011-06-01 08:08:20 ....A 394 282 com\sony\spe\bdj\animation\o.class
2011-06-01 08:08:20 ....A 444 302 com\sony\spe\bdj\animation\p.class
2011-06-01 08:08:20 ....A 236 178 com\sony\spe\bdj\animation\q.class
2011-06-01 08:08:20 ....A 222 167 com\sony\spe\bdj\animation\r.class
2011-06-01 08:08:20 ....A 281 208 com\sony\spe\bdj\animation\s.class
2011-06-01 08:08:20 ....A 228 174 com\sony\spe\bdj\animation\t.class
2011-06-01 08:08:20 ....A 224 170 com\sony\spe\bdj\animation\u.class
2011-06-01 08:08:20 ....A 276 202 com\sony\spe\bdj\animation\v.class
2011-06-01 08:08:20 ....A 99 95 com\sony\spe\bdj\animation\w.class
2011-06-01 08:08:20 ....A 1287 553 com\sony\spe\bdj\animation\x.class
2011-06-01 08:08:20 ....A 1817 786 com\sony\spe\bdj\animation\y.class
2011-06-01 08:08:20 ....A 696 428 com\sony\spe\bdj\animation\z.class
2011-06-01 08:08:20 ....A 120 114 com\sony\spe\bdj\AssetLoaderListener.class
2011-06-01 08:08:20 ....A 641 408 com\sony\spe\bdj\b.class
2011-06-01 08:08:20 ....A 3624 1663 com\sony\spe\bdj\BDJApp.class
2011-06-01 08:08:20 ....A 676 393 com\sony\spe\bdj\c.class
2011-06-01 08:08:20 ....A 676 392 com\sony\spe\bdj\d.class
2011-06-01 08:08:20 ....A 2195 1154 com\sony\spe\bdj\e.class
2011-06-01 08:08:20 ....A 839 412 com\sony\spe\bdj\f.class
2011-06-01 08:08:20 ....A 89 84 com\sony\spe\bdj\g.class
2011-06-01 08:08:20 ....A 1353 799 com\sony\spe\bdj\h.class
2011-06-01 08:08:20 ....A 5187 2659 com\sony\spe\bdj\i.class
2011-06-01 08:08:20 ....A 500 331 com\sony\spe\bdj\j.class
2011-06-01 08:08:20 ....A 911 529 com\sony\spe\bdj\k.class
2011-06-01 08:08:20 ....A 1403 768 com\sony\spe\bdj\l.class
2011-06-01 08:08:20 ....A 1493 817 com\sony\spe\bdj\m.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj\media
2011-06-01 08:08:20 ....A 589 345 com\sony\spe\bdj\media\a.class
2011-06-01 08:08:20 ....A 2623 1269 com\sony\spe\bdj\media\AddedValueVideo.class
2011-06-01 08:08:20 ....A 2784 1300 com\sony\spe\bdj\media\AngleVideo.class
2011-06-01 08:08:20 ....A 433 250 com\sony\spe\bdj\media\b.class
2011-06-01 08:08:20 ....A 1793 952 com\sony\spe\bdj\media\BackgroundVideo.class
2011-06-01 08:08:20 ....A 16329 6717 com\sony\spe\bdj\media\BDJVideo.class
2011-06-01 08:08:20 ....A 4256 2063 com\sony\spe\bdj\media\BookmarkManager.class
2011-06-01 08:08:20 ....A 844 475 com\sony\spe\bdj\media\c.class
2011-06-01 08:08:20 ....A 621 369 com\sony\spe\bdj\media\d.class
2011-06-01 08:08:20 ....A 1337 719 com\sony\spe\bdj\media\e.class
2011-06-01 08:08:20 ....A 106 99 com\sony\spe\bdj\media\f.class
2011-06-01 08:08:20 ....A 2726 1445 com\sony\spe\bdj\media\FeatureVideo.class
2011-06-01 08:08:20 ....A 127 112 com\sony\spe\bdj\media\g.class
2011-06-01 08:08:20 ....A 168 133 com\sony\spe\bdj\media\h.class
2011-06-01 08:08:20 ....A 2134 956 com\sony\spe\bdj\media\i.class
2011-06-01 08:08:20 ....A 6025 2544 com\sony\spe\bdj\media\j.class
2011-06-01 08:08:20 ....A 168 133 com\sony\spe\bdj\media\k.class
2011-06-01 08:08:20 ....A 95 89 com\sony\spe\bdj\media\l.class
2011-06-01 08:08:20 ....A 881 517 com\sony\spe\bdj\media\LogoVideo.class
2011-06-01 08:08:20 ....A 1258 653 com\sony\spe\bdj\media\MultiBDJVideo.class
2011-06-01 08:08:20 ....A 1847 995 com\sony\spe\bdj\media\VideoTimeline.class
2011-06-01 08:08:20 ....A 1897 974 com\sony\spe\bdj\media\VirtualPlaylistVideo.class
2011-06-01 08:08:20 ....A 1080 601 com\sony\spe\bdj\n.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj\net
2011-06-01 08:08:20 ....A 2275 1072 com\sony\spe\bdj\net\a.class
2011-06-01 08:08:20 ....A 1746 969 com\sony\spe\bdj\net\b.class
2011-06-01 08:08:20 ....A 10783 4656 com\sony\spe\bdj\net\c.class
2011-06-01 08:08:20 ....A 659 430 com\sony\spe\bdj\net\ConnectionThread.class
2011-06-01 08:08:20 ....A 1370 867 com\sony\spe\bdj\net\d.class
2011-06-01 08:08:20 ....A 1603 891 com\sony\spe\bdj\net\e.class
2011-06-01 08:08:20 ....A 157 126 com\sony\spe\bdj\net\f.class
2011-06-01 08:08:20 ....A 3122 1539 com\sony\spe\bdj\net\g.class
2011-06-01 08:08:20 ....A 1385 825 com\sony\spe\bdj\net\h.class
2011-06-01 08:08:20 ....A 2771 1493 com\sony\spe\bdj\net\i.class
2011-06-01 08:08:20 ....A 308 224 com\sony\spe\bdj\net\j.class
2011-06-01 08:08:20 ....A 3177 1734 com\sony\spe\bdj\net\k.class
2011-06-01 08:08:20 ....A 3701 1874 com\sony\spe\bdj\net\l.class
2011-06-01 08:08:20 ....A 1048 485 com\sony\spe\bdj\net\m.class
2011-06-01 08:08:20 ....A 1152 669 com\sony\spe\bdj\net\n.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj\ui
2011-06-01 08:08:20 ....A 2399 1129 com\sony\spe\bdj\ui\a.class
2011-06-01 08:08:20 ....A 684 364 com\sony\spe\bdj\ui\aa.class
2011-06-01 08:08:20 ....A 2297 1197 com\sony\spe\bdj\ui\ab.class
2011-06-01 08:08:20 ....A 797 436 com\sony\spe\bdj\ui\ac.class
2011-06-01 08:08:20 ....A 5119 1980 com\sony\spe\bdj\ui\ad.class
2011-06-01 08:08:20 ....A 3398 1730 com\sony\spe\bdj\ui\ae.class
2011-06-01 08:08:20 ....A 1507 780 com\sony\spe\bdj\ui\af.class
2011-06-01 08:08:20 ....A 93 89 com\sony\spe\bdj\ui\ag.class
2011-06-01 08:08:20 ....A 2906 1317 com\sony\spe\bdj\ui\ah.class
2011-06-01 08:08:20 ....A 1194 603 com\sony\spe\bdj\ui\ai.class
2011-06-01 08:08:20 ....A 25352 9127 com\sony\spe\bdj\ui\aj.class
2011-06-01 08:08:20 ....A 244 188 com\sony\spe\bdj\ui\ak.class
2011-06-01 08:08:20 ....A 2124 1070 com\sony\spe\bdj\ui\al.class
2011-06-01 08:08:20 ....A 811 443 com\sony\spe\bdj\ui\am.class
2011-06-01 08:08:20 ....A 1367 682 com\sony\spe\bdj\ui\an.class
2011-06-01 08:08:20 ....A 1665 853 com\sony\spe\bdj\ui\ao.class
2011-06-01 08:08:20 ....A 3303 1596 com\sony\spe\bdj\ui\ap.class
2011-06-01 08:08:20 ....A 2806 1214 com\sony\spe\bdj\ui\aq.class
2011-06-01 08:08:20 ....A 5567 2471 com\sony\spe\bdj\ui\ar.class
2011-06-01 08:08:20 ....A 2960 1474 com\sony\spe\bdj\ui\as.class
2011-06-01 08:08:20 ....A 2682 1395 com\sony\spe\bdj\ui\at.class
2011-06-01 08:08:20 ....A 2149 974 com\sony\spe\bdj\ui\au.class
2011-06-01 08:08:20 ....A 3468 1681 com\sony\spe\bdj\ui\b.class
2011-06-01 08:08:20 ....A 5521 2189 com\sony\spe\bdj\ui\c.class
2011-06-01 08:08:20 ....A 2462 1174 com\sony\spe\bdj\ui\d.class
2011-06-01 08:08:20 ....A 1845 910 com\sony\spe\bdj\ui\e.class
2011-06-01 08:08:20 ....A 5028 2489 com\sony\spe\bdj\ui\EventManager.class
2011-06-01 08:08:20 ....A 7054 2890 com\sony\spe\bdj\ui\f.class
2011-06-01 08:08:20 ....A 100 76 com\sony\spe\bdj\ui\g.class
2011-06-01 08:08:20 ....A 1218 524 com\sony\spe\bdj\ui\h.class
2011-06-01 08:08:20 ....A 2043 751 com\sony\spe\bdj\ui\i.class
2011-06-01 08:08:20 ....A 1615 638 com\sony\spe\bdj\ui\j.class
2011-06-01 08:08:20 ....A 103 96 com\sony\spe\bdj\ui\k.class
2011-06-01 08:08:20 ....A 2491 1193 com\sony\spe\bdj\ui\l.class
2011-06-01 08:08:20 ....A 4229 2000 com\sony\spe\bdj\ui\m.class
2011-06-01 08:08:20 ....A 2938 1288 com\sony\spe\bdj\ui\n.class
2011-06-01 08:08:20 ....A 2095 1069 com\sony\spe\bdj\ui\o.class
2011-06-01 08:08:20 ....A 1813 847 com\sony\spe\bdj\ui\p.class
2011-06-01 08:08:20 ....A 238 162 com\sony\spe\bdj\ui\q.class
2011-06-01 08:08:20 ....A 2569 1262 com\sony\spe\bdj\ui\r.class
2011-06-01 08:08:20 ....A 4446 2114 com\sony\spe\bdj\ui\s.class
2011-06-01 08:08:20 ....A 2821 1469 com\sony\spe\bdj\ui\t.class
2011-06-01 08:08:20 ....A 7736 3566 com\sony\spe\bdj\ui\u.class
2011-06-01 08:08:20 ....A 403 243 com\sony\spe\bdj\ui\v.class
2011-06-01 08:08:20 ....A 403 243 com\sony\spe\bdj\ui\w.class
2011-06-01 08:08:20 ....A 403 243 com\sony\spe\bdj\ui\x.class
2011-06-01 08:08:20 ....A 403 243 com\sony\spe\bdj\ui\y.class
2011-06-01 08:08:20 ....A 403 243 com\sony\spe\bdj\ui\z.class
2011-06-01 10:09:22 D.... 0 0 com\sony\spe\bdj\utility
2011-06-01 08:08:20 ....A 2152 1032 com\sony\spe\bdj\utility\a.class
2011-06-01 08:08:20 ....A 908 471 com\sony\spe\bdj\utility\b.class
2011-06-01 08:08:20 ....A 2657 1322 com\sony\spe\bdj\utility\c.class
2011-06-01 08:08:20 ....A 844 416 com\sony\spe\bdj\utility\d.class
2011-06-01 08:08:20 ....A 2570 1282 com\sony\spe\bdj\utility\e.class
2011-06-01 08:08:20 ....A 15328 6948 com\sony\spe\bdj\utility\f.class
2011-06-01 08:08:20 ....A 2625 1257 com\sony\spe\bdj\utility\g.class
2011-06-01 08:08:20 ....A 1142 574 com\sony\spe\bdj\utility\h.class
2011-06-01 08:08:20 ....A 887 481 com\sony\spe\bdj\utility\PopupTimer.class
2011-06-01 10:09:21 D.... 0 0 d
2011-06-01 08:08:20 ....A 4802 2259 d\a.class
2011-06-01 08:08:20 ....A 12377 5359 d\b.class
2011-06-01 08:08:20 ....A 335 235 d\c.class
2011-06-01 10:09:21 D.... 0 0 e
2011-06-01 08:08:20 ....A 915 424 e\a.class
2011-06-01 08:08:20 ....A 2728 1396 e\b.class
2011-06-01 08:08:20 ....A 3220 1166 e\c.class
2011-06-01 10:09:21 D.... 0 0 f
2011-06-01 08:08:20 ....A 11262 5209 f\a.class
2011-06-01 10:09:21 D.... 0 0 g
2011-06-01 08:08:20 ....A 4015 1764 g\a.class
2011-06-01 08:08:20 ....A 711 320 g\b.class
2011-06-01 08:08:20 ....A 4962 2062 g\c.class
2011-06-01 08:08:20 ....A 2060 1016 g\d.class
2011-06-01 08:08:20 ....A 6327 2486 g\e.class
2011-06-01 08:08:20 ....A 3231 1416 g\f.class
2011-06-01 10:09:22 D.... 0 0 h
2011-06-01 08:08:20 ....A 1551 735 h\a.class
2011-06-01 08:08:20 ....A 498 281 h\b.class
2011-06-01 08:08:20 ....A 7236 2689 h\c.class
2011-06-01 10:09:22 D.... 0 0 i
2011-06-01 08:08:20 ....A 1364 717 i\a.class
2011-06-01 08:08:20 ....A 4067 1470 i\b.class
2011-06-01 08:08:20 ....A 128 114 i\c.class
2011-06-01 10:09:22 D.... 0 0 j
2011-06-01 08:08:20 ....A 5877 2692 j\a.class
2011-06-01 08:08:20 ....A 1345 668 j\aa.class
2011-06-01 08:08:20 ....A 11162 4943 j\ab.class
2011-06-01 08:08:20 ....A 6525 2811 j\ac.class
2011-06-01 08:08:20 ....A 3409 1595 j\b.class
2011-06-01 08:08:20 ....A 3759 1749 j\c.class
2011-06-01 08:08:20 ....A 2935 1318 j\d.class
2011-06-01 08:08:20 ....A 2158 954 j\e.class
2011-06-01 08:08:20 ....A 6540 2823 j\f.class
2011-06-01 08:08:20 ....A 848 474 j\g.class
2011-06-01 08:08:20 ....A 1245 652 j\h.class
2011-06-01 08:08:20 ....A 1037 581 j\i.class
2011-06-01 08:08:20 ....A 6379 2902 j\j.class
2011-06-01 08:08:20 ....A 3354 1543 j\k.class
2011-06-01 08:08:20 ....A 4644 2229 j\l.class
2011-06-01 08:08:20 ....A 268 169 j\m.class
2011-06-01 08:08:20 ....A 685 369 j\n.class
2011-06-01 08:08:20 ....A 1552 745 j\o.class
2011-06-01 08:08:20 ....A 2098 999 j\p.class
2011-06-01 08:08:20 ....A 6466 2919 j\q.class
2011-06-01 08:08:20 ....A 4951 2183 j\r.class
2011-06-01 08:08:20 ....A 6679 3149 j\s.class
2011-06-01 08:08:20 ....A 1787 904 j\t.class
2011-06-01 08:08:20 ....A 3119 1441 j\u.class
2011-06-01 08:08:20 ....A 6182 2809 j\v.class
2011-06-01 08:08:20 ....A 4664 2139 j\w.class
2011-06-01 08:08:20 ....A 1476 758 j\x.class
2011-06-01 08:08:20 ....A 4801 2226 j\y.class
2011-06-01 08:08:20 ....A 5059 2329 j\z.class
2011-06-01 10:09:22 D.... 0 0 k
2011-06-01 08:08:20 ....A 2666 1392 k\a.class
2011-06-01 08:08:20 ....A 1566 853 k\b.class
2011-06-01 10:09:22 D.... 0 0 l
2011-06-01 08:08:20 ....A 513 335 l\a.class
2011-06-01 08:08:20 ....A 1728 932 l\b.class
2011-06-01 08:08:20 ....A 794 448 l\c.class
2011-06-01 08:08:20 ....A 658 406 l\d.class
2011-06-01 08:08:20 ....A 497 331 l\e.class
2011-06-01 08:08:20 ....A 495 330 l\f.class
2011-06-01 08:08:20 ....A 788 457 l\g.class
2011-06-01 08:08:20 ....A 790 460 l\h.class
2011-06-01 08:08:20 ....A 2725 1450 l\i.class
2011-06-01 08:08:20 ....A 403 265 l\j.class
2011-06-01 08:08:20 ....A 1030 564 l\k.class
2011-06-01 08:08:20 ....A 797 445 l\l.class
2011-06-01 10:09:22 D.... 0 0 m
2011-06-01 08:08:20 ....A 555 363 m\a.class
2011-06-01 08:08:20 ....A 458 290 m\b.class
2011-06-01 08:08:20 ....A 420 271 m\c.class
2011-06-01 08:08:20 ....A 1517 734 m\d.class
2011-06-01 08:08:20 ....A 270 195 m\e.class
2011-06-01 10:09:21 D.... 0 0 META-INF
2011-06-01 10:09:24 ....A 23583 8506 META-INF\MANIFEST.MF
2011-06-01 10:09:25 ....A 2094 1161 META-INF\SIG-BD00.RSA
2011-06-01 10:09:25 ....A 23688 8569 META-INF\SIG-BD00.SF
2011-06-01 10:09:22 D.... 0 0 n
2011-06-01 08:08:20 ....A 7250 3429 n\a.class
2011-06-01 08:08:20 ....A 2582 1305 n\b.class
2011-06-01 08:08:20 ....A 3017 1571 n\c.class
2011-06-01 08:08:20 ....A 19463 12646 n\d.class
2011-06-01 08:08:20 ....A 19463 12649 n\e.class
2011-06-01 08:08:20 ....A 19463 12648 n\f.class
2011-06-01 08:08:20 ....A 19463 12637 n\g.class
2011-06-01 08:08:20 ....A 19463 12650 n\h.class
2011-06-01 08:08:20 ....A 19463 12644 n\i.class
2011-06-01 08:08:20 ....A 19463 12653 n\j.class
2011-06-01 08:08:20 ....A 656 374 n\k.class
2011-06-01 08:08:20 ....A 2007 951 n\l.class
2011-06-01 08:08:20 ....A 950 500 n\m.class
2011-06-01 08:08:20 ....A 873 518 n\n.class
2011-06-01 08:08:20 ....A 1948 1021 n\o.class
2011-06-01 08:08:20 ....A 1551 840 n\p.class
2011-06-01 08:08:20 ....A 2298 1048 n\q.class
2011-06-01 08:08:20 ....A 6803 3130 n\r.class
2011-06-01 08:08:20 ....A 20662 12172 n\s.class
2011-06-01 10:09:22 D.... 0 0 o
2011-06-01 08:08:20 ....A 3498 1645 o\a.class
2011-06-01 08:08:20 ....A 1248 694 o\b.class
2011-06-01 08:08:20 ....A 270 157 o\c.class
2011-06-01 08:08:20 ....A 732 449 o\d.class
2011-06-01 08:08:20 ....A 1211 674 o\e.class
2011-06-01 08:08:20 ....A 2238 1097 o\f.class
2011-06-01 08:08:20 ....A 5765 2294 o\g.class
2011-06-01 08:08:20 ....A 1433 814 o\h.class
2011-06-01 08:08:20 ....A 1690 874 o\i.class
2011-06-01 08:08:20 ....A 229 135 o\j.class
2011-06-01 08:08:20 ....A 1340 753 o\k.class
2011-06-01 10:09:22 D.... 0 0 org
2011-06-01 10:09:22 D.... 0 0 org\w3c
2011-06-01 10:09:22 D.... 0 0 org\w3c\dom
2011-06-01 08:08:20 ....A 399 256 org\w3c\dom\Attr.class
2011-06-01 08:08:20 ....A 100 84 org\w3c\dom\CDATASection.class
2011-06-01 08:08:20 ....A 516 262 org\w3c\dom\CharacterData.class
2011-06-01 08:08:20 ....A 104 89 org\w3c\dom\Comment.class
2011-06-01 08:08:20 ....A 2059 692 org\w3c\dom\Document.class
2011-06-01 08:08:20 ....A 104 87 org\w3c\dom\DocumentFragment.class
2011-06-01 08:08:20 ....A 289 211 org\w3c\dom\DocumentType.class
2011-06-01 08:08:20 ....A 400 208 org\w3c\dom\DOMConfiguration.class
2011-06-01 08:08:20 ....A 433 278 org\w3c\dom\DOMError.class
2011-06-01 08:08:20 ....A 129 102 org\w3c\dom\DOMErrorHandler.class
2011-06-01 08:08:20 ....A 999 550 org\w3c\dom\DOMException.class
2011-06-01 08:08:20 ....A 515 219 org\w3c\dom\DOMImplementation.class
2011-06-01 08:08:20 ....A 163 130 org\w3c\dom\DOMImplementationList.class
2011-06-01 08:08:20 ....A 265 142 org\w3c\dom\DOMImplementationSource.class
2011-06-01 08:08:20 ....A 267 191 org\w3c\dom\DOMLocator.class
2011-06-01 08:08:20 ....A 185 147 org\w3c\dom\DOMStringList.class
2011-06-01 08:08:20 ....A 1496 439 org\w3c\dom\Element.class
2011-06-01 08:08:20 ....A 263 185 org\w3c\dom\Entity.class
2011-06-01 08:08:20 ....A 103 88 org\w3c\dom\EntityReference.class
2011-06-01 08:08:20 ....A 525 243 org\w3c\dom\NamedNodeMap.class
2011-06-01 08:08:20 ....A 272 174 org\w3c\dom\NameList.class
2011-06-01 08:08:20 ....A 2527 992 org\w3c\dom\Node.class
2011-06-01 08:08:20 ....A 137 119 org\w3c\dom\NodeList.class
2011-06-01 08:08:20 ....A 163 131 org\w3c\dom\Notation.class
2011-06-01 08:08:20 ....A 265 183 org\w3c\dom\ProcessingInstruction.class
2011-06-01 08:08:20 ....A 365 233 org\w3c\dom\Text.class
2011-06-01 08:08:20 ....A 400 252 org\w3c\dom\TypeInfo.class
2011-06-01 08:08:20 ....A 375 233 org\w3c\dom\UserDataHandler.class
2011-06-01 08:08:20 ....A 1146 535 org\w3c\dom\Utility.class
2011-06-01 10:09:22 D.... 0 0 p
2011-06-01 08:08:20 ....A 1325 615 p\a.class
2011-06-01 08:08:20 ....A 942 472 p\b.class
2011-06-01 08:08:20 ....A 5159 1409 p\c.class
2011-06-01 08:08:20 ....A 3536 1326 p\d.class
2011-06-01 08:08:20 ....A 1555 727 p\e.class
2011-06-01 08:08:20 ....A 4055 1663 p\f.class
2011-06-01 08:08:20 ....A 560 336 p\g.class
2011-06-01 08:08:20 ....A 316 224 p\h.class
2011-06-01 08:08:20 ....A 719 426 p\i.class
2011-06-01 08:08:20 ....A 1970 1046 p\j.class
2011-06-01 10:09:22 D.... 0 0 q
2011-06-01 08:08:20 ....A 4486 2331 q\a.class
2011-06-01 08:08:20 ....A 6140 3126 q\b.class
2011-06-01 10:09:22 D.... 0 0 r
2011-06-01 08:08:20 ....A 2303 1352 r\a.class
2011-06-01 10:09:22 D.... 0 0 s
2011-06-01 08:08:20 ....A 176 131 s\a.class
2011-06-01 08:08:20 ....A 84 77 s\b.class
2011-06-01 08:08:20 ....A 961 583 s\c.class
2011-06-01 08:08:20 ....A 2614 1168 s\d.class
2011-06-01 08:08:20 ....A 73 70 version.txt
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 10:42
by rednoah
I guess not all *.iso files are made the same. Since the latest 7z also can't deal with those files, FileBot will not be able to fix this particular issue in the near future.
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 11:03
by destroyer4000
Thank you,
Do you think one can use winrar instead of 7zip. It does extract the iso files correctly. Are there any 7zip releases which can do the iso extraction?
EDIT: Have tested PowerIso, It can open the iso file perfectly without any issues via cli. So filebot could see the content of the iso and could treat it as an "movie file"?
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 11:29
by rednoah
Support for WinRAR or PowerISO is not planned. It's too much effort to implement and maintain a feature that only a very small minority of Windows users would be using.
If you're inclined to spend time on this issue yourself, then you could make your own "7z" command that accepts the same options and gives the same output as the real 7z but using other tools internally.
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 11:42
by destroyer4000
Okay,
Unfortunately my Java programming skills are very low. I could try it... But could I instead not disable the iso detection feature and instead ignore the detection whether it is a movie or an other type of data? Because my movie isos are all in the same folder. There are no other iso files than blu rays.
Would be very nice

Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 11:51
by rednoah
No need for the amc script then. Just process them yourself:
Code: Select all
filebot -rename *.iso --db TheMovieDB -non-strict --action test
Code: Select all
Rename movies using [TheMovieDB]
Auto-detect movie from context: [Sintel-Bluray.iso]
[TEST] From [Sintel-Bluray.iso] to [Sintel (2010).iso]
Processed 1 files
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 13:02
by destroyer4000
okay thank you,
but how can I get it working with recursive scanning? I have problems with the fillter attribute. How can I archieve the scan of "iso only files" in subdirectories" and get them moved to a destination?
EDIT. This is my current line
Code: Select all
filebot -rename -r "Z:\movies" --db TheMovieDB -non-strict --filter "ext =~ /iso/" --format "Z:\movies\{ny}\{fn}" --action move
Re: [AMC] Ignore disk image error
Posted: 05 Nov 2017, 22:53
by rednoah
1.
--filter is for filtering movie matches, not input files.
2.
If you're using bash, then it's easy to select a set of specific files and then call filebot with that:
viewtopic.php?f=4&t=4788
If you're using CMD or PowerShell then you're kinda screwed. You might find a solution on Google though.