Score:0

Create a gif from the recent 10 images in a folder?

cn flag
SEU

I am wondering if there is a way to create a GIF using ImageMagick or other tools by considering only the recent 10 images from a folder?

Score:1
ru flag

You can use ImageMagick package.

Install it using the command:

sudo apt-get install imagemagick

and convert them using this command

convert -delay 20 -loop 0 ls -1t | head -10 *.jpg myimage.gif

or

convert -delay 20 -loop 0 ls -v | head -10 *.jpg myimage.gif

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.