mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
760 B
21 lines
760 B
namespace ErsatzTV.Core.Domain |
|
{ |
|
public class MediaStream |
|
{ |
|
public int Id { get; set; } |
|
public int Index { get; set; } |
|
public string Codec { get; set; } |
|
public string Profile { get; set; } |
|
public MediaStreamKind MediaStreamKind { get; set; } |
|
public string Language { get; set; } |
|
public int Channels { get; set; } |
|
public string Title { get; set; } |
|
public bool Default { get; set; } |
|
public bool Forced { get; set; } |
|
public bool AttachedPic { get; set; } |
|
public string PixelFormat { get; set; } |
|
public int BitsPerRawSample { get; set; } |
|
public int MediaVersionId { get; set; } |
|
public MediaVersion MediaVersion { get; set; } |
|
} |
|
}
|
|
|