mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
394 B
16 lines
394 B
using ErsatzTV.FFmpeg.Format; |
|
using LanguageExt; |
|
|
|
namespace ErsatzTV.FFmpeg; |
|
|
|
public record InputFile(string Path, IList<MediaStream> Streams); |
|
|
|
public record ConcatInputFile(string Url, FrameSize Resolution) : InputFile(Url, new List<MediaStream> |
|
{ |
|
new VideoStream( |
|
0, |
|
string.Empty, |
|
Option<IPixelFormat>.None, |
|
Resolution, |
|
Option<string>.None) |
|
}); |