pycdlib
pycdlib copied to clipboard
Python library to read and write ISOs
I rip my PS3 disks into ISO on my custom firmware PS3. I wrote a small tool using pycdlib to extract the DISC-ID number from the ISO (stored in the...
Parsing an iso created usign the tool 'makeps3iso' fails with the exception : Traceback (most recent call last): File "/data/sahlberg/pop-fe/./ps3discid.py", line 23, in iso.open(path) File "/home/sahlberg/.local/lib/python3.10/site-packages/pycdlib/pycdlib.py", line 4123, in open...
Is it possible at all that you could rework the VolumeDateDescriptor class as a class inheriting a datetime object, with the initialization overridden to parse ISO9660 dates? ```py def date_convert(vdd:...
[test.iso.zip](https://github.com/clalancette/pycdlib/files/8884749/test.iso.zip) contains an image with an empty UDF 2.01 filesystem. It also contains a runt ISO 9660 filesystem for compatibility with tools (and some hardware) that assume all UDF images...
Hi clalancette, Thanks for creating this project. It works great on Linux ISOs! I am trying to use it to add files and directories on Windows ISOs using the examples....
There are issues with ISO files created by PowerISO that contain files that use non ascii characters. For example I stumbled upon a sample with Vietnamese letters. This causes pycdlib...
Hi there, I was wondering if there would be any way for this library to allow me to read "HD" style UDF images that are made via: ``` mkudffs -m...
I hope this is a different problem from #45 since that one is marked as fixed. I have run into a very similar problem. For a Windows ISO where I...
How create udf image from python with pycdlib, and take him custom label (name of disk)?
This is related to #3, #81, and #76. I am using this (fantastic, might I say) library in malware research to unpack ISO files that contain malicious samples. It works...