using System; using System.Drawing; using AForge.Video.FFMPEG;

class Program { static void Main() { var videoWriter = new VideoFileWriter(); videoWriter.Open("output.mp4", 640, 480, 25, VideoCodec.MPEG4);

    for (int i = 0; i < 10; i++)
    {
        Bitmap image = (Bitmap)Image.FromFile($"image{i}.jpg");
        videoWriter.WriteVideoFrame(image);
        image.Dispose();
    }

    videoWriter.Close();
}

}

Downloads last month
0
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The HF Inference API does not support text-to-video models for adapter-transformers library.

Dataset used to train Rtrggf/Type-A