no encode delegate for this image format `AVI'

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
cdriko
Posts: 1
Joined: 2019-04-06T02:32:51-07:00
Authentication code: 1152

no encode delegate for this image format `AVI'

Post by cdriko »

hello

I'm under ubuntu 18.04

Code: Select all

convert -version
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114 http://www.imagemagick.org
Copyright: © 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules OpenMP 
Delegates (built-in): bzlib djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png tiff wmf x xml zlib
I'm trying to create a movie from jpegs but I've an error :

Code: Select all

convert -delay 1 cam/201803*_133*.jpg out.avi
convert-im6.q16: no encode delegate for this image format `AVI' @ warning/constitute.c/WriteImage/1180.

note that I verify that the pictures are here.
what is the solution ?
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: no encode delegate for this image format `AVI'

Post by snibgo »

Code: Select all

convert -list format |grep AVI

      AVI  MPEG      r--   Microsoft Audio/Visual Interleaved
AVI is a read-only format for IM. To write AVI, I suggest you use ffmpeg.
snibgo's IM pages: im.snibgo.com
Post Reply