command line syntax to convert PNG(s) to AVI with trans?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
brainlord

command line syntax to convert PNG(s) to AVI with trans?

Post by brainlord »

I have (serveral) huge stacks of rendered PNGs with alpha transperancy. (myPNG-001.png, myPNG-002.png...myPNG-999.png)

I want direct conversion (no filters or anything) to 30 fps AVIs *with the alpha channel.* And I realy hope I don't have to type every single "myPNG-00x.png" filename because threre are thousands of them.

(I love IM! but boy does it need a GUI!)

AHA TIA
brainlord
dafy

Re: command line syntax to convert PNG(s) to AVI with trans?

Post by dafy »

Try this to start.

Code: Select all

mencoder mf://*.png -mf w=800:h=600:fps=30:type=png -ovc lavc \
    -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o output.avi
Check here for further in formation. http://www.mplayerhq.hu/DOCS/HTML-singl ... layer.html
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: command line syntax to convert PNG(s) to AVI with trans?

Post by anthony »

Does that even work? I have never heard of AVI's having transparency!
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
dafy

Re: command line syntax to convert PNG(s) to AVI with trans?

Post by dafy »

I don't know.
The reference was meant to get the OP digging.
But I hope so, I'm going to need it soon. If I get the thread titled 'convert avi 2 gif does not complete' answered.
Post Reply