public static async Task <string> CreateGotchiGifAsync(this SQLiteDatabase database, Gotchi gotchi)
        {
            GotchiGifCreatorParams p = new GotchiGifCreatorParams {
                gotchi = gotchi,
                auto   = true
            };

            return(await database.CreateGotchiGifAsync(new GotchiGifCreatorParams[] { p },
                                                       new GotchiGifCreatorExtraParams { backgroundFileName = await database.GetGotchiBackgroundFilenameAsync(gotchi) }));
        }