LoginSignup
6
3

More than 3 years have passed since last update.

Google Colab で GIF動画をインライン表示させる

Last updated at Posted at 2020-08-27

1.はじめに

 Google Colab で インラインにGIF動画を表示させたくなったのですが、方法が直ぐ分からず色々調べたので、備忘録として残します。

2.方法

 Ipython.display を使うと簡単です。

from IPython.display import Image
Image('./movie_256.gif', format='png')

movie_256.gif
以上です

6
3
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
6
3