Replies: 1 comment 1 reply
-
I'm not overly fond of the code complexity that will be required to support this. It would require the additional checks to prohibit users from pushing ISO where prohibited, otherwise it'll likely end up annoying a bunch of site staffers. I know 3D is usually required in ISO format, but is there really a huge market for ISO otherwise? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Having the option to be able to upload .iso's automated would be nice.
I think it should be pretty straightforward in theory.
For example on windows mounting the disk as Z: and then running the normal routine from Z: instead of the iso path like mediainfo/bdinfo, screenshots, etc..
Then dismount it and use the iso path for hashing. Repeat if there are more then 1 disk, like it would do with dvd/bluray.
Windows (works from both cmd and ps):
PowerShell Mount-DiskImage -ImagePath "test.iso"
PowerShell Dismount-DiskImage -ImagePath "test.iso"
Linux:
sudo mkdir /media/iso
sudo mount /path/to/image.iso /media/iso -o loop
sudo umount /media/iso
Beta Was this translation helpful? Give feedback.
All reactions