Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
You can use imagemagick. Suppose you have the files a.gif and b.gif and want to play a and then b. Then use the command: convert a.gif b.gif out.gif And your results will be written to out.gif....
Answer
#1: Initial revision
You can use imagemagick. Suppose you have the files `a.gif` and `b.gif` and want to play a and then b. Then use the command: ``` convert a.gif b.gif out.gif ``` And your results will be written to `out.gif`. You can also repeat the arguments if you want to play one of the files multiple times, e.g. ``` convert a.gif a.gif b.gif out.gif ``` To play a twice and b once.