using System.Threading; using System.Threading.Tasks; namespace FFMpegCore.Pipes { /// /// Interface for ffmpeg pipe source data IO /// public interface IPipeSource { string GetFormat(); Task CopyAsync(System.IO.Stream outputStream, CancellationToken cancellationToken); } }