Add codec tag and use real bitrate/samplerate (#1227)
This commit is contained in:
parent
f4dafac28f
commit
3982edd0f1
7 changed files with 106 additions and 44 deletions
|
|
@ -27,9 +27,10 @@ public class BookDto
|
|||
public bool IsPodcastParent { get; set; }
|
||||
public bool IsPodcast { get; set; }
|
||||
|
||||
public int BitRate { get; set; }
|
||||
public int SampleRate { get; set; }
|
||||
public int Channels { get; set; }
|
||||
public int? BitRate { get; set; }
|
||||
public int? SampleRate { get; set; }
|
||||
public int? Channels { get; set; }
|
||||
public string? Codec { get; set; }
|
||||
public DateTime FileDate { get; set; } = DateTime.Now;
|
||||
public DateTime? DatePublished { get; set; }
|
||||
public string? Language { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue