Hello All,
I am trying to convert a pptx presentation into docx format using the LibreOffice command line (headless). I am facing this error:
/opt/libreoffice6.3/program/soffice --headless --convert-to docx --infilter="Microsoft PowerPoint 2007/2010 XML" --outdir /tmp/ /tmp/test.pptx
Error: no export filter for /tmp/test.docx found, aborting.
Error: no export filter
I tried to include an export filter but still get an error:
/opt/libreoffice6.3/program/soffice --headless --convert-to docx:"MS Word 2007 XML" --infilter="Microsoft PowerPoint 2007/2010 XML" --outdir /tmp/ /tmp/test.pptx
convert /tmp/test.pptx -> /tmp/test.docx using filter : MS Word 2007 XML
Error: Please verify input parameters... (SfxBaseModel::impl_store <file:///tmp/test.docx> failed: 0xc10(Error Area:Io Class:Write Code:16))
Can someone please guide me in the right direction to get this converted? Thanks in advance!