0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

seq2gif | seq2gif で出力するアニーションGIFの繰り返し回数を設定する

Posted at

seq2gif | seq2gif で出力するアニーションGIFの繰り返し回数を設定する

概要

seq2gif で出力するアニーションGIFの繰り返し回数を設定します

  • -r 繰り返し回数。デフォルトは0(無限)

試行

コマンドの保存

$ ttyrec repeat_count

$ echo start
start
$ seq 5 | figlet
 _
/ |
| |
| |
|_|

 ____
|___ \
  __) |
 / __/
|_____|

 _____
|___ /
  |_ \
 ___) |
|____/

 _  _
| || |
| || |_
|__   _|
   |_|

 ____
| ___|
|___ \
 ___) |
|____/

$ echo end
end
$

# Ctrl + D で保存終了

デフォルトでアニメーションGIF生成

seq2gif < repeat_count > repeat_count.gif

repeat_count.gif

繰り返し回数3でアニメーションGIF生成

$ seq2gif -r 3 < repeat_count > repeat_count_3.gif

repeat_count_3.gif

参照

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?