Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use pipe in ffmpeg within c#

Tags:

c#

ffmpeg

I have 100 jpegs.

I use ffmpeg to encode to a video file which is written to a hard drive.

Is there a way to pipe it directly to a byte/stream?

I am using C# and I am using the process class to initate ffmpeg.

Thanks

like image 953
Andrew Simpson Avatar asked Oct 29 '13 12:10

Andrew Simpson


2 Answers

using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;

namespace PipeFfmpeg
{
    class Program
    {
        public static void Video(int bitrate, int fps, string outputfilename)
        {
            Process proc = new Process();

            proc.StartInfo.FileName = @"ffmpeg.exe";
            proc.StartInfo.Arguments = String.Format("-f image2pipe -i pipe:.bmp -maxrate {0}k -r {1} -an -y {2}",
                bitrate, fps, outputfilename);
            proc.StartInfo.UseShellExecute = false;
            proc.StartInfo.RedirectStandardInput = true;
            proc.StartInfo.RedirectStandardOutput = true;

            proc.Start();

            for (int i = 0; i < 500; i++)
            {
                using (var ms = new MemoryStream())
                {
                    using (var img = Image.FromFile(@"lena.png"))
                    {
                        img.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);
                        ms.WriteTo(proc.StandardInput.BaseStream);
                    }
                }
            }            
        }

        static void Main(string[] args)
        {
            Video(5000, 10, "lena.mp4");
        }
    }
}
like image 129
themadmax Avatar answered Oct 17 '22 20:10

themadmax


Instead of running ffmpeg process you should directly access ffmpeg library from your code. For example, check out AForge.Net. Among other things it has a ffmpeg managed wrapper. You are intersted in AForge.Video.FFMPEG.VideoFileWriter class, which does exactly that - writes images to video file stream using specified encoder. See online documentation for details.

like image 2
Nikita B Avatar answered Oct 17 '22 20:10

Nikita B