Made the service basically start working

This commit is contained in:
Samuele Lorefice
2025-12-15 05:42:46 +01:00
parent dbf2f18f26
commit db20f5d54d
18 changed files with 424 additions and 46 deletions

7
Encoder/FfmpegOptions.cs Normal file
View File

@@ -0,0 +1,7 @@
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");
}