vapoursynth-imwri

VapourSynth filter for reading/writing images via ImageMagick

brewmacoslinux
Try with needOr install directly
Source

About

VapourSynth filters - ImageMagick HDRI writer/reader

Commands

vapoursynth-imwri

Examples

Load an image sequence using IMWRI in a VapourSynth script$ vspipe -c y4m script.vpy - | ffmpeg -i pipe: output.mkv
Read a single image file with ImageMagick HDRI support$ python3 -c "import vapoursynth as vs; core = vs.get_core(); clip = core.imwri.Read('image.png')"
Export video frames as image sequence using IMWRI writer$ python3 -c "import vapoursynth as vs; core = vs.get_core(); core.imwri.Write(clip, 'output_%04d.png')"