Prepared Encoder service

This commit is contained in:
Samuele Lorefice
2025-12-14 19:49:38 +01:00
parent 39e6694bbe
commit dbf2f18f26
8 changed files with 106 additions and 42 deletions

View File

@@ -0,0 +1,6 @@
namespace Encoder;
public record class EncoderServiceOptions {
public string OutputPath { get; init; } = Path.GetTempPath();
public string FfmpegPath { get; init; } = Path.Combine(Environment.ProcessPath, "ffmpeg");
}