add v2 ffmpeg profile page (#768)

* wip

* remove transcode property; use i18n

* add api

* use computed table headers for i18n
This commit is contained in:
Jason Dove
2022-04-28 06:56:01 -05:00
committed by GitHub
parent 0a0fb71b94
commit 780ebc01ee
14 changed files with 166 additions and 18 deletions
@@ -1,9 +1,11 @@
namespace ErsatzTV.Core.Api.Channels;
using Newtonsoft.Json;
namespace ErsatzTV.Core.Api.Channels;
public record ChannelResponseModel(
int Id,
string Number,
string Name,
string FFmpegProfile,
[property: JsonProperty("ffmpegProfile")] string FFmpegProfile,
string Language,
string StreamingMode);
@@ -0,0 +1,8 @@
namespace ErsatzTV.Core.Api.FFmpegProfiles;
public record FFmpegProfileResponseModel(
int Id,
string Name,
string Resolution,
string Video,
string Audio);