Install
openclaw skills install jpeng-file-converterFile format conversion skill. Convert between PDF, DOCX, Markdown, HTML, images, audio, and video formats.
openclaw skills install jpeng-file-converterConvert files between different formats.
python3 scripts/convert.py \
--input ./document.docx \
--output ./document.pdf
python3 scripts/convert.py \
--input ./image.png \
--output ./image.jpg \
--quality 90
python3 scripts/convert.py \
--input-dir ./images/ \
--output-dir ./converted/ \
--from png \
--to webp
python3 scripts/convert.py \
--input ./photo.jpg \
--output ./thumbnail.jpg \
--resize 800x600
python3 scripts/convert.py \
--input ./video.mp4 \
--output ./audio.mp3 \
--extract-audio
{
"success": true,
"input": "./document.docx",
"output": "./document.pdf",
"input_size_kb": 45,
"output_size_kb": 52
}