Install
openclaw skills install openclaw-avif2jpgConvert `.avif` images to `.jpg` using a CLI workflow for one or more input paths. Use when the user asks to convert AVIF files, batch-convert a folder of AVIF images, or convert mixed file/folder path inputs while writing outputs next to the source location.
openclaw skills install openclaw-avif2jpgRun the bundled Python script to convert AVIF images into JPEG. Accept one folder path or multiple file/folder paths and place output beside source paths.
python3 -m pip install Pillow pillow-avif-plugin
python3 scripts/avif2jpg.py /path/to/folder
python3 scripts/avif2jpg.py /path/a.avif /path/b.avif
python3 scripts/avif2jpg.py /path/to/folder --recursive
/data/photos, output goes to sibling folder /data/photos_jpg./data/a.avif, output goes to /data/a.jpg..avif files and print warnings.--quality <1-100>: Set JPEG quality (default 92).--overwrite: Overwrite existing output file.--recursive: Recursively scan folders.Pillow or AVIF plugin is missing.scripts/avif2jpg.py with user options.