twitch vod downloading done
ffmpeg essentials fix Project reorganized git lfs ffmpeg removed ffmpeg added
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Appdata
|
||||
{
|
||||
[ConfigurationKeyName("directory_name")]
|
||||
public string DirectoryName { get; set; }
|
||||
|
||||
[ConfigurationKeyName("authentication_file")]
|
||||
public string AuthenticationFile { get; set; }
|
||||
|
||||
[ConfigurationKeyName("settings_file")]
|
||||
public string SettingsFile { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Muxer
|
||||
{
|
||||
[ConfigurationKeyName("extension")]
|
||||
public string Extension { get; set; }
|
||||
|
||||
[ConfigurationKeyName("video_codecs")]
|
||||
public List<string> VideoCodecs { get; } = new List<string>();
|
||||
|
||||
[ConfigurationKeyName("audio_codecs")]
|
||||
public List<string> AudioCodecs { get; } = new List<string>();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Path
|
||||
{
|
||||
[ConfigurationKeyName("appdata")]
|
||||
public Appdata Appdata { get; set; }
|
||||
|
||||
[ConfigurationKeyName("temp")]
|
||||
public Temp Temp { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Processing
|
||||
{
|
||||
[ConfigurationKeyName("muxers")]
|
||||
public List<Muxer> Muxers { get; } = new List<Muxer>();
|
||||
|
||||
[ConfigurationKeyName("processed_filename")]
|
||||
public string ProcessedFilename { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Temp
|
||||
{
|
||||
[ConfigurationKeyName("tasks_directory")]
|
||||
public string TasksDirectory { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user