mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
e1422c94c8
commit
4f3d2c1fda
4 changed files with 34 additions and 0 deletions
10
FFMpegCore/FFMpeg/Arguments/IArgument.cs
Normal file
10
FFMpegCore/FFMpeg/Arguments/IArgument.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
namespace FFMpegCore.Arguments
|
||||
{
|
||||
public interface IArgument
|
||||
{
|
||||
/// <summary>
|
||||
/// The textual representation of the argument
|
||||
/// </summary>
|
||||
string Text { get; }
|
||||
}
|
||||
}
|
6
FFMpegCore/FFMpeg/Arguments/IInputArgument.cs
Normal file
6
FFMpegCore/FFMpeg/Arguments/IInputArgument.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace FFMpegCore.Arguments
|
||||
{
|
||||
public interface IInputArgument : IInputOutputArgument
|
||||
{
|
||||
}
|
||||
}
|
12
FFMpegCore/FFMpeg/Arguments/IInputOutputArgument.cs
Normal file
12
FFMpegCore/FFMpeg/Arguments/IInputOutputArgument.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFMpegCore.Arguments
|
||||
{
|
||||
public interface IInputOutputArgument : IArgument
|
||||
{
|
||||
void Pre() {}
|
||||
Task During(CancellationToken? cancellationToken = null) => Task.CompletedTask;
|
||||
void Post() {}
|
||||
}
|
||||
}
|
6
FFMpegCore/FFMpeg/Arguments/IOutputArgument.cs
Normal file
6
FFMpegCore/FFMpeg/Arguments/IOutputArgument.cs
Normal file
|
@ -0,0 +1,6 @@
|
|||
namespace FFMpegCore.Arguments
|
||||
{
|
||||
public interface IOutputArgument : IInputOutputArgument
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue