はじめに
すでに開発してくれている個人がいます。上記GitHubがそれです。今回はそちらを使わせて頂きVideo2Videoに挑戦しました。環境
imageioは2.27.0かまたはそれ以前のものを使う必要があります。それ以降を使うと以下のエラーが出ます。TypeError: The keyword `fps` is no longer supported. Use `duration`(in ms) instead, e.g. `fps=50` == `duration=20` (1000 * 1/50).
どうしても新しいimageioが使いたければ「ControledAnimateDiff/animatediff/utils/util.py」の30行目を変更する必要があります。
変更前
imageio.mimsave(path, outputs, fps=fps)
変更後
imageio.mimsave(path, outputs, duration=1000 / fps)
結果
結果はGoogle Bloggerに載せています。support-touchsp.blogspot.com