mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
14 lines
340 B
C#
14 lines
340 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.Pipes
|
|
{
|
|
/// <summary>
|
|
/// Interface for ffmpeg pipe source data IO
|
|
/// </summary>
|
|
public interface IPipeSource
|
|
{
|
|
string GetFormat();
|
|
Task CopyAsync(System.IO.Stream outputStream, CancellationToken cancellationToken);
|
|
}
|
|
}
|