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 1 year has passed since last update.

BlenderでアニメーションをWebpで保存する

Last updated at Posted at 2022-04-25

概要

Blender3.1で、アニメーションをWebpで保存するアドオンをPythonで作成したので紹介します。

やり方

アドオンのインストール

  • Blender Add-on: MakeWebpの画面にしたがってインストールしてください。
    • アドオンのチェックでは「テスト中」を選んでください。

Pillowのインストール

本アドオンは、Pillowを利用しています。
そのため、下記のように、コマンドラインでBlenderにPillowをインストールする必要があります。コマンドラインからBlenderを操作する方法については、「Blenderのコマンドサンプル」も参考にしてください。

  • macOSの場合
/Applications/Blender.app/Contents/Resources/3.1/python/bin/python3.10 -m pip install Pillow
  • Windowsの場合
"C:\Program Files\Blender Foundation\Blender 3.1\3.1\python\bin\python" -m pip install Pillow

※ Windowsで、インストールできるのにimportエラーになる場合は、一旦アンインストールしてから、管理者権限のコマンドプロンプトでインストールし直すとうまくいくかもしれません。

作成

  • オブジェクトメニューのMake Webpを選んでください。
  • 出力フォルダにwebp.webpという名前で出力されます。

Pythonのコード

下記のように、複数の画像ファイルをimgsに入れておけば、PillowではWebpファイルを簡単に作成できます。

imgs[0].save(
    Path(pre_filepath) / "webp.webp",
    save_all=True,
    append_images=imgs[1:],
)

以上

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?