I'm trying to convert a bunch of xlsx files to xls (because some other software<cough>matlab<cough> can process xls but not xlsx on the mac).
I've tried unoconv but it has issues (which apparently stem from pyuno's shared object not being 64-bit-compatible -- even trying to override this with
$ VERSIONER_PYTHON_PREFER_32_BIT=yes ./unoconv
still dies, this time with Fatal Python error: Interpreter not initialized (version mismatch?) which I'm surmising has to do with a mismatch between the python used with OpenOffice and the one shipped with MacOS X).
I'm using the Microsoft-provided "Open XML Converter" in the meantime, but I'd really like to figure out a way to do it with FOSS tools and via the shell. Any ideas?
Oh, I'm running on Snow Leopard if that makes any difference.