FFMpegCore/FFMpegCore/FFMPEG/Pipes/IPipeSource.cs
Максим Багрянцев 13d5e3d191 Added input piping
2020-04-27 19:23:31 +03:00

15 lines
333 B
C#

using FFMpegCore.FFMPEG.Argument;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace FFMpegCore.FFMPEG.Pipes
{
public interface IPipeSource
{
string GetFormat();
void FlushData(IInputPipe pipe);
Task FlushDataAsync(IInputPipe pipe);
}
}