6 lines
226 B
C#
6 lines
226 B
C#
namespace Encoder;
|
|
|
|
public record class EncoderServiceOptions {
|
|
public string OutputPath { get; init; } = Path.GetTempPath();
|
|
public string FfmpegPath { get; init; } = Path.Combine(Environment.ProcessPath, "ffmpeg");
|
|
} |