7 lines
266 B
C#
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");
|
|
} |