Files
VideoEncoderService/Encoder/FfmpegOptions.cs
2025-12-15 05:42:46 +01:00

7 lines
266 B
C#

namespace Encoder;
public class FFmpegOptions {
public const string SectionName = "FFmpeg";
public string TemporaryFilesPath { get; set; } = Path.GetTempPath();
public string FfmpegPath { get; set; } = Path.Combine(Environment.ProcessPath!, "ffmpeg");
}