Feature request: Export multiple image indexes in one operation from solid archive
Posted: Wed Jan 22, 2025 3:53 am
In a solid archive using the LZMS algorithm. For example, there are 20 indexes in a image file, and I need to export indexes 3, 5, 7, and 9, which requires four operations. However, for the export of solid archives, each operation will read the source file from the beginning, making the speed very slow. Can I export multiple image indexes in one operation like this command?
Current:
Desired implementation:
Current:
Code: Select all
wimlib-imagex export src.esd 3 dest.wim
wimlib-imagex export src.esd 5 dest.wim
wimlib-imagex export src.esd 7 dest.wim
wimlib-imagex export src.esd 9 dest.wim
Code: Select all
wimlib-imagex export src.esd dest.wim --source-index=3,5,7,9