mirror of https://github.com/ErsatzTV/ErsatzTV.git
10 changed files with 62 additions and 22 deletions
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
using ErsatzTV.Core.Domain; |
||||
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record ChannelStreamingSpecsViewModel( |
||||
int Height, |
||||
int Width, |
||||
int Bitrate, |
||||
FFmpegProfileVideoFormat VideoFormat, |
||||
string VideoProfile, |
||||
FFmpegProfileAudioFormat AudioFormat); |
||||
@ -1,3 +0,0 @@
@@ -1,3 +0,0 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record GetChannelResolutionAndBitrate(string ChannelNumber) : IRequest<Option<ResolutionAndBitrateViewModel>>; |
||||
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record GetChannelStreamingSpecs(string ChannelNumber) : IRequest<Option<ChannelStreamingSpecsViewModel>>; |
||||
@ -1,3 +0,0 @@
@@ -1,3 +0,0 @@
|
||||
namespace ErsatzTV.Application.Channels; |
||||
|
||||
public record ResolutionAndBitrateViewModel(int Height, int Width, int Bitrate); |
||||
Loading…
Reference in new issue